
/* Frontend + editor shared styles */
.wp-block-coupon-gcb.gcb-coupon{
    border: 1px dashed #3333;
    padding: 16px;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 16px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
}
.wp-block-coupon-gcb .gcb-left{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border-right:1px solid #eee;
    padding-right:12px;
}
.wp-block-coupon-gcb .gcb-discount{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.wp-block-coupon-gcb .gcb-type{
    padding:8px 16px;
    border-radius:8px;
    font-weight:600;
    color:#fff;
}
.wp-block-coupon-gcb .gcb-type.coupon{
    background:#2ecc71; /* green */
}
.wp-block-coupon-gcb .gcb-type.deal{
    background:#3498db; /* blue */
}
.wp-block-coupon-gcb .gcb-main .gcb-title{
    margin:0 0 6px 0;
    font-size: 22px;
}
.wp-block-coupon-gcb .gcb-right{
    display:flex; align-items:center; justify-content:center;
    border-left:1px solid #eee;
    padding-left:12px;
}
.wp-block-coupon-gcb .gcb-code-btn{
    border:2px dashed #9aa7b1;
    padding:14px 16px;
    font-weight:700;
    border-radius:10px;
    /* background:#f7fafc; */
    cursor:pointer;
}

/* Layout variations */
.wp-block-coupon-gcb.layout2{ grid-template-columns: 1fr 220px; }
.wp-block-coupon-gcb.layout2 .gcb-left{ display:none; }
.wp-block-coupon-gcb.layout2 .gcb-right{ justify-content:flex-end; }

.wp-block-coupon-gcb.layout3{
    grid-template-columns: 180px 1fr;
}
.wp-block-coupon-gcb.layout3 .gcb-right{
    grid-column: 1 / -1;
    border-left:none;
    padding:0;
    justify-content:flex-start;
}
.wp-block-coupon-gcb.layout3 .gcb-code-btn{
    margin-top:8px;
}
