/* ================= Coupon Popup ================= */
.coupon-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
}

.coupon-popup-overlay.is-visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.coupon-popup-box {
    position: relative;
    width: 90%;
    max-width: 760px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border-radius: 2px;
    overflow: hidden;
}

.coupon-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.coupon-popup-close:hover { background: #444; }

.coupon-popup-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
}
.coupon-popup-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.coupon-popup-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    padding: 40px 35px;
}

.coupon-popup-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
}

.coupon-popup-subtext {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.coupon-popup-content .form-control {
    height: 44px;
    border-radius: 2px;
    box-shadow: none;
    border: 1px solid #ccc;
}

.coupon-popup-btn {
    display: block;
    width: 100%;
    background-color: #d99a6c;
    border-color: #d99a6c;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 2px;
    margin-top: 12px;
}
.coupon-popup-btn:hover,
.coupon-popup-btn:focus {
    background-color: #c8845a;
    color: #fff;
}
.coupon-popup-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.coupon-popup-message {
    margin-top: 12px;
    font-size: 13px;
}
.coupon-popup-message.success { color: #2e7d32; }
.coupon-popup-message.error   { color: #c62828; }

.coupon-popup-terms {
    font-size: 11px;
    color: #888;
    margin-top: 18px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .coupon-popup-box { -ms-flex-wrap: wrap; flex-wrap: wrap; max-height: 90vh; overflow-y: auto; }
    .coupon-popup-image, .coupon-popup-content { -ms-flex: 1 1 100%; flex: 1 1 100%; }
    .coupon-popup-image, .coupon-popup-image img { min-height: 180px; }
    .coupon-popup-content { padding: 25px 20px; }
}
