/* Checkout Page - Vega/Luna Style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #1e293b;
    overflow-x: hidden;
    /* Fix horizontal scroll */
    min-height: 100vh;
    width: 100%;
}

html {
    overflow-x: hidden;
}

/* Top Bar */
.chk-topbar {
    background: #009c3b;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.chk-topbar i {
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

/* Header */
.chk-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.chk-header img {
    height: 32px;
}

.chk-header .chk-secure {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #16a34a;
    font-size: 0.72rem;
    font-weight: 700;
}

.chk-header .chk-secure i {
    width: 14px;
    height: 14px;
}

/* Layout */
.chk-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 16px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
}

@media (max-width: 768px) {
    .chk-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Cards */
.chk-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8ecf0;
}

.chk-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chk-card h3 .step-num {
    background: #009c3b;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Form */
.chk-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.chk-row.single {
    flex-direction: column;
}

@media (max-width: 480px) {
    .chk-row {
        flex-direction: column;
        gap: 12px;
    }
}

.chk-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chk-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
}

.chk-field label .optional {
    color: #94a3b8;
    font-weight: 400;
}

.chk-field input {
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border 0.2s;
    outline: none;
    background: #fff;
}

.chk-field input:focus {
    border-color: #009c3b;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.chk-field input.error {
    border-color: #ffdf00;
}

.chk-field .field-hint {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
}

.chk-field input:disabled {
    background: #f1f5f9;
    color: #64748b;
}

/* Address auto-filled */
.address-auto {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 12px;
    margin-bottom: 12px;
}

.address-auto.full {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 480px) {
    .address-auto {
        grid-template-columns: 1fr;
    }

    .address-auto.full {
        grid-template-columns: 1fr;
    }
}

/* Payment */
.pay-option {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    margin-bottom: 8px;
    position: relative;
}

.pay-option:hover {
    border-color: #cbd5e1;
}

.pay-option.selected {
    border-color: #009c3b;
    background: #f0f4ff;
}

.pay-option input[type="radio"] {
    display: none;
}

.pay-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pay-option.selected .pay-radio {
    border-color: #009c3b;
    background: #009c3b;
}

.pay-option.selected .pay-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.pay-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.pay-info p {
    font-size: 0.75rem;
    color: #64748b;
}

.pay-badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #16a34a;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.pay-badge.recommended {
    background: #009c3b;
}

/* PIX Highlight */
.pix-savings {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #166534;
    font-weight: 600;
}

.pix-savings i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Gateway Warning */
.gateway-warn {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: #92400e;
    line-height: 1.4;
}

.gateway-warn i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    color: #d97706;
}

/* CTA Button */
.chk-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
}

.chk-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
}

.chk-submit:active {
    transform: translateY(0);
}

.chk-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.chk-submit i {
    width: 20px;
    height: 20px;
}

.chk-submit .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Security Strip */
.chk-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    padding: 8px 0;
}

.chk-security .sec-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
}

.chk-security .sec-item i {
    width: 12px;
    height: 12px;
}

/* Sidebar: Product Summary */
.chk-summary {
    position: sticky;
    top: 20px;
}

.summary-product {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 16px;
}

.summary-product img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.summary-product .prod-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.summary-product .prod-info .prod-qty {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

.summary-product .prod-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #009c3b;
    margin-top: 4px;
}

/* Price Summary */
.price-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
}

.price-line.discount {
    color: #16a34a;
}

.price-line.total {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    border-top: 2px solid #e2e8f0;
    padding-top: 12px;
    margin-top: 4px;
}

/* Timer */
.chk-timer {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 16px;
}

.chk-timer p {
    font-size: 0.78rem;
    color: #991b1b;
    font-weight: 600;
}

.chk-timer .timer-count {
    font-size: 1.2rem;
    font-weight: 800;
    color: #eab308;
    font-variant-numeric: tabular-nums;
}

/* Social Proof Toast */
.social-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 320px;
    border: 1px solid #e2e8f0;
}

.social-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.social-toast .toast-icon {
    width: 36px;
    height: 36px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-toast .toast-icon i {
    width: 18px;
    height: 18px;
    color: #16a34a;
}

.social-toast .toast-text {
    font-size: 0.78rem;
    color: #334155;
    line-height: 1.3;
}

.social-toast .toast-text strong {
    color: #1e293b;
}

.social-toast .toast-time {
    font-size: 0.65rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .social-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: unset;
    }
}

/* Social Proof Banner */
.chk-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.chk-proof .proof-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.chk-proof .proof-text {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
}

.chk-proof-badge {
    text-align: center;
    margin-top: 8px;
}

.chk-proof-badge span {
    background: #f0fdf4;
    color: #166534;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid #bbf7d0;
}

.chk-proof-badge span i {
    width: 11px;
    height: 11px;
    vertical-align: middle;
}

/* Guarantee */
.chk-guarantee {
    text-align: center;
    margin-top: 12px;
    padding: 12px;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 8px;
}

.chk-guarantee .g-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #a16207;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.chk-guarantee .g-title i {
    width: 16px;
    height: 16px;
}

.chk-guarantee .g-sub {
    font-size: 0.7rem;
    color: #92400e;
    margin-top: 4px;
}

/* Footer */
.chk-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.7rem;
    color: #94a3b8;
}

.chk-footer a {
    color: #64748b;
    text-decoration: underline;
}

/* Pix Modal (reused from main) */
.chk-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.chk-modal-overlay.active {
    display: flex;
}

.chk-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.chk-modal .close-x {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
}

.chk-modal .close-x i {
    width: 20px;
    height: 20px;
}

.chk-modal h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.chk-modal .modal-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 20px;
}

.chk-modal .qr-img {
    max-width: 220px;
    margin: 0 auto;
    display: block;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
}

.chk-modal .pix-copy-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.chk-modal .pix-copy-row input {
    flex: 1;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.78rem;
    font-family: monospace;
}

.chk-modal .pix-copy-row button {
    background: #009c3b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
}

.chk-modal .waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: #64748b;
    font-size: 0.85rem;
}

.chk-modal .cancel-link {
    display: inline-block;
    margin-top: 16px;
    color: #94a3b8;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    border: none;
    background: none;
}

/* Success State */
.success-state {
    display: none;
}

.success-state .success-icon {
    width: 70px;
    height: 70px;
    background: #009c3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-state .success-icon i {
    width: 35px;
    height: 35px;
    color: #fff;
}

.success-state h2 {
    color: #009c3b;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

/* Spin */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Error msg */
.chk-error {
    display: none;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 0.82rem;
    color: #991b1b;
}

/* Bump Option Clickable Fix */
/* Bump Option Premium UI (Text-Only) */
.bump-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.bump-option:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.bump-option.selected {
    border: 2px solid #009c3b;
    background: #f0f9ff;
    padding: 11px;
    /* Compensate for border width */
}

/* Image styles removed */

.bump-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bump-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.bump-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.3;
}

.bump-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.bump-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #16a34a;
}

.bump-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
}

.bump-badge.best-seller {
    background: #eab308;
    color: #fff;
}

.bump-badge.recommended {
    background: #009c3b;
    color: #fff;
    animation: pulse 1.5s infinite;
}

/* Error Overlay Content */
.chk-error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.3s ease;
}

.chk-error-icon {
    width: 64px;
    height: 64px;
    color: #ffdf00;
    /* Red-500 */
    animation: shake 0.5s ease;
}

.chk-error-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.chk-error-desc {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 280px;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.bump-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #009c3b;
}

/* Toast */
.chk-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1e293b;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3000;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s;
}

.chk-toast.show {
    transform: translateY(0);
    opacity: 1;
}


/* Processing Overlay */
.chk-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.chk-overlay.active {
    display: flex;
}

.chk-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: #009c3b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.chk-overlay p {
    font-size: 1rem;
    font-weight: 600;
    color: #009c3b;
    animation: pulse 1.5s infinite;
}


/* Order Bump Styles (Vega/Luna Style) */
.bump-container {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bump-header {
    background: #f8fafc;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
}

.bump-header i {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.bump-options {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bump-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.bump-option:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.bump-option.selected {
    border-color: #3b82f6;
    /* Blue highlight */
    background: #eff6ff;
}

.bump-radio {
    margin-top: 4px;
    /* Align with title */
    accent-color: #3b82f6;
    width: 18px;
    height: 18px;
}

.bump-info {
    flex: 1;
}

.bump-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 2px;
}

.bump-tag {
    background: #16a34a;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    font-weight: 800;
    vertical-align: middle;
}

.bump-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.3;
}

.bump-price-block {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bump-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #16a34a;
}

.bump-old-price {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
}

@media (max-width: 480px) {
    .bump-option {
        padding: 10px;
    }

    .bump-title {
        font-size: 0.85rem;
    }

    .bump-desc {
        font-size: 0.75rem;
    }
}

/* Coupon Modal */
.chk-coupon-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2147483647;
    /* Max Z-Index */
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.chk-coupon-modal.active {
    display: flex;
    opacity: 1;
}

.chk-coupon-modal .chk-modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.chk-coupon-modal.active .chk-modal-content {
    transform: translateY(0);
}

.chk-modal-icon {
    width: 64px;
    height: 64px;
    background: #dbeafe;
    /* Blue-100 */
    color: #009c3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.chk-modal-icon i {
    width: 32px;
    height: 32px;
}

.chk-modal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.chk-modal-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.chk-coupon-box {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: all 0.2s;
}

.chk-coupon-box:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.chk-coupon-box span {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #009c3b;
    letter-spacing: 1px;
}

.chk-coupon-box i {
    color: #64748b;
    width: 18px;
    height: 18px;
}

#modal-copy-msg {
    font-size: 0.75rem;
    margin-bottom: 24px;
}

.chk-btn-primary {
    background: #009c3b;
    color: #fff;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.chk-btn-primary:hover {
    background: #0f172a;
}
