

body {
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

.checkout-progress-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    margin-top: 72px; /* offset fixed navbar */
}

.progress-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 24px;
}

.step-active .step-circle { background: #2563eb; color: #fff; }
.step-active .step-label { color: #0f172a; font-weight: 600; }

.step-inactive .step-circle { background: #e2e8f0; color: #94a3b8; }
.step-inactive .step-label { color: #94a3b8; }

.step-completed .step-circle { background: #10b981; color: #fff; }
.step-completed .step-label { color: #0f172a; font-weight: 500; }

.progress-line.completed { background: #10b981; }
.progress-line.error { background: #ef4444; }

.step-error .step-circle { background: #ef4444; color: #fff; }
.step-error .step-label { color: #ef4444; }

.checkout-main {
    padding: 40px 0 80px;
}

.checkout-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: start;
}

.checkout-single-col {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 24px;
}

.checkout-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 10px 15px -5px rgba(0,0,0,0.02);
    padding: 32px;
    margin-bottom: 24px;
}

.checkout-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.plan-summary-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.plan-info p {
    font-size: 13px;
    color: #64748b;
}

.card-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 24px 0;
}

.plan-features h4 {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
}

.feature-item svg {
    color: #f97316;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
    color: #475569;
}

.pricing-row.discount {
    color: #f97316;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
}

.total-row .total-label {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.total-row .total-amount {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
}

.alert-box {
    background: #eff6ff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
}

.alert-box svg {
    color: #2563eb;
    flex-shrink: 0;
}

.alert-content strong {
    display: block;
    font-size: 13px;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.alert-content p {
    font-size: 11px;
    color: #3b82f6;
}

.form-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.form-group input, .form-group select {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    color: #0f172a;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus, .form-group select:focus {
    border-color: #2563eb;
}

.payment-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
    gap: 32px;
}

.payment-tab {
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    position: relative;
    cursor: pointer;
}

.payment-tab.active {
    color: #2563eb;
    font-weight: 600;
}

.payment-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8fafc;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 24px;
    font-size: 12px;
    color: #475569;
}

.security-badge svg {
    color: #f97316;
}

.security-badge.green-badge svg {
    color: #10b981;
}

.terms-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #475569;
}

.terms-check a {
    color: #2563eb;
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.secure-note {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
}

.checkout-footer {
    border-top: 1px solid #e2e8f0;
    padding: 32px 0;
    background: #fff;
    margin-top: auto;
}

.checkout-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
}

.checkout-footer-links {
    display: flex;
    gap: 24px;
}

.status-card {
    text-align: center;
    padding: 48px 40px;
}

.status-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.status-icon.processing {
    border: 4px solid #2563eb;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.status-icon.success { background: #10b981; color: #fff; box-shadow: 0 0 0 12px #d1fae5; }
.status-icon.failed { background: #ef4444; color: #fff; box-shadow: 0 0 0 12px #fee2e2; }

.status-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.status-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
}

.dots-loader { font-size: 24px; color: #2563eb; margin-bottom: 32px; letter-spacing: 4px;}

.warning-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-bottom: 32px;
}

.warning-box svg { color: #d97706; flex-shrink: 0; margin-top: 2px;}
.warning-box h4 { font-size: 13px; font-weight: 600; color: #92400e; margin-bottom: 4px;}
.warning-box p { font-size: 12px; color: #b45309; margin: 0; line-height: 1.5;}

.details-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    margin-bottom: 32px;
}

.details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 13px;
}
.details-row:last-child { margin-bottom: 0; }
.details-row .d-label { color: #64748b; }
.details-row .d-value { color: #0f172a; font-weight: 600; }
.details-row .d-value.success { color: #10b981; background: #dcfce7; padding: 4px 12px; border-radius: 999px; }
.details-row .d-value.failed { color: #ef4444; background: #fee2e2; padding: 4px 12px; border-radius: 999px; }

.btn-primary-block {
    display: block;
    width: 100%;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 12px;
}

.btn-outline-block {
    display: block;
    width: 100%;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.failed-reasons {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    margin-bottom: 32px;
}

.failed-reasons h4 { font-size: 13px; font-weight: 600; color: #991b1b; margin-bottom: 16px;}
.reason-item { display: flex; gap: 12px; margin-bottom: 16px;}
.reason-item:last-child { margin-bottom: 0; }
.reason-item svg { color: #ef4444; flex-shrink: 0; }
.reason-item strong { display: block; font-size: 13px; color: #991b1b; margin-bottom: 4px;}
.reason-item p { font-size: 11px; color: #ef4444; margin: 0;}

.help-link-box {
    background: #eff6ff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    text-align: left;
    margin-top: 24px;
}
.help-link-box svg { color: #2563eb; }
.help-link-box h4 { font-size: 13px; font-weight: 600; color: #1e3a8a; }
.help-link-box p { font-size: 11px; color: #3b82f6; margin: 4px 0; }
.help-link-box a { font-size: 11px; font-weight: 600; color: #2563eb; }

.whats-next {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    margin-top: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.whats-next h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.wn-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.wn-item:last-child { margin-bottom: 0; }

.wn-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.wn-content strong { display: block; font-size: 13px; color: #0f172a; margin-bottom: 4px;}
.wn-content p { font-size: 12px; color: #64748b; margin: 0; }

.bottom-support-link { text-align: center; margin-top: 32px; font-size: 13px; color: #64748b; }
.bottom-support-link a { color: #2563eb; font-weight: 500; display: block; margin-top: 4px;}

.receipt-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.link-back {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2563eb;
    font-weight: 500;
}

.receipt-actions {
    display: flex;
    gap: 12px;
}

.btn-sm-blue {
    background: #2563eb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-sm-outline {
    background: #fff;
    border: 1px solid #cbd5e1;
    outline: none;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.receipt-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.receipt-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}
.receipt-brand img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover;}
.receipt-brand h2 { font-size: 20px; margin-bottom: 4px;}
.receipt-brand p { font-size: 12px; color: #64748b;}

.receipt-meta { text-align: right; }
.receipt-meta h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #0f172a; text-transform: uppercase;}
.receipt-meta p { font-size: 12px; color: #64748b; }
.receipt-meta strong { color: #0f172a; }

.receipt-section-title { font-size: 12px; font-weight: 700; color: #0f172a; text-transform: uppercase; margin-bottom: 16px; letter-spacing: 0.5px;}

.billed-to {
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.billed-item label { display: block; font-size: 11px; color: #64748b; margin-bottom: 6px;}
.billed-item div { font-size: 14px; font-weight: 600; color: #0f172a;}

.receipt-table { margin-bottom: 40px; }
.rt-header { display: flex; justify-content: space-between; background: #f1f5f9; padding: 12px 24px; font-size: 12px; font-weight: 600; color: #0f172a; border-radius: 8px; margin-bottom: 16px;}
.rt-row { display: flex; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid #f1f5f9;}
.rt-row:last-child { border-bottom: none; }
.rt-desc strong { display: block; font-size: 13px; color: #0f172a; margin-bottom: 4px;}
.rt-desc p { font-size: 11px; color: #64748b; margin: 0;}
.rt-amount { font-size: 13px; font-weight: 500; color: #0f172a; }
.rt-row.discount .rt-desc strong, .rt-row.discount .rt-amount { color: #10b981; }

.rt-total { background: #f8fafc; border-radius: 8px; padding: 24px; }
.rt-sub-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 12px; color: #64748b; }
.rt-sub-row .amt { font-weight: 600; color: #0f172a;}
.rt-sub-row.discount .amt { color: #10b981; }
.rt-final { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #e2e8f0; padding-top: 16px; margin-top: 16px;}
.rt-final span { font-size: 18px; font-weight: 700; color: #0f172a; }
.rt-final .total-val { font-size: 24px; font-weight: 800; color: #10b981; }

.transaction-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px;}
.tc-card { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 8px; padding: 20px; }
.tc-card.highlight { background: #f0fdf4; border-color: #bbf7d0;}
.tc-label { font-size: 11px; color: #64748b; margin-bottom: 12px; }
.tc-val { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #0f172a;}
.tc-val svg { color: #2563eb; }
.tc-card.highlight .tc-val svg { color: #10b981; }

.receipt-footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; padding-top: 32px; border-top: 1px solid #f1f5f9; text-align: left; }
.rf-col h4 { font-size: 11px; font-weight: 700; color: #0f172a; text-transform: uppercase; margin-bottom: 8px;}
.rf-col p { font-size: 11px; color: #64748b; line-height: 1.6; margin: 0;}

.receipt-thanks { text-align: center; margin-top: 40px; font-size: 11px; color: #94a3b8; }

.official-receipt-box {
    margin-top: 24px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.official-receipt-box svg { color: #2563eb; flex-shrink: 0; }
.official-receipt-box h4 { font-size: 13px; font-weight: 600; color: #1e3a8a; margin-bottom: 6px; }
.official-receipt-box p { font-size: 12px; color: #3b82f6; line-height: 1.5; margin: 0;}

@media print {
    body {
        background-color: #fff !important;
        margin: 0;
        padding: 0;
    }

    .main-nav, 
    .receipt-action-bar, 
    .checkout-footer {
        display: none !important;
    }

    main {
        padding: 0 !important;
        margin: 0 !important;
    }

    .checkout-card {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .official-receipt-box {
        break-inside: avoid;
        border: 1px solid #cbd5e1 !important;
        background: transparent !important;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .checkout-card::before {
        content: '';
        position: fixed;
        top: 30%;
        left: 25%;
        width: 50%;
        height: 40%;
        background-image: url('../assets/logo/cubecover.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        opacity: 0.04;
        z-index: 0;
        pointer-events: none;
    }

    .checkout-card > * {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 768px) {
    .checkout-progress-bar {
        margin-top: 60px !important; /* mobile nav height */
    }

    .checkout-grid { grid-template-columns: 1fr !important; padding: 0 16px; gap: 20px; }
    .checkout-main { padding: 24px 0 80px; }
    .checkout-card { padding: 20px !important; }
    .checkout-card h2 { font-size: 16px; }

    .form-grid { grid-template-columns: 1fr !important; gap: 12px; }
    .form-group-full { grid-column: 1 !important; }

    .billed-to { grid-template-columns: 1fr !important; gap: 16px !important; padding: 16px !important; }
    .transaction-cards { grid-template-columns: 1fr !important; gap: 16px !important; }
    .receipt-footer-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

    .receipt-top { flex-direction: column !important; gap: 16px; align-items: flex-start; }
    .receipt-meta { text-align: left !important; }
    .receipt-action-bar { flex-direction: row !important; flex-wrap: wrap; margin: 80px 16px 16px !important; gap: 12px; }

    .btn-submit { font-size: 14px; padding: 14px; }
    .total-row .total-amount { font-size: 20px; }
    
    .checkout-single-col { padding: 24px 16px; }

    .status-card { padding: 32px 20px; }
    .details-box { padding: 16px; }
    .details-row { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
    .checkout-progress-bar .progress-container { gap: 8px; padding: 0 12px; }
    .step-label { font-size: 11px; }
    .progress-line { margin: 0 8px; }
}

@media (max-width: 768px) {

    .checkout-progress-bar {
        padding: 12px 0 !important;
    }

    .progress-container {
        padding: 0 20px !important;
    }

    .step-label {
        font-size: 11px !important;
    }

    .step-circle {
        width: 24px !important;
        height: 24px !important;
        font-size: 11px !important;
    }

    .progress-line {
        margin: 0 8px !important;
    }

    .checkout-main {
        padding: 20px 0 120px !important; 
    }

    .checkout-grid {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 16px !important;
        gap: 16px !important;
        max-width: 100% !important;
    }

    .checkout-col-left {
        order: 1 !important;
    }

    .checkout-col-right {
        order: 2 !important;
    }

    .checkout-card {
        padding: 18px !important;
        border-radius: 14px !important;
        margin-bottom: 0 !important;
    }

    .checkout-card h2 {
        font-size: 15px !important;
        margin-bottom: 16px !important;
    }

    .plan-summary-header {
        gap: 12px !important;
    }

    .plan-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
    }

    .plan-info h3 { font-size: 14px !important; }
    .plan-info p { font-size: 12px !important; }

    .plan-features h4 { font-size: 12px !important; }
    .feature-item { font-size: 12px !important; gap: 8px !important; }

    .pricing-row { font-size: 13px !important; margin-bottom: 12px !important; }
    .total-row .total-label { font-size: 15px !important; }
    .total-row .total-amount { font-size: 22px !important; }

    .form-section-title { font-size: 12px !important; }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .form-group-full { grid-column: 1 !important; }

    .form-group label { font-size: 12px !important; }

    .form-group input,
    .form-group select {
        padding: 13px 14px !important;
        border-radius: 8px !important;
        font-size: 16px !important; 
    }

    .security-badge {
        border-radius: 10px !important;
        padding: 14px !important;
        font-size: 13px !important;
    }

    .terms-check {
        font-size: 12px !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .btn-submit {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        padding: 16px 24px !important;
        font-size: 16px !important;
        z-index: 100;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }

    .secure-note {
        display: none !important; 
    }

    .alert-box {
        padding: 12px !important;
        border-radius: 8px !important;
        font-size: 12px !important;
    }

    .checkout-single-col {
        padding: 80px 20px 100px !important;
        max-width: 100% !important;
    }

    .status-card {
        padding: 32px 20px !important;
        border-radius: 16px !important;
    }

    .status-icon {
        width: 72px !important;
        height: 72px !important;
        margin-bottom: 24px !important;
    }

    .status-card h2 { font-size: 22px !important; }
    .status-card p { font-size: 14px !important; }

    .details-box {
        padding: 16px !important;
        border-radius: 10px !important;
    }

    .details-row {
        font-size: 13px !important;
        flex-direction: column !important;
        gap: 3px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #f1f5f9;
    }
    .details-row:last-child { border-bottom: none; }

    .btn-primary-block {
        font-size: 15px !important;
        padding: 14px !important;
        border-radius: 10px !important;
        min-height: 50px !important;
    }

    .btn-outline-block {
        font-size: 15px !important;
        padding: 14px !important;
        border-radius: 10px !important;
        min-height: 50px !important;
    }

    .receipt-action-bar {
        margin: 76px 16px 16px !important;
        padding: 0 !important;
    }

    .receipt-top {
        flex-direction: column !important;
        gap: 16px !important;
        padding-bottom: 20px !important;
    }

    .receipt-meta { text-align: left !important; }
    .receipt-brand h2 { font-size: 18px !important; }
    .receipt-meta h3 { font-size: 14px !important; }

    .billed-to {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 16px !important;
    }

    .receipt-table { margin-bottom: 24px !important; }
    .rt-row { padding: 12px 16px !important; }
    .rt-desc strong { font-size: 13px !important; }
    .rt-amount { font-size: 13px !important; }

    .rt-final span { font-size: 15px !important; }
    .rt-final .total-val { font-size: 22px !important; }

    .transaction-cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .receipt-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (max-width: 768px) {
    .container,
    [class$="-container"],
    [class*="hero-container"],
    [class*="page-container"],
    [class*="section-container"],
    .checkout-grid,
    .quote-main {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

