/* =========================================================
   ZENVITA QUICK CHECKOUT
   PRODUCT CARD + POPUP
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.zqc-wrapper,
.zqc-wrapper *,
.zqc-popup-overlay,
.zqc-popup-overlay * {
    box-sizing: border-box;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.zqc-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 30px auto;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.zqc-image {
    width: 100%;
    background: #f8f8f8;
    overflow: hidden;
}

.zqc-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.zqc-content {
    padding: 22px;
}


/* =========================================================
   RATING
========================================================= */

.zqc-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    background: transparent;
}

.zqc-stars {
    color: #f5b301;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
}

.zqc-rating-number {
    color: #555555;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   TITLE
========================================================= */

.zqc-title {
    margin: 0 0 10px;
    padding: 0;
    color: #222222;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
}


/* =========================================================
   PRICE
========================================================= */

.zqc-price {
    margin-bottom: 15px;
    color: #111111;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.zqc-price del {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    margin-right: 7px;
}

.zqc-price ins {
    text-decoration: none;
}


/* =========================================================
   FEATURES
========================================================= */

.zqc-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.zqc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333333;
    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   QUANTITY
========================================================= */

.zqc-qty {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.zqc-minus,
.zqc-plus {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #111111;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.zqc-minus:hover,
.zqc-plus:hover {
    background: #333333;
}

.zqc-quantity {
    width: 70px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    border: 1px solid #dddddd !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #222222 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    text-align: center !important;
    box-shadow: none !important;
}


/* Remove number arrows */

.zqc-quantity::-webkit-inner-spin-button,
.zqc-quantity::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.zqc-quantity {
    -moz-appearance: textfield;
    appearance: textfield;
}


/* =========================================================
   BUTTONS
========================================================= */

.zqc-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.zqc-buttons button {
    height: 50px;
    margin: 0;
    padding: 0 12px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.zqc-add-cart {
    background: #111111;
    color: #ffffff;
}

.zqc-add-cart:hover {
    background: #2b2b2b;
}

.zqc-order-now {
    background: #c89a2b;
    color: #ffffff;
}

.zqc-order-now:hover {
    background: #aa811f;
}

.zqc-buttons button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}


/* =========================================================
   POPUP OVERLAY
========================================================= */

.zqc-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    overflow-y: auto;
}


/* =========================================================
   POPUP
========================================================= */

.zqc-popup {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    margin: auto;
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   POPUP LEFT
========================================================= */

.zqc-popup-left {
    width: 58%;
    padding: 32px;
    background: #ffffff;
    overflow-y: auto;
}

.zqc-popup-left h2 {
    margin: 0 0 25px;
    padding: 0;
    color: #222222;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}


/* =========================================================
   FORM
========================================================= */

.zqc-form {
    width: 100%;
    margin: 0;
}

.zqc-field {
    width: 100%;
    margin-bottom: 15px;
}

.zqc-field label {
    display: block;
    margin-bottom: 6px;
    color: #333333;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.zqc-field input,
.zqc-field select,
.zqc-field textarea {
    display: block;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #dddddd;
    border-radius: 9px;
    background: #ffffff;
    color: #222222;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    outline: none;
    box-shadow: none;
}

.zqc-field input,
.zqc-field select {
    height: 46px;
}

.zqc-field textarea {
    min-height: 90px;
    resize: vertical;
}

.zqc-field input:focus,
.zqc-field select:focus,
.zqc-field textarea:focus {
    border-color: #c89a2b;
    box-shadow: 0 0 0 2px rgba(200, 154, 43, 0.10);
}


/* =========================================================
   COMPLETE ORDER
========================================================= */

.zqc-complete-order {
    display: block;
    width: 100%;
    height: 54px;
    margin-top: 8px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    background: #c89a2b;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.zqc-complete-order:hover {
    background: #aa811f;
}

.zqc-complete-order:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}


/* =========================================================
   POPUP RIGHT
========================================================= */

.zqc-popup-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42%;
    padding: 35px 28px;
    background: #111111;
    color: #ffffff;
    text-align: center;
}

.zqc-popup-product img {
    display: block;
    width: 100%;
    max-width: 230px;
    max-height: 250px;
    margin: 10px auto 20px;
    border-radius: 12px;
    object-fit: contain;
}

.zqc-popup-product h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
}

.zqc-popup-price {
    color: #c89a2b;
    font-size: 24px;
    font-weight: 700;
}

.zqc-popup-price del {
    color: #aaaaaa;
    font-size: 14px;
    margin-right: 6px;
}

.zqc-popup-price ins {
    text-decoration: none;
}


/* =========================================================
   TRUST BOX
========================================================= */

.zqc-popup-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    text-align: left;
}

.zqc-popup-trust div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.zqc-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #222222;
    font-size: 25px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   TOAST
========================================================= */

.zqc-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000000;
    max-width: 350px;
    padding: 14px 20px;
    border-radius: 10px;
    background: #111111;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .zqc-wrapper {
        max-width: 100%;
        margin: 20px auto;
        border-radius: 15px;
    }

    .zqc-content {
        padding: 18px;
    }

    .zqc-title {
        font-size: 21px;
    }

    .zqc-price {
        font-size: 24px;
    }

    .zqc-buttons {
        flex-direction: column;
    }

    .zqc-buttons button {
        width: 100%;
    }


    /* Popup */

    .zqc-popup-overlay {
        align-items: flex-start;
        padding: 12px;
    }

    .zqc-popup {
        flex-direction: column;
        max-height: 96vh;
        margin: auto;
        border-radius: 15px;
    }

    .zqc-popup-left,
    .zqc-popup-right {
        width: 100%;
    }

    .zqc-popup-right {
        order: -1;
        padding: 25px 20px;
    }

    .zqc-popup-left {
        padding: 22px 18px;
    }

    .zqc-popup-left h2 {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .zqc-popup-product img {
        max-width: 150px;
        max-height: 150px;
        margin-top: 5px;
    }

    .zqc-popup-product h3 {
        font-size: 18px;
    }

    .zqc-popup-price {
        font-size: 21px;
    }

    .zqc-popup-trust {
        margin-top: 18px;
        padding: 13px;
        gap: 8px;
    }

    .zqc-close {
        top: 8px;
        right: 8px;
    }

}

/* =========================================================
   ZENVITA QUICK CHECKOUT - FINAL POPUP
========================================================= */

.zqc-popup-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;

    background: rgba(0, 0, 0, 0.55) !important;

    display: none;
    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;

    z-index: 999999 !important;

    overflow-y: auto;
}


/* POPUP BOX */

.zqc-popup {
    position: relative !important;

    width: 100% !important;
    max-width: 520px !important;

    max-height: calc(100vh - 30px) !important;

    background: #ffffff !important;

    border-radius: 10px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    box-shadow: 0 20px 60px rgba(0,0,0,.25) !important;

    margin: auto !important;

    color: #111 !important;

    font-family: Arial, sans-serif !important;
}


/* INNER */

.zqc-popup-inner {
    width: 100%;
    padding: 20px;
}


/* CLOSE */

.zqc-close {
    position: absolute !important;

    top: 12px !important;
    right: 14px !important;

    width: 38px !important;
    height: 38px !important;

    border: none !important;
    background: transparent !important;

    color: #555 !important;

    font-size: 32px !important;
    line-height: 38px !important;

    cursor: pointer !important;

    padding: 0 !important;

    z-index: 10 !important;
}

.zqc-close:hover {
    color: #000 !important;
    background: transparent !important;
}


/* =========================================================
   HEADER
========================================================= */

.zqc-popup-header {
    padding-right: 45px;
    margin-bottom: 20px;
}

.zqc-popup-header h2 {
    margin: 0 !important;

    font-size: 20px !important;
    line-height: 1.3 !important;

    font-weight: 700 !important;

    color: #111 !important;
}


/* =========================================================
   SHIPPING
========================================================= */

.zqc-shipping-section h3 {
    margin: 0 0 12px !important;

    font-size: 18px !important;
    font-weight: 700 !important;

    color: #111 !important;
}

.zqc-shipping-option {
    width: 100%;

    min-height: 50px;

    border: 1px solid #cfcfcf;

    border-radius: 7px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 14px;

    background: #fff;
}

.zqc-radio-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zqc-radio-wrap input {
    width: 17px !important;
    height: 17px !important;

    margin: 0 !important;

    accent-color: #111;
}

.zqc-radio-wrap span {
    font-size: 15px;
    color: #222;
}

.zqc-shipping-option strong {
    font-size: 15px;
    color: #111;
}


/* =========================================================
   COUPON
========================================================= */

.zqc-coupon-row {
    display: flex;

    gap: 8px;

    margin-top: 20px;
    margin-bottom: 25px;
}

.zqc-coupon-row input {
    flex: 1;

    height: 46px !important;

    padding: 0 14px !important;

    border: 1px solid #c9c9c9 !important;

    border-radius: 6px !important;

    background: #fff !important;

    color: #222 !important;

    font-size: 14px !important;

    outline: none !important;

    margin: 0 !important;
}

.zqc-coupon-row input:focus {
    border-color: #999 !important;
}

.zqc-apply-coupon {
    width: 135px;

    height: 46px !important;

    border: none !important;

    border-radius: 6px !important;

    background: #000 !important;

    color: #fff !important;

    font-size: 15px !important;

    font-weight: 700 !important;

    cursor: pointer !important;
}

.zqc-apply-coupon:hover {
    background: #222 !important;
}


/* =========================================================
   ADDRESS HEADING
========================================================= */

.zqc-address-section h3 {
    text-align: center;

    margin: 0 0 25px !important;

    font-size: 20px !important;

    line-height: 1.3 !important;

    font-weight: 700 !important;

    color: #111 !important;
}


/* =========================================================
   FORM ROW
========================================================= */

.zqc-field-row {
    display: flex;

    align-items: center;

    margin-bottom: 15px;

    gap: 12px;
}

.zqc-field-row > label {
    width: 98px;

    flex-shrink: 0;

    font-size: 14px !important;

    line-height: 1.2 !important;

    font-weight: 600 !important;

    color: #111 !important;

    margin: 0 !important;
}

.zqc-field-row > label span {
    color: #d00000;
}


/* =========================================================
   INPUT WITH ICON
========================================================= */

.zqc-input-wrap {
    flex: 1;

    height: 48px;

    display: flex;

    border: 1px solid #c8c8c8;

    border-radius: 6px;

    overflow: hidden;

    background: #fff;
}

.zqc-field-icon {
    width: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e9e9e9;

    border-right: 1px solid #c8c8c8;

    font-size: 17px;
}

.zqc-input-wrap input,
.zqc-input-wrap select {
    flex: 1;

    min-width: 0;

    width: 100% !important;
    height: 100% !important;

    border: none !important;

    outline: none !important;

    box-shadow: none !important;

    background: #fff !important;

    color: #555 !important;

    font-size: 14px !important;

    padding: 0 14px !important;

    margin: 0 !important;
}

.zqc-input-wrap input::placeholder {
    color: #777;
}

.zqc-input-wrap input:focus,
.zqc-input-wrap select:focus {
    border: none !important;

    outline: none !important;

    box-shadow: none !important;
}


/* =========================================================
   SUBSCRIBE
========================================================= */

.zqc-subscribe {
    margin-top: 4px;

    margin-bottom: 18px;
}

.zqc-subscribe label {
    display: flex;

    align-items: center;

    gap: 8px;

    cursor: pointer;

    font-size: 14px;

    line-height: 1.4;

    color: #333;
}

.zqc-subscribe input {
    width: 18px !important;
    height: 18px !important;

    margin: 0 !important;

    flex-shrink: 0;
}


/* =========================================================
   COMPLETE ORDER BUTTON
========================================================= */

.zqc-complete-order {
    width: 100% !important;

    min-height: 52px !important;

    border: none !important;

    border-radius: 3px !important;

    background: #000 !important;

    color: #fff !important;

    font-size: 16px !important;

    font-weight: 700 !important;

    cursor: pointer !important;

    padding: 12px 15px !important;

    margin: 0 !important;

    box-shadow: none !important;

    transition: .2s ease;
}

.zqc-complete-order:hover {
    background: #222 !important;

    transform: none !important;
}

.zqc-complete-order:disabled {
    opacity: .7;

    cursor: wait;
}

.zqc-order-total {
    font-weight: 700;
}


/* =========================================================
   HIDDEN SUMMARY
========================================================= */

.zqc-summary-qty {
    display: none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .zqc-popup-overlay {
        padding: 10px !important;
    }

    .zqc-popup {
        max-height: calc(100vh - 20px) !important;

        border-radius: 9px !important;
    }

    .zqc-popup-inner {
        padding: 18px 16px;
    }

    .zqc-popup-header h2 {
        font-size: 19px !important;
    }

    .zqc-address-section h3 {
        font-size: 18px !important;
    }

    .zqc-field-row {
        display: block;

        margin-bottom: 13px;
    }

    .zqc-field-row > label {
        display: block;

        width: 100%;

        margin-bottom: 6px !important;

        font-size: 14px !important;
    }

    .zqc-input-wrap {
        width: 100%;
    }

    .zqc-coupon-row {
        gap: 6px;
    }

    .zqc-apply-coupon {
        width: 105px;
    }

    .zqc-complete-order {
        min-height: 50px !important;

        font-size: 14px !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .zqc-popup-inner {
        padding: 16px 12px;
    }

    .zqc-coupon-row {
        flex-direction: column;
    }

    .zqc-apply-coupon {
        width: 100%;
    }

}

/* ==========================================
   THANK YOU POPUP
========================================== */

.zqc-thankyou-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.78);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:1000000;
    padding:20px;
}

.zqc-thankyou-popup{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:22px;
    padding:40px 30px 30px;
    text-align:center;
    position:relative;
    box-shadow:0 25px 70px rgba(0,0,0,.30);
    animation:zqcThankYouIn .25s ease;
}

@keyframes zqcThankYouIn{
    from{
        opacity:0;
        transform:scale(.92);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}

.zqc-thankyou-close{
    position:absolute;
    top:15px;
    right:15px;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#f3f3f3;
    color:#222;
    font-size:24px;
    line-height:38px;
    cursor:pointer;
}

.zqc-thankyou-close:hover{
    background:#e9e9e9;
}

.zqc-thankyou-icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#C89A2B;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    font-weight:700;
}

.zqc-thankyou-popup h2{
    margin:0 0 10px;
    color:#222;
    font-size:32px;
    line-height:1.2;
}

.zqc-thankyou-popup > p{
    margin:0 0 25px;
    color:#666;
    font-size:16px;
    line-height:1.6;
}

.zqc-thankyou-details{
    background:#f8f8f8;
    border:1px solid #eee;
    border-radius:14px;
    padding:5px 15px;
    margin-bottom:25px;
}

.zqc-thankyou-details > div{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:13px 0;
    border-bottom:1px solid #e8e8e8;
    text-align:left;
}

.zqc-thankyou-details > div:last-child{
    border-bottom:0;
}

.zqc-thankyou-details span{
    color:#777;
    font-size:14px;
}

.zqc-thankyou-details strong{
    color:#222;
    font-size:14px;
    text-align:right;
}

.zqc-thankyou-done{
    width:100%;
    height:52px;
    border:0;
    border-radius:12px;
    background:#C89A2B;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.zqc-thankyou-done:hover{
    background:#b88918;
    transform:translateY(-2px);
}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .zqc-thankyou-overlay{
        padding:15px;
    }

    .zqc-thankyou-popup{
        padding:35px 20px 22px;
        border-radius:18px;
    }

    .zqc-thankyou-icon{
        width:65px;
        height:65px;
        font-size:34px;
        margin-bottom:15px;
    }

    .zqc-thankyou-popup h2{
        font-size:27px;
    }

    .zqc-thankyou-popup > p{
        font-size:14px;
    }

    .zqc-thankyou-details{
        padding:5px 12px;
    }

}
/* =========================================================
   ZENVITA QUICK CHECKOUT - POPUP
========================================================= */

.zqc-popup-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;

    background: rgba(0, 0, 0, 0.65) !important;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px !important;

    z-index: 999999 !important;

    overflow-y: auto !important;
}


/* =========================================================
   POPUP
========================================================= */

.zqc-popup {

    position: relative;

    width: 100%;
    max-width: 620px;

    max-height: 92vh;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);

    overflow-y: auto;

    margin: auto;

    box-sizing: border-box;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.zqc-close {

    position: absolute !important;

    top: 15px !important;
    right: 15px !important;

    width: 38px !important;
    height: 38px !important;

    padding: 0 !important;

    border: none !important;

    border-radius: 50% !important;

    background: #111111 !important;

    color: #ffffff !important;

    font-size: 25px !important;

    line-height: 38px !important;

    text-align: center !important;

    cursor: pointer !important;

    z-index: 20 !important;

    transition: 0.2s ease !important;
}

.zqc-close:hover {

    background: #333333 !important;

    transform: rotate(90deg);
}


/* =========================================================
   LEFT / MAIN CONTENT
========================================================= */

.zqc-popup-left {

    width: 100%;

    padding: 38px;

    box-sizing: border-box;
}


.zqc-popup-left h2 {

    margin: 0 45px 7px 0;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;

    color: #222222;
}


.zqc-checkout-subtitle {

    margin: 0 0 25px;

    color: #777777;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   FORM
========================================================= */

.zqc-form {

    width: 100%;
}


.zqc-form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 12px;
}


.zqc-form input,
.zqc-form select,
.zqc-form textarea {

    width: 100% !important;

    box-sizing: border-box !important;

    border: 1px solid #dddddd !important;

    border-radius: 9px !important;

    background: #ffffff !important;

    color: #222222 !important;

    font-size: 14px !important;

    outline: none !important;

    transition: 0.2s ease !important;

    box-shadow: none !important;
}


.zqc-form input,
.zqc-form select {

    height: 46px !important;

    padding: 0 14px !important;

    margin-bottom: 12px !important;
}


.zqc-form textarea {

    min-height: 85px !important;

    padding: 13px 14px !important;

    margin-bottom: 12px !important;

    resize: vertical !important;
}


.zqc-form input:focus,
.zqc-form select:focus,
.zqc-form textarea:focus {

    border-color: #c89b32 !important;

    box-shadow: 0 0 0 3px rgba(200, 155, 50, 0.10) !important;
}


/* =========================================================
   COUPON
========================================================= */

.zqc-coupon-box {

    margin-top: 5px;

    margin-bottom: 18px;
}


.zqc-coupon-row {

    display: flex;

    gap: 10px;

    align-items: stretch;
}


.zqc-coupon-row input {

    flex: 1;

    margin-bottom: 0 !important;
}


.zqc-apply-coupon {

    flex: 0 0 auto;

    height: 46px;

    padding: 0 18px;

    border: none !important;

    border-radius: 9px !important;

    background: #111111 !important;

    color: #ffffff !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    cursor: pointer !important;

    transition: 0.2s ease !important;
}


.zqc-apply-coupon:hover {

    background: #333333 !important;
}


.zqc-apply-coupon:disabled {

    opacity: 0.65;

    cursor: not-allowed !important;
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.zqc-order-total-box {

    padding: 17px;

    margin-top: 5px;

    margin-bottom: 18px;

    background: #f8f8f8;

    border: 1px solid #eeeeee;

    border-radius: 12px;
}


.zqc-summary-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 8px 0;

    color: #555555;

    font-size: 14px;
}


.zqc-summary-row strong {

    color: #222222;

    font-weight: 600;
}


.zqc-discount-row strong {

    color: #198754;
}


.zqc-total-row {

    margin-top: 7px;

    padding-top: 14px;

    border-top: 1px solid #dddddd;

    font-size: 17px;

    color: #222222;
}


.zqc-total-row strong {

    color: #c89b32;

    font-size: 19px;
}


/* =========================================================
   PAYMENT INFO
========================================================= */

.zqc-payment-info {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    margin-bottom: 18px;

    border-radius: 10px;

    background: #fff8e8;

    border: 1px solid #f0dfb3;
}


.zqc-payment-info > div:first-child {

    font-size: 25px;

    line-height: 1;
}


.zqc-payment-info strong {

    display: block;

    margin-bottom: 3px;

    color: #222222;

    font-size: 14px;
}


.zqc-payment-info span {

    display: block;

    color: #777777;

    font-size: 12px;
}


/* =========================================================
   COMPLETE ORDER BUTTON
========================================================= */

.zqc-complete-order {

    width: 100% !important;

    min-height: 52px !important;

    padding: 0 20px !important;

    border: none !important;

    border-radius: 10px !important;

    background: #c89b32 !important;

    color: #ffffff !important;

    font-size: 16px !important;

    font-weight: 700 !important;

    cursor: pointer !important;

    transition: 0.2s ease !important;
}


.zqc-complete-order:hover {

    background: #b38625 !important;

    transform: translateY(-1px);
}


.zqc-complete-order:disabled {

    opacity: 0.65;

    cursor: not-allowed !important;

    transform: none !important;
}


/* =========================================================
   SECURE TEXT
========================================================= */

.zqc-secure-text {

    margin-top: 14px;

    text-align: center;

    color: #888888;

    font-size: 11px;
}


/* =========================================================
   TOAST
========================================================= */

.zqc-toast {

    position: fixed;

    left: 50%;

    bottom: 30px;

    transform: translateX(-50%);

    z-index: 1000001;

    padding: 12px 20px;

    border-radius: 8px;

    background: #222222;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.4;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);

    display: none;

    max-width: calc(100% - 40px);

    text-align: center;
}


/* =========================================================
   THANK YOU POPUP
========================================================= */

.zqc-thankyou-overlay {

    position: fixed !important;

    inset: 0 !important;

    width: 100% !important;

    height: 100% !important;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.68);

    z-index: 1000000;
}


.zqc-thankyou-popup {

    position: relative;

    width: 100%;

    max-width: 430px;

    padding: 38px 30px 30px;

    box-sizing: border-box;

    border-radius: 18px;

    background: #ffffff;

    text-align: center;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}


.zqc-thankyou-close {

    position: absolute;

    top: 12px;

    right: 12px;

    width: 34px;

    height: 34px;

    border: none;

    border-radius: 50%;

    background: #f1f1f1;

    color: #333333;

    font-size: 22px;

    line-height: 34px;

    padding: 0;

    cursor: pointer;
}


.zqc-thankyou-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 68px;

    height: 68px;

    margin: 0 auto 17px;

    border-radius: 50%;

    background: #198754;

    color: #ffffff;

    font-size: 34px;

    font-weight: 700;
}


.zqc-thankyou-popup h2 {

    margin: 0 0 8px;

    color: #222222;

    font-size: 29px;

    line-height: 1.2;
}


.zqc-thankyou-popup > p {

    margin: 0 0 22px;

    color: #777777;

    font-size: 14px;

    line-height: 1.5;
}


.zqc-thankyou-details {

    margin-bottom: 22px;

    padding: 5px 15px;

    border-radius: 10px;

    background: #f8f8f8;

    text-align: left;
}


.zqc-thankyou-details > div {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 11px 0;

    border-bottom: 1px solid #e5e5e5;
}


.zqc-thankyou-details > div:last-child {

    border-bottom: none;
}


.zqc-thankyou-details span {

    color: #777777;

    font-size: 13px;
}


.zqc-thankyou-details strong {

    color: #222222;

    font-size: 13px;

    text-align: right;
}


.zqc-thankyou-done {

    width: 100%;

    height: 48px;

    border: none;

    border-radius: 9px;

    background: #c89b32;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}


.zqc-thankyou-done:hover {

    background: #b38625;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .zqc-popup-overlay {

        padding: 10px !important;

        align-items: flex-start !important;
    }


    .zqc-popup {

        max-height: 96vh;

        margin-top: 2vh;

        border-radius: 14px;
    }


    .zqc-popup-left {

        padding: 28px 18px 22px;
    }


    .zqc-popup-left h2 {

        font-size: 24px;

        margin-right: 35px;
    }


    .zqc-checkout-subtitle {

        font-size: 13px;

        margin-bottom: 20px;
    }


    .zqc-form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .zqc-coupon-row {

        flex-direction: column;

        gap: 8px;
    }


    .zqc-apply-coupon {

        width: 100%;
    }


    .zqc-order-total-box {

        padding: 13px;
    }


    .zqc-thankyou-overlay {

        padding: 12px;
    }


    .zqc-thankyou-popup {

        padding: 35px 20px 22px;
    }


    .zqc-thankyou-popup h2 {

        font-size: 25px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .zqc-popup-left {

        padding: 25px 14px 20px;
    }


    .zqc-popup-left h2 {

        font-size: 22px;
    }


    .zqc-form input,
    .zqc-form select {

        height: 44px !important;
    }


    .zqc-thankyou-popup {

        padding-left: 15px;

        padding-right: 15px;
    }

}

/* ==========================================
   ZQC POPUP ALWAYS ABOVE EVERYTHING
========================================== */

/* .zqc-popup-overlay {
    position: fixed !important;
    inset: 0 !important;

    z-index: 2147483647 !important;

    width: 100vw !important;
    height: 100vh !important;

    isolation: isolate !important;
}

.zqc-popup {
    position: relative !important;
    z-index: 2147483647 !important;
} */