/* ========== CART ICON IN HEADER ========== */
.cart-toggle {
    position: relative;
    background: none;
    border: none;
    color: var(--color-white, #fff);
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    transition: color 0.2s;
}
.cart-toggle:hover { color: var(--color-accent, #c8a96e); }
.cart-count {
    position: absolute;
    top: 0; right: 0;
    background: var(--color-accent, #c8a96e);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--color-bg, #0a0a0a);
}

/* Categories filter */
.categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 40px 0;
}
.category-btn {
    padding: 9px 22px;
    border: 1px solid rgba(200,169,110,0.4);
    background: transparent;
    color: var(--color-white, #fff);
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.25s;
}
.category-btn:hover,
.category-btn.active {
    background: var(--color-accent, #c8a96e);
    border-color: var(--color-accent, #c8a96e);
    color: #0a0a0a;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

/* Product card */
.product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 18px; }
.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}
.product-price {
    color: var(--color-accent, #c8a96e);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 14px;
}
.btn-add-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--color-accent, #c8a96e);
    color: var(--color-accent, #c8a96e);
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.25s;
    justify-content: center;
}
.btn-add-cart:hover {
    background: var(--color-accent, #c8a96e);
    color: #0a0a0a;
}

/* ========== CART MODAL ========== */
.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    background: rgba(0,0,0,0.6);
}
.cart-modal.active {
    visibility: visible;
    opacity: 1;
}
.cart-modal-content {
    background: #fff;
    width: 420px;
    max-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid rgba(0,0,0,0.1);
}
html.dark .cart-modal-content {
    background: #111;
    border-left-color: rgba(255,255,255,0.08);
}
.cart-modal.active .cart-modal-content {
    transform: translateX(0);
}
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
html.dark .cart-header {
    border-bottom-color: rgba(255,255,255,0.1);
}
.cart-header h2 {
    font-family: 'Playfair Display', serif;
    color: #1f2937;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}
html.dark .cart-header h2 {
    color: #fff;
}
.cart-close {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.cart-close:hover { 
    color: #1f2937; 
    background: #f3f4f6;
}
html.dark .cart-close {
    color: rgba(255,255,255,0.6);
}
html.dark .cart-close:hover { 
    color: #fff; 
    background: rgba(255,255,255,0.1);
}
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-empty {
    text-align: center;
    color: #6b7280;
    margin-top: 60px;
    font-size: 15px;
}
html.dark .cart-empty {
    color: rgba(255,255,255,0.4);
}

/* Cart item - Adaptive theme */
.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
html.dark .cart-item {
    border-bottom-color: rgba(255,255,255,0.06);
}
.cart-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 {
    color: #1f2937;
    font-size: 14px;
    margin: 0 0 4px;
    line-height: 1.3;
    font-weight: 600;
}
html.dark .cart-item-info h4 {
    color: #fff;
}
.cart-item-price {
    color: #c8a96e;
    font-size: 13px;
    margin: 0;
    font-weight: 600;
}
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #1f2937;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover {
    background: #c8a96e;
    border-color: #c8a96e;
    color: #000;
}
html.dark .qty-btn {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.qty-value {
    color: #1f2937;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}
html.dark .qty-value {
    color: #fff;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.cart-item-remove:hover { 
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}
html.dark .cart-item-remove {
    color: rgba(255,255,255,0.3);
}
html.dark .cart-item-remove:hover { 
    color: #ef4444;
}

/* Cart footer - Adaptive theme */
.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: #f9fafb;
}
html.dark .cart-footer {
    border-top-color: rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    color: #6b7280;
    font-size: 15px;
}
html.dark .cart-total {
    color: rgba(255,255,255,0.7);
}
.total-amount {
    color: #c8a96e;
    font-size: 18px;
    font-weight: 700;
}
.btn-checkout {
    width: 100%;
    padding: 14px;
    background: #c8a96e;
    border: none;
    color: #000;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-checkout:hover { 
    background: #b8986e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 169, 110, 0.3);
}
.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ========== CHECKOUT MODAL - ADAPTIVE THEME ========== */
.checkout-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: opacity 0.3s, visibility 0.3s !important;
    background: rgba(0,0,0,0.7) !important;
    padding: 20px;
}
.checkout-modal.active {
    visibility: visible !important;
    opacity: 1 !important;
}
.checkout-modal-content {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    width: 540px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
html.dark .checkout-modal-content {
    background: #1f2937;
    border-color: rgba(255,255,255,0.1);
}
.checkout-modal.active .checkout-modal-content { transform: scale(1); }
.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    border-radius: 12px 12px 0 0;
}
html.dark .checkout-header {
    background: #1f2937;
    border-bottom-color: rgba(255,255,255,0.1);
}
.checkout-header h2 {
    font-family: 'Playfair Display', serif;
    color: #1f2937;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}
html.dark .checkout-header h2 {
    color: #fff;
}
.checkout-close {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.checkout-close:hover { 
    color: #1f2937;
    background: #f3f4f6;
}
html.dark .checkout-close {
    color: rgba(255,255,255,0.6);
}
html.dark .checkout-close:hover { 
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.checkout-body { padding: 24px; }
.checkout-body .form-group { margin-bottom: 18px; }
.checkout-body label {
    display: block;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    font-weight: 600;
}
html.dark .checkout-body label {
    color: rgba(255,255,255,0.7);
}
.checkout-body input,
.checkout-body textarea {
    width: 100%;
    padding: 11px 14px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #1f2937;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
html.dark .checkout-body input,
html.dark .checkout-body textarea {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}
.checkout-body input:focus,
.checkout-body textarea:focus {
    outline: none;
    border-color: #c8a96e;
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

/* Order summary - Adaptive theme */
.order-summary {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 22px;
}
html.dark .order-summary {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}
.order-summary h3 {
    color: #6b7280;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-family: inherit;
    font-weight: 700;
}
html.dark .order-summary h3 {
    color: rgba(255,255,255,0.7);
}
.checkout-item {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
}
html.dark .checkout-item {
    color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.05);
}
.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    color: #6b7280;
    font-size: 14px;
}
html.dark .checkout-total {
    color: rgba(255,255,255,0.7);
}
.checkout-total strong {
    color: #c8a96e;
    font-size: 18px;
}

/* Payment methods - Adaptive theme */
.payment-methods { margin-bottom: 24px; }
.payment-methods h3 {
    color: #6b7280;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-family: inherit;
    font-weight: 700;
}
html.dark .payment-methods h3 {
    color: rgba(255,255,255,0.7);
}
.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.payment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 80px;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}
html.dark .payment-option {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
}
.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.payment-option:has(input:checked) {
    border-color: #c8a96e;
    background: rgba(200,169,110,0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.2);
}
.payment-option:hover {
    border-color: #c8a96e;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.payment-icon {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 8px;
}
.payment-icon img {
    width: 48px;
    height: 32px;
    object-fit: contain;
}
.payment-option span {
    color: #1f2937;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}
html.dark .payment-option span {
    color: #fff;
}

/* Orange Money */
.payment-om .payment-icon { background: rgba(255, 121, 0, 0.08); }
.payment-om:has(input:checked) .payment-icon {
    background: rgba(255, 121, 0, 0.15);
    box-shadow: 0 4px 12px rgba(255, 121, 0, 0.25);
}

/* MTN MoMo */
.payment-momo .payment-icon { background: rgba(255, 204, 0, 0.08); }
.payment-momo:has(input:checked) .payment-icon {
    background: rgba(255, 204, 0, 0.15);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.25);
}

/* Stripe */
.payment-stripe .payment-icon { background: rgba(99, 91, 255, 0.08); }
.payment-stripe:has(input:checked) .payment-icon {
    background: rgba(99, 91, 255, 0.15);
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.25);
}

/* PayPal */
.payment-paypal .payment-icon { background: rgba(0, 48, 135, 0.08); }
.payment-paypal:has(input:checked) .payment-icon {
    background: rgba(0, 48, 135, 0.15);
    box-shadow: 0 4px 12px rgba(0, 48, 135, 0.25);
}

/* Responsive */
@media (max-width: 480px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
}

/* Submit button - Adaptive theme */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: #c8a96e;
    border: none;
    color: #000;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit:hover { 
    background: #b8986e;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.3);
}
.btn-submit svg { width: 16px; height: 16px; }

/* Labels couleurs par moyen */
.payment-om span    { color: #FF7900; }
.payment-momo span  { color: #FFCC00; }
.payment-stripe span { color: #635BFF; }
.payment-paypal span { color: #003087; }

/* ========== NOTIFICATION ========== */
.notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #222;
    border: 1px solid rgba(200,169,110,0.4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}
.notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.notification.success {
    border-color: rgba(100,200,100,0.5);
    background: #1a2e1a;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    .product-image { height: 160px; }
    .cart-modal-content { width: 100vw; }
    .payment-options { flex-direction: column; }
}

/* ========== BREADCRUMB ========== */
.products-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2.5rem;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.products-breadcrumb a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.products-breadcrumb a:hover { color: var(--color-accent, #c8a96e); }
.products-breadcrumb span:last-child { color: var(--color-accent, #c8a96e); }
.bc-sep { opacity: 0.4; }

/* ========== EMPTY STATE ========== */
.products-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,0.35);
}
.products-empty svg { margin-bottom: 1rem; opacity: 0.3; }
.products-empty p { font-size: 16px; margin: 0; }

/* ========== PRODUCT IMAGE relative ========== */
.product-image { position: relative; }

/* ========== SEARCH BAR ========== */
.search-bar-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto 32px;
}
.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    pointer-events: none;
}
#searchInput {
    width: 100%;
    padding: 13px 20px 13px 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
#searchInput:focus {
    outline: none;
    border-color: var(--color-accent, #c8a96e);
}
#searchInput::placeholder { color: rgba(255,255,255,0.35); }

/* No results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255,255,255,0.4);
    padding: 60px 20px;
    font-size: 16px;
}

/* ========== ORDER CONFIRMATION MODAL ========== */
.confirmation-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    background: rgba(0,0,0,0.75);
    padding: 20px;
}
.confirmation-modal.active {
    visibility: visible;
    opacity: 1;
}
.confirmation-modal-content {
    background: #111;
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: 16px;
    width: 440px;
    max-width: 100%;
    text-align: center;
    overflow: hidden;
    animation: popIn 0.35s ease;
}
@keyframes popIn {
    from { transform: scale(0.88); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.confirmation-header {
    background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.05));
    padding: 36px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.success-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent, #c8a96e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}
.confirmation-header h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin: 0 0 8px;
    font-size: 22px;
}
.order-number {
    color: var(--color-accent, #c8a96e);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.confirmation-body {
    padding: 24px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}
.confirmation-body strong { color: #fff; }
.order-summary-mini {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 14px;
    margin-top: 16px;
    text-align: left;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}
.total-line {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 6px;
    padding-top: 10px;
    color: rgba(255,255,255,0.85);
}
.total-line strong {
    color: var(--color-accent, #c8a96e);
    font-size: 16px;
}
.confirmation-footer {
    padding: 0 24px 28px;
    display: flex;
    gap: 12px;
}
.btn-confirm-close {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-confirm-close:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-confirm-continue {
    flex: 1;
    padding: 12px;
    background: var(--color-accent, #c8a96e);
    border: none;
    color: #000;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-confirm-continue:hover { opacity: 0.88; }

/* ========== MOBILE HEADER FIX ========== */
@media (max-width: 768px) {
    .header-inner {
        gap: 8px;
    }
    .cart-toggle {
        margin-left: 4px;
        padding: 6px;
    }
    /* On mobile hide main-nav, show only cart + hamburger */
    .main-nav { display: none; }
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--color-accent, #c8a96e);
    border: none;
    color: #0a0a0a;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit:hover { opacity: 0.88; }
.btn-submit svg { width: 16px; height: 16px; }

/* Checkout btn disabled state */
.btn-checkout:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
