
/* ==========================================
   WCM Coupon Modal
========================================== */

#wcmCouponModal .modal-dialog {
    max-width: 720px;
}

#wcmCouponModal .modal-content {
    position: relative;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Close Button */
.wcm-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 49;
    border: 0;
    background: transparent;
    font-size: 23px;
    line-height: 1;
    color: #7f7f7f;
    cursor: pointer;
    padding: 0;
}

.wcm-close-btn:hover {
    color: #000;
}

/* Layout */
.wcm-modal-image {
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.wcm-form-section {
    padding: 0px;
}

/* Heading */
.wcm-form-section h2 {
    font-size: calc(1.275rem + .3vw)!important;
    font-weight: 600;
    line-height: 1;
}

.wcm-form-section p {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E3E3E3;
    font-size: clamp(0.80rem, 0.7rem + 0.3vw, 0.85rem)!important;
    line-height: 1.5;
    color: #444;
}

/* Form */
#wcm-claim-form label {
    font-size: clamp(0.80rem, 0.7rem + 0.3vw, 0.85rem)!important;
    font-weight: 400;
    margin-bottom: .1rem;
}

#wcm-claim-form .mb-3 {
    margin-bottom: 16px !important;
}

#wcm-claim-form .form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.03em;
    color: #070707;
    border: solid 1px #E3E3E3;
    padding: 10px 15px;
    background-color: #FFFFFF;
    height: auto !important;
    min-width: 0;
    border-radius: 0;
}

#wcm-claim-form .form-control::placeholder {
    color: #aaaaaa;
    font-weight: 300;
}

#wcm-submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    outline: none;
    padding: 6px 0 7px 0;
    font-size: clamp(0.85rem, 0.7rem + 0.3vw, 0.9rem);
    font-weight: 500;
    line-height: 1.8;
}


/* Desktop */
@media (min-width: 768px) {

    .wcm-form-section {
        padding: 0px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    #wcmCouponModal .modal-dialog {
        margin: 15px;
        max-width: calc(100% - 30px);
        margin: auto;
        height: 100vh;
    }

    .wcm-modal-image {
        height: 30dvh;
    }

    .wcm-form-section {
        padding: 0px;
    }

    .wcm-form-section h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .wcm-form-section p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .wcm-close-btn {
        top: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.705);
        border-radius: 100%;
        padding: 4px 4.5px 5px 4.5px;
        font-size: 18px;
        color: rgb(212, 212, 212);
    }
}   
    

    
    
/* ==========================================
   WCM Coupon Modal Response Drawer
========================================== */    
    
.wcm-form-section {
    position: relative;
}

/* Full overlay */
#wcm-feedback-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease;
    z-index: 50;
}

/* Active state */
#wcm-feedback-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer */
#wcm-feedback-drawer {
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow:
        0 -10px 30px rgba(
            0,
            0,
            0,
            0.12
        );
    transform: translateY(100%);
    transition: transform .5s ease;
}

/* Slide Up */
#wcm-feedback-overlay.active
#wcm-feedback-drawer {
    transform: translateY(0);
}

#wcm-feedback-drawer {
    text-align: center;
}

.wcm-feedback-video {
    width: 65px;
    height: 65px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0px;
}

#wcm-feedback-title {
    font-size: clamp(0.9rem, 1rem + 0.2vw, 1.1rem)!important;
    font-weight: 600;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 10px;
}

#wcm-feedback-content {
    text-align: center;
    line-height: 1.6;
}

#wcm-feedback-close {
    background-color: #000;
    color: #fff;
    width: 100%;
    border: none;
    outline: none;
    padding: 6px 15px 6px 15px;
    margin-top: 15px;
    font-size: clamp(0.85rem, 0.7rem + 0.3vw, 0.9rem);
    font-weight: 500;
    line-height: 1.8;
}  
