* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
body{
    font-family: "Lexend", sans-serif;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(to right, #ffffff 54%, #F8F9FA 43%);
}

.top-banner{
    width: 100%;
    min-height: 80px;
    
}

.top-ban-wrap{
    position: relative;
}

.top-banner img{
    width: 100%;
    height: auto;
    background-size: cover;
    min-height: 80px;
}

.top-ban-con{
    position: absolute;
     top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    max-width: 1050px;
    display: flex;
    -webkit-box-pack: start;
    justify-content: start;
    gap: 32px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: auto;
    align-items: center; 
}

.ban-header{
    font-size:32px;
    line-height: 38px;
    color: white;

}

.top-discount{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-height: 80px;
    top: -2px;
    gap: 10px;
}

.top-discount::after{
    content: "";
    background-color: rgb(242, 60, 60);
    height: 160px;
    width: 160px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
}

.m-wrap,
.t-wrap{
    position: relative;
    z-index: 1;
}

.m-wrap img{
    max-width: 40px;
    width: 100%;
    height: auto;
}

.t-wrap{
    display: flex;
    flex-direction: column;
    position: relative;
    left:-12px;
}

.save-up{
    font-size: 16px;
    font-weight: 600;
    color: white;
     margin: 0;
}

.discount-a{
    font-size: 56px;
    font-weight: 700;
    color: white;
     margin: 0;
     line-height: 1;
}

.timer-wrap{
        display: flex;
    justify-content: center;
    align-items:center;
}

#timer{
    margin:0;
    font-size:24px;
    line-height: 28px;
    font-weight: 700;
    color: white;
    font-family: "Lexend Deca", sans-serif;
}

#timer1{
    margin:0;
    font-size:24px;
    line-height: 28px;
    font-weight: 700;
    color: white;
    font-family: "Lexend Deca", sans-serif;
}

@media(min-width: 1450px){
    .top-ban-con{
        left: 43%;
    }

    .top-banner{
    width:100%;
    overflow:hidden;
}

.top-banner img{
    width:100%;
    height:clamp(55px, 4vw, 80px);
    object-fit:cover;
    display:block;
}

body{
    font-family: "Lexend", sans-serif;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(to right, #ffffff 50%, #F8F9FA 47%);
}

.order-summary {
    padding-left: 0px !important;
}

.shipping-section{
            max-width:450px;
}

}

/*THE CHECKOUT 1st STEP*/
     .scraped-container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px;
            padding-right: 24px;
            padding-left: 14px;
        }

        /* Top nav */
        .top-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #111827;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
        }

        .back-link svg {
            width: 16px;
            height: 16px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            margin-top: 25px;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .breadcrumb a {
            color: #10B981;
            text-decoration: none;
            font-weight: 300;
        }

        .breadcrumb .inactive {
            color: #9CA3AF;
        }

        .breadcrumb .sep {
            color: #D1D5DB;
        }

        /* Main layout */
        .checkout-wrapper {
            display: grid;
            grid-template-columns: 1fr 440px;
            gap: 48px;
            align-items: start;
        }

        /* LEFT: Shipping form */
        .shipping-section{
            max-width:411px;
            margin-left: 35px;
        }

        .shipping-section h2 {
            font-size: 20px;
            font-weight: 400;
            color: #111827;
            margin-bottom: 24px;
        }
        

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px;
        }

        .form-row.three-col {
            grid-template-columns: 1fr 1fr 1fr;
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            color: #9CA3AF;
            margin-bottom: 5px;
        }

        .form-control {
            width: 100%;
            padding: 16px;
            border: 0.7px solid rgb(210, 233, 230);
            border-radius: 10px;
            font-size: 16px;
            color: #111827;
            background: #fff;
            outline: none;
            transition: border-color 0.2s;
            font-family: inherit;
        }

        /* Floating labels */
        /* FLOATING LABEL WRAPPER */
.form-group.floating{
    position: relative;
}

/* INPUT */
.form-group.floating .form-control{
    padding: 16px;
}

/* LABEL INSIDE INPUT */
.form-group.floating label{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #9CA3AF;
    pointer-events: none;
    transition: 0.2s ease;
    background: white;
    padding: 0 4px;
}

/* ON FOCUS OR WHEN TYPED */
.form-group.floating .form-control:focus + label,
.form-group.floating .form-control:not(:placeholder-shown) + label{
    top: 10px;
    left: 12px !important;
    font-size: 10px;
    color: #9CA3AF;
}

/*PHONE INPUT CUSTOM*/
.custom-phone-field{
    position:relative;
    display:flex;
    align-items:center;
    height:auto;
    padding: 16px 0;
    border:1px solid #d9e7e3;
    border-radius:14px;
    background:#fff;
    overflow:visible;
}

/* LEFT */
.cp-country-select{
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
    padding-left:14px;
}

/* SELECTED */
.cp-selected-country{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    user-select:none;
}

.cp-selected-flag{
    width:28px;
    height:20px;
    object-fit:cover;
    border-radius:2px;
}

.cp-selected-code{
    font-size:16px;
    font-weight:300;
    color:#000;
}

/* INPUT AREA */
.cp-input-wrap{
    position:relative;
    flex:1;
    height:100%;
    display:flex;
    align-items:center;
}

/* FLOATING LABEL */
.cp-floating-label{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:16px;
    color:#7d7d7d;
    pointer-events:none;
    transition:0.25s ease;
    background:#fff;
    padding:0 4px;
}

/* INPUT */
.cp-phone-input{
    width:100%;
    height:100%;
    border:none;
    outline:none;
    padding:1px 18px 0 18px;
    font-size:16px;
    background:transparent;
}

/* FLOAT ON FOCUS */
.cp-phone-input:focus + .nothing{
}

/* FLOAT LABEL */
.cp-input-wrap.active .cp-floating-label{
    top:-10px;
    transform:none;
    font-size:10px;
    left:12px;
}

/* DROPDOWN */
.cp-country-dropdown{
    position:absolute;
    top:32px;
    left:0;
    width:320px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 24px rgba(0,0,0,0.12);
    display:none;
    z-index:9999;
}

.cp-country-dropdown.cp-open{
    display:block;
}

/* OPTION */
.cp-country-option{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    cursor:pointer;
    transition:0.2s;
    font-size:14px;
    background:#fff;
}

.cp-country-option:hover{
    background:#f3f5f7;
}

.cp-country-option.active{
    background:#2166d1;
    color:#fff;
}

/* FLAGS */
.cp-flag{
    width:28px;
    height:20px;
    object-fit:cover;
    border-radius:2px;
}

.cp-country-code{
    margin-left:auto;
    font-weight:300;
}

       

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
            cursor: pointer;
            font-weight: 300 !important;
        }

        .phone-input-wrapper {
            display: flex;
            align-items: stretch;
            border: 1.5px solid #E5E7EB;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
        }

        .phone-prefix {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 13px;
            border-right: 1.5px solid #E5E7EB;
            font-size: 13px;
            color: #6B7280;
            white-space: nowrap;
            background: #fff;
        }

        .phone-prefix svg {
            width: 20px;
            height: 14px;
            border-radius: 2px;
        }

        .phone-input-wrapper input {
            border: none;
            border-radius: 0;
            flex: 1;
            padding: 20px;
            font-size: 16px;
            outline: none;
            color: #111827;
            font-family: inherit;
        }

        .continue-btn {
            width: 100%;
            padding: 15px;
            background-color: #111827;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 8px;
            transition: background-color 0.2s;
            font-family: inherit;
            margin-top:25px;
        }

        /* HOVER SCALE */
.continue-btn:hover img{
    transform:scale(1.12);
}

        .continue-btn img{
    transition:transform 0.25s ease;
    transform-origin:center;
    will-change:transform;
}

/*disable continue button*/
.continue-btn:disabled {
    background-color: #7F7F7F;
   
}

/* IMPORTANT: kill hover effects when disabled */
.continue-btn:disabled:hover {
    background-color: #7F7F7F;
}

/* stop image hover animation too */
.continue-btn:disabled:hover img {
    transform: none;
}


        /* RIGHT: Order summary */
        .order-summary {
            border-radius: 16px;
            padding: 0px;
            padding-left: 20px;
        }

        .order-summary h2 {
            font-size: 20px;
            font-weight: 400;
            color: #111827;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid #E5E7EB;
        }

        .summary-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .summary-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .summary-item-info {
            flex: 1;
            min-width: 0;
        }

        .summary-item-info h4 {
            font-size: 16px;
            font-weight: 300;
            color: #111827;
            margin-bottom: 3px;
        }

        .summary-item-info p {
            font-size: 14px;
            font-weight:300;
            color: #9CA3AF;
            line-height: 1.4;
        }

        .summary-item-price {
            text-align: right;
            flex-shrink: 0;
        }

        .original-price {
            font-size: 18px;
            color: #EF4444;
            text-decoration: line-through;
            display: block;
            font-weight: 300;
        }

        .discounted-price {
            font-size: 18px;
            font-weight: 300;
            color: #10B981;
            display: block;
        }

        .regular-price {
            font-size: 18px;
            font-weight: 300;
            color: #111827;
            display: block;
        }

        .remove-link {
            font-size: 14px;
            font-weight: 300;;
            color: #9CA3AF;
            text-decoration: none;
            display: block;
            margin-top: 3px;
        }

        .remove-link:hover { color: #6B7280; }

        .discount-row {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }

        .discount-row input {
            flex: 1;
            padding: 11px 13px;
            border: 1.5px solid #E5E7EB;
            border-radius: 9px;
            font-size: 16px;
            outline: none;
            background: #fff;
            font-family: inherit;
        }

        .discount-row input::placeholder { color: #9CA3AF; }

        .apply-btn {
            padding: 11px 35px;
            background: #fff;
            color: #7CCFB4;
            border: 1.5px solid #7CCFB4;
            border-radius: 9px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }

        .apply-btn:hover {
            background: #7CCFB4;
            color: #fff;
        }

        .totals {
            border-top: 1px solid #E5E7EB;
            padding-top: 16px;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .total-row .label { color: #EF4444; font-weight: 300; }
        .total-row .label-dark { color: #111827; font-weight: 300; }
        .total-row .value { color: #EF4444;; font-weight: 300; }
        .total-row .value.free { color: #6B7280; }

        .total-final {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid #E5E7EB;
        }

        .total-final .label {
            font-size: 16px;
            font-weight: 500;
            color: #111827;
        }

        .total-wrap{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .total-final .original-total {
            font-size: 16px;
            color: #EF4444;
            text-decoration: line-through;
            font-weight: 500;
            
        }

        .total-final .final-price {
            font-size: 16px;
            font-weight: 500;
            color: #10B981;
        }

        .mobil-only{
            display:none !important;
        }

        .desktop-only{
            display: flex !important;
        }

        /* Responsive */
        @media (max-width: 900px) {
            body {
                background: #F3F4F6;
            }

            

            .checkout-wrapper {
                grid-template-columns: 1fr;
            }

            .shipping-section {
                background: #ffffff;
                border-radius: 16px;
                padding: 24px;
            }

            .order-summary {
                order: -1;
            }
        }

        @media (max-width: 700px) {
            .form-row { grid-template-columns: 1fr; }
            .form-row.three-col { grid-template-columns: 1fr; }
            .top-nav { flex-direction: column; align-items: flex-start; gap: 12px; }
            .scraped-container{padding-top:40px !important; padding-left: 0 !important; padding-right: 0 !important;}
            .shipping-section{margin-left: 0 !important; padding: 20px !important; max-width:100%;}
            .order-summary{padding: 20px !important; max-width:100%;}
            .mobil-only{
                display:block !important;
            }
             .desktop-only{
            display: none !important;
        }
        .ban-header{
            font-size: 20px;
            line-height: 20px;
            font-weight: 400;
        }

        #timer{
            font-size: 20px;
            line-height: 20px;
            font-weight: 400;
        }

        .mobil-ban{
            width:100%;
            height:100%;
            max-height: 106px;
        }

       .top-ban-con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-left:16px;
}

.top-discount{
    position: relative;
    height: 100%;
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.top-discount::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    height: 120px;
    left: 50%;
    transform: translateX(-35%);
    background: rgb(242, 60, 60);
    border-radius: 999px;
    z-index: 0;
}

.t-wrap {
    left: -2px;
}

.m-wrap{
    left: 12px;
}

.m-wrap img {
    max-width: 40px;
    width: 100%;
    height: 106px;
}

.discount-a{
    font-size: 44px;
}

.save-up{
    font-size: 14px;
    }

}


    /* ─────────────────────────────────────────────
     CSS  —  paste into your style.css
───────────────────────────────────────────────── */


        /* ── HIDE step 2 by default ── */
.payment-section {
    display: none;
    max-width: 480px;
    margin-left: 35px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
 
.payment-section.visible {
    opacity: 1;
    transform: translateX(0);
}
 
/* ── HIDE step 1 transition ── */
.shipping-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
 
.shipping-section.slide-out {
    opacity: 0;
    transform: translateX(-40px);
    pointer-events: none;
}
 
/* ── H2 matches shipping-section h2 ── */
.payment-section h2 {
    font-size: 20px;
    font-weight: 400;
    color: #111827;
    margin-bottom: 20px;
    margin-top: 30px;
}
 
/* ── PAYMENT CARD ── */
.payment-card {
    background: #F8F9FA;
    border: 0.7px solid rgb(210, 233, 230);
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 15px;
}
 
/* PAYPAL */
.paypal-btn {
    width: 100%;
    padding: 12px;
    background: #FFC439;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: inherit;
    transition: filter 0.2s;
}

.paypal-btn img {
    max-width: 70px;
    width:100%;
    height: auto;
    object-fit: contain;
}

.paypal-btn:hover { filter: brightness(0.96); }
 
/* GPAY */
.gpay-btn {
    width: 100%;
    padding: 12px;
    background: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: inherit;
    transition: filter 0.2s;
}

.gpay-btn img {
    max-width:110px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gpay-btn:hover { filter: brightness(1.15); }
 
/* DIVIDER */
.pay-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 300;
}
.pay-divider::before,
.pay-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}
 
/* FIELD GROUP */
.pay-field-group {
    margin-bottom: 14px;
}
 
.pay-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 6px;
}
 
/* INPUT WRAP */
.pay-input-wrap {
    display: flex;
    align-items: center;
    border: 0.7px solid rgb(210, 233, 230);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s;
}
.pay-input-wrap:focus-within {
    border-color: #10B981;
}
 
.card-input-wrap { gap: 0; }
 
.card-icon {
    max-width: 24px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-left: 14px;
    flex-shrink: 0;
    border-radius: 3px;
}
 
.pay-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 16px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 300;
    color: #111827;
    background: transparent;
}
.pay-input::placeholder { color: #9CA3AF; }
 
/* EXPIRY + CVV row */
.pay-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
 
/* PAY SECURELY */
.pay-secure-btn {
    width: 100%;
    padding: 16px;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s;
    margin-top: 6px;
}
.pay-secure-btn:hover { background: #3E3F3F; }
 
/* ── UPSELL BLOCK ── */
.upsell-block {
    margin-bottom: 24px;
    margin-top:40px;
}
 
.upsell-title {
    font-size: 20px;
    font-weight: 400;
    color: rgb(33, 37, 41);
    margin-bottom: 12px;
}

.p-agree{
    font-size: 14px;
    font-weight: 300;
    color:  rgb(33, 37, 41);
    text-align: center;
    line-height: 18px;
    margin-bottom: 34px;
}
 
.upsell-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}
 
.upsell-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}
 
.upsell-option input[type="radio"] {
    display: none;
}
 
/* custom radio circle */
.upsell-option::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid #D1D5DB;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}
 
.upsell-option.selected {
    border-color: #93C5D8;
    background: #EBF5FA;
}
 
.upsell-option.selected::before {
    border-color: #3B82F6;
    background: #3B82F6;
    box-shadow: inset 0 0 0 3px #EBF5FA;
}
 
.upsell-img-wrap img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
}
 
.upsell-info {
    flex: 1;
}
 
.upsell-name {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 2px;
}
 
.upsell-sub {
    font-size: 14px;
    font-weight: 300;
    color: #9CA3AF;
}
 
.upsell-price-wrap {
    text-align: right;
}
 
.upsell-price {
    font-size: 28px;
    font-weight: 400;
    color: #111827;
}
 
.upsell-per {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 300;
}
 
.upsell-badge {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: #3B82F6;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 0 11px 11px 0;
}
 
.upsell-read-more {
    font-size: 16px;
    font-weight: 500;
    color: #059df0;
    text-decoration: none;
}
.upsell-read-more:hover { color:#3EB3F4 }
 
/* ── SHIPPING SUMMARY ── */
.shipping-summary-block {
    border: 0.7px solid rgb(210, 233, 230);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    background: #fff;
    margin-top: 24px;
    background-color: #F8F9FA;
}
 
.ssb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(222, 226, 230);
}
 
.ssb-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
 
.ssb-title {
    font-size: 20px;
    font-weight: 400;
    color: #111827;
}
 
.ssb-edit {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
}
.ssb-edit:hover { color: #10B981; }
 
.ssb-details {
    font-size: 14px;
    font-weight: 300;
    color: #374151;
    line-height: 1.8;
    padding: 24px 32px;
}
 
/* ── CONDITIONS ── */
.conditions-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
 
.cond-item {
    border: 0.7px solid rgb(210, 233, 230);
    border-radius: 14px;
    overflow: hidden;
    background: #F8F9FA;
}
 
.cond-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
}
 
.cond-title {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}
 
.cond-toggle {
    font-size: 20px;
    font-weight: 300;
    color: #6B7280;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D2E9E6;
    border-radius: 50%;
}
 
.cond-body {
    padding: 0 20px 16px;
    font-size: 14px;
    font-weight: 300;
    color: #212529;
    line-height: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.cond-body.collapsed {
    display: none;
}
 
.cond-link {
    color: #10B981;
    font-weight: 300;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .payment-section {
        margin-left: 0;
        max-width: 100%;
    }
}
 
@media (max-width: 540px) {
    .pay-row { grid-template-columns: 1fr; }
}

/* FOOTER */
.checkout-footer{
    width:100%;
    border-top:1px solid #dee2e6;
    margin-top:60px;
    background:#fff;
}

.footer-inner{
    max-width:1440px;
    margin:0 auto;

    padding:48px 0;
    padding-left: 130px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
}

/* LEFT */
.footer-left{
    max-width:760px;
}

.footer-disclaimer{
    font-size:12px;
    line-height:16px;
    font-weight:300;
    color:#6c757d;

    margin:0 0 24px 0;
}

.footer-copy{
    font-size:12px;
    font-weight:300;
    color:#6c757d;

    margin:0;
}

.desktop-only1{
    display:block !important;
}


/* MOBILE */
@media (max-width:700px){

    .footer-inner{
        flex-direction:column;
        align-items:flex-start;

        padding:32px 20px;
    }

    .footer-disclaimer{
        text-align: center;
    }

    .footer-copy{
        text-align: center;
    }

    .desktop-only1{
        display: none !important;
    }

    .totals{
        border: none;
        padding-top: 0;
    }

    .total-final{
        border: none;
    }
   

    .sum-wrap{
        display:flex;
        align-items: center;
        justify-content: space-between;
    }

    .sum-wrap svg{
        width: 24px;
        height: 24px;
    }

    .order-summary svg {
    transition: transform 0.3s ease;
}

.order-summary.open svg {
    transform: rotate(180deg);
}

    .order-summary h2 {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .collapse-wrap{
      margin-top: 30px;
       max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    }

    /* open state */
.order-summary.open .collapse-wrap {
    max-height: 1000px; /* large enough for content */
}

.checkout-footer{
    margin-top: 0;
}

.sumarry-cart{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:5px;
}

.sumarry-cart img{
    width:28px;
    height: 28px;
}

    .payment-section {
      padding: 20px;
    }


}