/* ============================================
   SC7 LIGHT MODE - REDESIGNED COMPONENTS
   Beautiful, modern redesign for light mode
   Version: 3.4
   ============================================ */

/* ========================================
   SHARED GLASS TABLE (sc7-table-glass) - LIGHT MODE
   Used by: recharge-bank, recharge-crypto, affiliates,
   transactions, product-orders, logs, recharge-card.
   Root cause fixed: main.css sets `thead tr { background: var(--primary) }`
   (a dark theme color) globally, leaving dark text on a dark header in
   light mode, and the dark borders/wrappers became invisible.
   ======================================== */

/* Header row: drop the dark --primary background, use a soft light surface */
[data-theme="light"] body.sc7-commercial .sc7-table-glass thead tr {
    background: linear-gradient(135deg, #f1f5f3 0%, #e9f5ef 100%) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-table-glass thead tr th,
[data-theme="light"] body.sc7-commercial .sc7-table-glass th {
    color: var(--shop-text) !important;
    background: transparent !important;
    border-right: none !important;
    border-bottom: 2px solid rgba(0, 168, 107, .18) !important;
    font-weight: 800 !important;
}

/* Body cells: readable muted text, visible row separators */
[data-theme="light"] body.sc7-commercial .sc7-table-glass td {
    color: var(--shop-muted) !important;
    border-bottom: 1px solid var(--shop-border) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-table-glass tbody tr {
    border-bottom: 1px solid var(--shop-border) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-table-glass tbody td b,
[data-theme="light"] body.sc7-commercial .sc7-table-glass tbody td strong {
    color: var(--shop-text) !important;
}

/* Zebra + hover for scannability on a light surface */
[data-theme="light"] body.sc7-commercial .sc7-table-glass tbody tr:nth-child(even) td {
    background: rgba(0, 168, 107, .02) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-table-glass tr:hover td {
    background: rgba(0, 168, 107, .06) !important;
}

/* Footer (totals row) */
[data-theme="light"] body.sc7-commercial .sc7-table-glass tfoot,
[data-theme="light"] body.sc7-commercial .sc7-table-glass tfoot tr,
[data-theme="light"] body.sc7-commercial .sc7-table-glass tfoot td {
    background: var(--shop-surface-2) !important;
    border-top: 2px solid rgba(0, 168, 107, .18) !important;
    color: var(--shop-text) !important;
    font-weight: 700 !important;
}

/* Keep the green/red money emphasis (inline color:green / color:red in views)
   readable against the light background */
[data-theme="light"] body.sc7-commercial .sc7-table-glass td b[style*="green"],
[data-theme="light"] body.sc7-commercial .sc7-table-glass td [style*="color: green"],
[data-theme="light"] body.sc7-commercial .sc7-table-glass td .text-success,
[data-theme="light"] body.sc7-commercial .sc7-table-glass td.text-success {
    color: #00875a !important;
}

[data-theme="light"] body.sc7-commercial .sc7-table-glass td b[style*="red"],
[data-theme="light"] body.sc7-commercial .sc7-table-glass td [style*="color: red"],
[data-theme="light"] body.sc7-commercial .sc7-table-glass td .text-danger,
[data-theme="light"] body.sc7-commercial .sc7-table-glass td.text-danger {
    color: #d12f3b !important;
}

/* "Hiển thị thêm" / "Ẩn bớt" links inside table cells */
[data-theme="light"] body.sc7-commercial .sc7-table-glass td a {
    color: var(--shop-green) !important;
    font-weight: 600;
}

/* Table wrapper border (inline `border: 1px solid rgba(255,255,255,.05)` in views) */
[data-theme="light"] body.sc7-commercial .table-wrapper,
[data-theme="light"] body.sc7-commercial .table-scroll {
    border-color: var(--shop-border) !important;
    background: var(--shop-surface) !important;
}

/* Status badges inside the tables */
[data-theme="light"] body.sc7-commercial .sc7-badge-success {
    background: rgba(0, 168, 107, .12) !important;
    color: #00875a !important;
    border: 1px solid rgba(0, 168, 107, .35) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-badge-danger {
    background: rgba(220, 53, 69, .1) !important;
    color: #c12331 !important;
    border: 1px solid rgba(220, 53, 69, .35) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-badge-warning {
    background: rgba(253, 126, 20, .12) !important;
    color: #c25e0a !important;
    border: 1px solid rgba(253, 126, 20, .35) !important;
}

/* ========================================
   NOTIFICATION MODALS - REDESIGNED (FIXED PRIORITY)
   ======================================== */

/* Simple Notify - Light Mode Fix */
[data-theme="light"] .notify {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid rgba(0, 168, 107, .15) !important;
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .08),
        0 20px 60px rgba(0, 168, 107, .15),
        0 40px 100px rgba(0, 0, 0, .08) !important;
    border-radius: 12px !important;
    color: var(--shop-text) !important;
}

[data-theme="light"] .notify--success {
    background: linear-gradient(135deg, rgba(0, 168, 107, .12), rgba(0, 179, 119, .08)) !important;
    border-color: rgba(0, 168, 107, .3) !important;
}

[data-theme="light"] .notify--error {
    background: linear-gradient(135deg, rgba(220, 53, 69, .12), rgba(220, 53, 69, .08)) !important;
    border-color: rgba(220, 53, 69, .3) !important;
}

[data-theme="light"] .notify--warning {
    background: linear-gradient(135deg, rgba(253, 126, 20, .12), rgba(253, 126, 20, .08)) !important;
    border-color: rgba(253, 126, 20, .3) !important;
}

[data-theme="light"] .notify--info {
    background: linear-gradient(135deg, rgba(0, 150, 255, .12), rgba(0, 150, 255, .08)) !important;
    border-color: rgba(0, 150, 255, .3) !important;
}

[data-theme="light"] .notify__title {
    color: var(--shop-text) !important;
    font-weight: 700 !important;
}

[data-theme="light"] .notify__text {
    color: var(--shop-muted) !important;
}

[data-theme="light"] .notify__close {
    color: var(--shop-text) !important;
    opacity: 0.6;
}

[data-theme="light"] .notify__close:hover {
    opacity: 1;
}

/* SweetAlert2 - Premium Light Design with Higher Priority */
html[data-theme="light"] body.sc7-commercial .swal2-popup,
html[data-theme="light"] .swal2-popup,
[data-theme="light"] body.sc7-commercial .swal2-popup,
[data-theme="light"] .swal2-popup {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid rgba(0, 168, 107, .15) !important;
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .08),
        0 20px 60px rgba(0, 168, 107, .15),
        0 40px 100px rgba(0, 0, 0, .08) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    color: var(--shop-text) !important;
}

html[data-theme="light"] .swal2-container,
[data-theme="light"] .swal2-container {
    background: rgba(248, 249, 250, 0.8) !important;
}

html[data-theme="light"] .swal2-icon,
[data-theme="light"] .swal2-icon {
    border-width: 3px !important;
}

html[data-theme="light"] .swal2-icon.swal2-success,
[data-theme="light"] .swal2-icon.swal2-success {
    border-color: var(--shop-green) !important;
}

html[data-theme="light"] .swal2-icon.swal2-success [class^='swal2-success-line'],
[data-theme="light"] .swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: var(--shop-green) !important;
}

html[data-theme="light"] .swal2-icon.swal2-success .swal2-success-ring,
[data-theme="light"] .swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(0, 168, 107, .3) !important;
}

html[data-theme="light"] .swal2-icon.swal2-error,
[data-theme="light"] .swal2-icon.swal2-error {
    border-color: var(--shop-red) !important;
}

html[data-theme="light"] .swal2-icon.swal2-error [class^='swal2-x-mark-line'],
[data-theme="light"] .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: var(--shop-red) !important;
}

html[data-theme="light"] .swal2-icon.swal2-warning,
[data-theme="light"] .swal2-icon.swal2-warning {
    border-color: var(--shop-amber) !important;
    color: var(--shop-amber) !important;
}

html[data-theme="light"] .swal2-icon.swal2-info,
[data-theme="light"] .swal2-icon.swal2-info {
    border-color: var(--shop-blue) !important;
    color: var(--shop-blue) !important;
}

html[data-theme="light"] .swal2-title,
[data-theme="light"] .swal2-title {
    color: var(--shop-text) !important;
    font-weight: 800 !important;
    font-size: 24px !important;
    margin-bottom: 12px !important;
}

html[data-theme="light"] .swal2-html-container,
[data-theme="light"] .swal2-html-container {
    color: var(--shop-muted) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

html[data-theme="light"] .swal2-confirm,
[data-theme="light"] .swal2-confirm {
    background: linear-gradient(135deg, #00a86b 0%, #00b377 100%) !important;
    border: none !important;
    box-shadow:
        0 4px 12px rgba(0, 168, 107, .25),
        0 2px 4px rgba(0, 168, 107, .15) !important;
    border-radius: 8px !important;
    padding: 12px 32px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    color: #fff !important;
}

html[data-theme="light"] .swal2-confirm:hover,
[data-theme="light"] .swal2-confirm:hover {
    background: linear-gradient(135deg, #00b377 0%, #00c084 100%) !important;
    box-shadow:
        0 6px 20px rgba(0, 168, 107, .35),
        0 3px 6px rgba(0, 168, 107, .2) !important;
    transform: translateY(-2px) !important;
}

html[data-theme="light"] .swal2-cancel,
[data-theme="light"] .swal2-cancel {
    background: var(--shop-surface) !important;
    border: 2px solid var(--shop-border) !important;
    color: var(--shop-text) !important;
    border-radius: 8px !important;
    padding: 12px 32px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

html[data-theme="light"] .swal2-cancel:hover,
[data-theme="light"] .swal2-cancel:hover {
    background: var(--shop-surface-2) !important;
    border-color: var(--shop-green) !important;
    color: var(--shop-green) !important;
    transform: translateY(-2px) !important;
}

html[data-theme="light"] .swal2-close,
[data-theme="light"] .swal2-close {
    color: var(--shop-text) !important;
}

/* Cute Alert - Premium Light Design */
html[data-theme="light"] .alert-wrapper,
[data-theme="light"] .alert-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid rgba(0, 168, 107, .15) !important;
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .08),
        0 20px 60px rgba(0, 168, 107, .15),
        0 40px 100px rgba(0, 0, 0, .08) !important;
    border-radius: 16px !important;
}

html[data-theme="light"] .alert-wrapper .alert-body,
[data-theme="light"] .alert-wrapper .alert-body {
    color: var(--shop-text) !important;
    font-weight: 700 !important;
}

html[data-theme="light"] .alert-wrapper .alert-message,
[data-theme="light"] .alert-wrapper .alert-message {
    color: var(--shop-muted) !important;
    line-height: 1.6 !important;
}

/* ========================================
   CRYPTO RECHARGE - REDESIGNED (FIXED)
   ======================================== */

[data-theme="light"] body.sc7-commercial .sc7-crypto-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(0, 168, 107, .2);
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .08),
        0 20px 60px rgba(0, 168, 107, .12),
        0 40px 100px rgba(0, 0, 0, .06);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-card::before {
    background: radial-gradient(circle at 30% 20%, rgba(0, 168, 107, .12), transparent 60%);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-card::after {
    background: radial-gradient(circle at 70% 80%, rgba(0, 179, 119, .08), transparent 60%);
}

/* Crypto Hero */
[data-theme="light"] body.sc7-commercial .sc7-crypto-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-hero-top {
    background: linear-gradient(135deg, rgba(0, 168, 107, .08), rgba(0, 179, 119, .05));
    border-bottom: 2px solid rgba(0, 168, 107, .15);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-hero-body {
    background: var(--shop-surface);
}

/* Crypto Title & Subtitle */
[data-theme="light"] body.sc7-commercial .sc7-crypto-title {
    color: var(--shop-text) !important;
    font-weight: 800;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-subtitle {
    color: var(--shop-muted) !important;
}

/* Crypto Label */
[data-theme="light"] body.sc7-commercial .sc7-crypto-label {
    color: var(--shop-text) !important;
    font-weight: 700;
}

/* Crypto Asset */
[data-theme="light"] body.sc7-commercial .sc7-crypto-asset-icon {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.15), rgba(0, 179, 119, 0.1));
    border: 2px solid rgba(0, 168, 107, 0.3);
    box-shadow:
        0 8px 24px rgba(0, 168, 107, 0.15),
        0 4px 8px rgba(0, 168, 107, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, .5);
    border-radius: 16px;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-asset-symbol {
    color: var(--shop-text) !important;
    font-weight: 800;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-asset-name {
    color: var(--shop-subtle) !important;
    font-weight: 600;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-pill {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.12), rgba(0, 179, 119, 0.08));
    border: 2px solid rgba(0, 168, 107, 0.25);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 168, 107, .1);
    color: var(--shop-green) !important;
    font-weight: 700;
}

/* Crypto Illus */
[data-theme="light"] body.sc7-commercial .sc7-crypto-illus-ring {
    background: radial-gradient(circle at 30% 30%, rgba(0, 168, 107, 0.15), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(253, 126, 20, 0.1), transparent 60%);
    border: 1px solid var(--shop-border);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-illus-core {
    background: var(--shop-surface-2);
    border: 1px solid var(--shop-border);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    color: var(--shop-green);
}

/* Crypto Network Buttons */
[data-theme="light"] body.sc7-commercial .sc7-crypto-network {
    background: var(--shop-surface);
    border: 2px solid var(--shop-border);
    color: var(--shop-muted) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-network:hover {
    background: rgba(0, 168, 107, .08);
    border-color: rgba(0, 168, 107, .3);
    color: var(--shop-green) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-network.active {
    background: linear-gradient(135deg, rgba(0, 168, 107, .15), rgba(0, 179, 119, .1));
    border-color: var(--shop-green);
    color: var(--shop-green) !important;
    box-shadow: 0 4px 12px rgba(0, 168, 107, .15);
}

/* Crypto Input */
[data-theme="light"] body.sc7-commercial .sc7-crypto-input {
    background: var(--shop-surface);
    border: 2px solid var(--shop-border);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-input-icon {
    color: var(--shop-green);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-input-control {
    background: transparent;
    color: var(--shop-text) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-input-control::placeholder {
    color: var(--shop-subtle) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-suffix {
    color: var(--shop-muted) !important;
    font-weight: 700;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-max {
    background: linear-gradient(135deg, rgba(0, 168, 107, .12), rgba(0, 179, 119, .08));
    border: 1px solid rgba(0, 168, 107, .25);
    color: var(--shop-green) !important;
    font-weight: 700;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-max:hover {
    background: linear-gradient(135deg, rgba(0, 168, 107, .2), rgba(0, 179, 119, .15));
    border-color: var(--shop-green);
}

/* Crypto Metrics */
[data-theme="light"] body.sc7-commercial .sc7-crypto-metric {
    background: var(--shop-surface);
    border: 2px solid var(--shop-border);
    border-radius: 12px;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-green {
    background: linear-gradient(135deg, rgba(0, 168, 107, .08), rgba(0, 179, 119, .05));
    border-color: rgba(0, 168, 107, .25);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-amber {
    background: linear-gradient(135deg, rgba(253, 126, 20, .08), rgba(253, 126, 20, .05));
    border-color: rgba(253, 126, 20, .25);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-head {
    color: var(--shop-muted) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-head i {
    color: var(--shop-green);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-amber .sc7-crypto-metric-head i {
    color: var(--shop-amber);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-value {
    color: var(--shop-text) !important;
    font-weight: 800;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-value b {
    color: var(--shop-green) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-amber .sc7-crypto-metric-value b {
    color: var(--shop-amber) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-metric-sub {
    color: var(--shop-subtle) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-dot {
    background: var(--shop-green);
}

/* Crypto Info */
[data-theme="light"] body.sc7-commercial .sc7-crypto-info {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.08), rgba(0, 150, 255, 0.04));
    border: 2px solid rgba(0, 150, 255, 0.2);
    border-left: 4px solid rgba(0, 150, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 150, 255, .08);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-info p {
    color: var(--shop-muted) !important;
    line-height: 1.6;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-info i {
    color: var(--shop-blue);
}

/* Crypto Submit Button */
[data-theme="light"] body.sc7-commercial .sc7-crypto-submit {
    background: linear-gradient(135deg, #00a86b 0%, #00b377 100%);
    border: none;
    box-shadow:
        0 6px 20px rgba(0, 168, 107, .25),
        0 3px 8px rgba(0, 168, 107, .15);
    border-radius: 12px;
    font-weight: 800;
    color: #fff !important;
    transition: all 0.3s ease;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-submit:hover {
    background: linear-gradient(135deg, #00b377 0%, #00c084 100%);
    box-shadow:
        0 8px 28px rgba(0, 168, 107, .35),
        0 4px 12px rgba(0, 168, 107, .2);
    transform: translateY(-3px);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-submit:disabled {
    background: var(--shop-surface-3);
    color: var(--shop-subtle) !important;
    box-shadow: none;
}

/* Crypto Side Cards */
[data-theme="light"] body.sc7-commercial .sc7-crypto-side-card {
    background: var(--shop-surface);
    border: 2px solid var(--shop-border);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-side-warn {
    background: linear-gradient(135deg, rgba(253, 126, 20, .08), rgba(253, 126, 20, .05));
    border-color: rgba(253, 126, 20, .25);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-side-head {
    border-bottom: 2px solid var(--shop-border);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-side-title {
    color: var(--shop-text) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-side-title i {
    color: var(--shop-amber);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-side-body {
    color: var(--shop-muted) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-side-body ul li {
    color: var(--shop-muted) !important;
}

/* Crypto Promotion Card */
[data-theme="light"] body.sc7-commercial .sc7-crypto-promotion-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(0, 168, 107, .2);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-promotion-title {
    color: var(--shop-text) !important;
    border-bottom: 2px solid var(--shop-border);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-promotion-title i {
    color: var(--shop-green);
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-promotion-title small {
    color: var(--shop-muted) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-promotion-table th {
    background: var(--shop-surface-3);
    color: var(--shop-text) !important;
    border-color: var(--shop-border) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-crypto-promotion-table td {
    color: var(--shop-muted) !important;
    border-color: var(--shop-border-soft) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-promo-threshold span {
    color: var(--shop-subtle) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-promo-threshold strong {
    color: var(--shop-green) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-promo-threshold em {
    color: var(--shop-muted) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-promo-bonus {
    color: var(--shop-amber) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-promo-bonus i {
    color: var(--shop-amber);
}

/* ========================================
   BANK RECHARGE - REDESIGNED
   ======================================== */

[data-theme="light"] body.sc7-commercial .bank-card {
    border: 2px solid rgba(0, 168, 107, .2) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .08),
        0 20px 60px rgba(0, 168, 107, .12),
        0 40px 100px rgba(0, 0, 0, .06) !important;
    border-radius: 20px !important;
    overflow: hidden;
}

[data-theme="light"] body.sc7-commercial .bank-card-header {
    background: linear-gradient(135deg, rgba(0, 168, 107, .15), rgba(0, 179, 119, .1)) !important;
    border-bottom: 2px solid rgba(0, 168, 107, .2);
    padding: 24px;
    position: relative;
}

[data-theme="light"] body.sc7-commercial .bank-card-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 168, 107, .4) 20%,
        rgba(0, 168, 107, .6) 50%,
        rgba(0, 168, 107, .4) 80%,
        transparent
    );
}

[data-theme="light"] body.sc7-commercial .bank-card-header h4 {
    color: var(--shop-text);
    font-weight: 800;
    margin: 0;
}

[data-theme="light"] body.sc7-commercial .bank-qr-wrap {
    background: var(--shop-surface) !important;
    border: 2px solid var(--shop-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, .04),
        0 4px 12px rgba(0, 168, 107, .08);
}

[data-theme="light"] body.sc7-commercial .bank-info {
    background: var(--shop-surface) !important;
    color: var(--shop-text) !important;
    border-radius: 12px;
    padding: 20px;
}

[data-theme="light"] body.sc7-commercial .bank-info-row {
    border-bottom: 1px solid rgba(0, 168, 107, .1) !important;
    padding: 16px 0;
    transition: all 0.3s ease;
}

[data-theme="light"] body.sc7-commercial .bank-info-row:hover {
    background: rgba(0, 168, 107, .03);
    padding-left: 12px;
    margin-left: -12px;
    margin-right: -12px;
    padding-right: 12px;
    border-radius: 8px;
}

[data-theme="light"] body.sc7-commercial .bank-info-row strong {
    color: var(--shop-text) !important;
    font-weight: 700;
}

[data-theme="light"] body.sc7-commercial .bank-info-row span {
    color: var(--shop-green) !important;
    font-weight: 800;
}

[data-theme="light"] body.sc7-commercial .bank-info-row small {
    color: var(--shop-muted) !important;
    font-weight: 600;
}

[data-theme="light"] body.sc7-commercial .btn-copy,
[data-theme="light"] body.sc7-commercial [onclick*="copy"] {
    background: linear-gradient(135deg, var(--shop-surface-2), var(--shop-surface)) !important;
    border: 2px solid var(--shop-border) !important;
    color: var(--shop-text) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04) !important;
}

[data-theme="light"] body.sc7-commercial .btn-copy:hover,
[data-theme="light"] body.sc7-commercial [onclick*="copy"]:hover {
    background: linear-gradient(135deg, rgba(0, 168, 107, .12), rgba(0, 168, 107, .08)) !important;
    border-color: var(--shop-green) !important;
    color: var(--shop-green) !important;
    box-shadow:
        0 4px 12px rgba(0, 168, 107, .15),
        0 2px 4px rgba(0, 168, 107, .1) !important;
    transform: translateY(-2px) !important;
}

/* ========================================
   PRODUCT CARDS - REDESIGNED
   ======================================== */

[data-theme="light"] body.sc7-commercial .box-product-main {
    border: 2px solid rgba(0, 168, 107, .15) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .05),
        0 4px 12px rgba(0, 0, 0, .04),
        0 2px 4px rgba(0, 0, 0, .02) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
}

[data-theme="light"] body.sc7-commercial .box-product-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 168, 107, .3) 20%,
        rgba(0, 168, 107, .5) 50%,
        rgba(0, 168, 107, .3) 80%,
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

[data-theme="light"] body.sc7-commercial .box-product-main:hover {
    border-color: rgba(0, 168, 107, .4) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf7 100%) !important;
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .15),
        0 12px 32px rgba(0, 168, 107, .15),
        0 6px 16px rgba(0, 168, 107, .1),
        0 3px 8px rgba(0, 0, 0, .04) !important;
    transform: translateY(-8px) scale(1.02) !important;
}

[data-theme="light"] body.sc7-commercial .box-product-main:hover::before {
    opacity: 1;
}

[data-theme="light"] body.sc7-commercial .box-img-product {
    border: 2px solid rgba(0, 168, 107, .15);
    background: linear-gradient(135deg, var(--shop-surface-2), var(--shop-surface));
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, .04),
        0 2px 8px rgba(0, 168, 107, .08);
    transition: all 0.3s ease;
}

[data-theme="light"] body.sc7-commercial .box-product-main:hover .box-img-product {
    border-color: rgba(0, 168, 107, .3);
    box-shadow:
        inset 0 2px 8px rgba(0, 168, 107, .08),
        0 4px 12px rgba(0, 168, 107, .12);
    transform: scale(1.05);
}

[data-theme="light"] body.sc7-commercial .box-product-main .product-name {
    color: var(--shop-text);
    font-weight: 800;
    transition: all 0.3s ease;
}

[data-theme="light"] body.sc7-commercial .box-product-main:hover .product-name {
    color: var(--shop-green);
}

[data-theme="light"] body.sc7-commercial .box-product-main .product-price {
    color: var(--shop-green);
    font-weight: 800;
    font-size: 18px;
}

[data-theme="light"] body.sc7-commercial .box-product-main .badge {
    background: linear-gradient(135deg, rgba(0, 168, 107, .15), rgba(0, 179, 119, .1));
    border: 1px solid rgba(0, 168, 107, .3);
    color: var(--shop-green);
    font-weight: 700;
    border-radius: 6px;
    padding: 4px 12px;
    box-shadow: 0 2px 4px rgba(0, 168, 107, .1);
}

/* Product Card Hover Animation */
[data-theme="light"] body.sc7-commercial .box-product-main {
    animation: none;
}

[data-theme="light"] body.sc7-commercial .box-product-main:hover {
    animation: productPulse 2s ease-in-out infinite;
}

@keyframes productPulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(0, 168, 107, .15),
            0 12px 32px rgba(0, 168, 107, .15),
            0 6px 16px rgba(0, 168, 107, .1),
            0 3px 8px rgba(0, 0, 0, .04);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(0, 168, 107, .2),
            0 16px 40px rgba(0, 168, 107, .2),
            0 8px 20px rgba(0, 168, 107, .15),
            0 4px 10px rgba(0, 0, 0, .06);
    }
}

/* ========================================
   LIGHT MODE CONTRAST FIXES (May 2026)
   Fix visibility/contrast issues detected via automated audit
   ======================================== */

/* Fix 1: Notification Modal — dark bg leaking from commercial-dark.css:2504 */
[data-theme="light"] body.sc7-commercial .modal-content {
    background: rgba(255, 255, 255, 0.97) !important;
    border: 1px solid var(--shop-border) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, 0.08),
        0 24px 80px rgba(0, 0, 0, 0.12),
        0 0 120px rgba(0, 168, 107, 0.04) !important;
    color: var(--shop-text) !important;
}

[data-theme="light"] body.sc7-commercial .modal-header {
    border-bottom: 1px solid var(--shop-border) !important;
}

[data-theme="light"] body.sc7-commercial .modal-footer {
    border-top: 1px solid var(--shop-border) !important;
}

[data-theme="light"] body.sc7-commercial .btn-close {
    filter: none !important;
}

/* Fix 2: btn-inline — black bg with dark text (ratio 1.27:1) */
[data-theme="light"] body.sc7-commercial .btn-inline,
[data-theme="light"] body.sc7-commercial .btn.btn-inline {
    background: #005a3c !important;
    color: #fff !important;
    border: 1px solid #005a3c !important;
}

[data-theme="light"] body.sc7-commercial .btn-inline:hover,
[data-theme="light"] body.sc7-commercial .btn.btn-inline:hover {
    background: #004d33 !important;
    border-color: #004d33 !important;
    color: #fff !important;
}

/* Fix 3: btn-primary — white text on green, contrast ~2.9:1 → darken green */
[data-theme="light"] body.sc7-commercial .btn-buy,
[data-theme="light"] body.sc7-commercial .shop-widget-btn,
[data-theme="light"] body.sc7-commercial .btn.btn-primary,
[data-theme="light"] body.sc7-commercial .btn.btn-info,
[data-theme="light"] body.sc7-commercial .btn.btn-success {
    background: #005a3c !important;
    border-color: #005a3c !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0, 90, 60, .25);
}

[data-theme="light"] body.sc7-commercial .btn-buy:hover,
[data-theme="light"] body.sc7-commercial .shop-widget-btn:hover,
[data-theme="light"] body.sc7-commercial .btn.btn-primary:hover,
[data-theme="light"] body.sc7-commercial .btn.btn-info:hover,
[data-theme="light"] body.sc7-commercial .btn.btn-success:hover {
    background: #004d33 !important;
    border-color: #004d33 !important;
    box-shadow: 0 8px 24px rgba(0, 77, 51, .3);
}

/* Fix 3b: Search button specifically */
[data-theme="light"] body.sc7-commercial .shop-hero-search button,
[data-theme="light"] body.sc7-commercial .header-form button {
    background: #005a3c !important;
    color: #fff !important;
    border-color: #005a3c !important;
}

/* Fix 4: shop-hero-kicker — green on light green, ratio 1.27:1 */
[data-theme="light"] body.sc7-commercial .shop-hero-kicker {
    background: rgba(0, 51, 24, 0.04) !important;
    border-color: rgba(0, 51, 24, 0.2) !important;
    color: #002211 !important;
    font-weight: 900;
}

/* Fix 5: category-chip active — green on light green, ratio 1.27:1 */
[data-theme="light"] body.sc7-commercial .btn-category-home:hover,
[data-theme="light"] body.sc7-commercial .btn-category-home.active,
[data-theme="light"] body.sc7-commercial .sc7-category-chip:hover,
[data-theme="light"] body.sc7-commercial .sc7-category-chip.active {
    background: rgba(0, 51, 24, 0.05) !important;
    border-color: #005a3c !important;
    color: #002211 !important;
    font-weight: 900;
}

/* Fix 6: sc7-product-badge — green on light green, ratio 1.27:1 */
[data-theme="light"] body.sc7-commercial .sc7-product-badge {
    background: rgba(0, 51, 24, 0.04) !important;
    border-color: rgba(0, 51, 24, 0.2) !important;
    color: #002211 !important;
    font-weight: 950;
}

[data-theme="light"] body.sc7-commercial .sc7-product-badge.is-muted {
    background: rgba(220, 53, 69, 0.08) !important;
    border-color: rgba(220, 53, 69, 0.35) !important;
    color: #b02a37 !important;
}

/* Fix 7: sc7-product-meta pills (Kho / Đã bán) — dark bg rgba(5,5,7,.52)
   leaking from commercial-dark.css:1435 into light mode */
[data-theme="light"] body.sc7-commercial .sc7-product-meta span {
    background: rgba(0, 168, 107, 0.06) !important;
    border-color: rgba(0, 168, 107, 0.2) !important;
    color: var(--shop-muted) !important;
}

[data-theme="light"] body.sc7-commercial .sc7-product-meta b {
    color: #00875a !important;
}

[data-theme="light"] body.sc7-commercial .sc7-product-meta .is-discount {
    background: rgba(220, 53, 69, 0.08) !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
    color: #c12331 !important;
}

/* ========================================
   USER AUTH (LOGIN/REGISTER) - LIGHT MODE
   ======================================== */

[data-theme="light"] .user-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid rgba(0, 168, 107, .15) !important;
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .08),
        0 20px 60px rgba(0, 168, 107, .12),
        0 40px 100px rgba(0, 0, 0, .06) !important;
    border-radius: 20px !important;
}

[data-theme="light"] .user-form-title h2 {
    color: var(--shop-text) !important;
    font-weight: 800;
}

[data-theme="light"] .user-form-title p {
    color: var(--shop-muted) !important;
}

[data-theme="light"] .user-form-divider {
    background: var(--shop-border) !important;
}

[data-theme="light"] .user-form-divider p {
    background: var(--shop-surface) !important;
    border-color: var(--shop-border) !important;
    color: var(--shop-muted) !important;
}

[data-theme="light"] .user-form .form-control,
[data-theme="light"] .user-form input[type="text"],
[data-theme="light"] .user-form input[type="email"],
[data-theme="light"] .user-form input[type="password"] {
    background: var(--shop-surface) !important;
    border: 2px solid var(--shop-border) !important;
    color: var(--shop-text) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

[data-theme="light"] .user-form .form-control:focus,
[data-theme="light"] .user-form input[type="text"]:focus,
[data-theme="light"] .user-form input[type="email"]:focus,
[data-theme="light"] .user-form input[type="password"]:focus {
    border-color: var(--shop-green) !important;
    box-shadow: 0 0 0 4px rgba(0, 168, 107, .1) !important;
    background: #ffffff !important;
}

[data-theme="light"] .user-form .form-control::placeholder {
    color: var(--shop-subtle) !important;
}

[data-theme="light"] .form-button button,
[data-theme="light"] .user-form-social li a,
[data-theme="light"] .sc7-btn-primary,
[data-theme="light"] button.sc7-btn-primary {
    background: linear-gradient(135deg, #00a86b 0%, #00b377 100%) !important;
    border: none !important;
    box-shadow:
        0 6px 20px rgba(0, 168, 107, .25),
        0 3px 8px rgba(0, 168, 107, .15) !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

[data-theme="light"] .form-button button:hover,
[data-theme="light"] .user-form-social li a:hover,
[data-theme="light"] .sc7-btn-primary:hover,
[data-theme="light"] button.sc7-btn-primary:hover {
    background: linear-gradient(135deg, #00b377 0%, #00c084 100%) !important;
    box-shadow:
        0 8px 28px rgba(0, 168, 107, .35),
        0 4px 12px rgba(0, 168, 107, .2) !important;
    transform: translateY(-2px) !important;
}

[data-theme="light"] .form-button p,
[data-theme="light"] .form-button p a {
    color: var(--shop-text) !important;
}

[data-theme="light"] .form-button p a {
    color: var(--shop-green) !important;
    font-weight: 700 !important;
}

[data-theme="light"] .user-form-remind {
    background: var(--shop-surface) !important;
    border: 2px solid var(--shop-border) !important;
    border-radius: 12px !important;
}

[data-theme="light"] .user-form-remind p {
    color: var(--shop-text) !important;
}

[data-theme="light"] .user-form-remind p a {
    color: var(--shop-green) !important;
    font-weight: 700 !important;
}

[data-theme="light"] .user-form-footer p {
    color: var(--shop-muted) !important;
}

[data-theme="light"] .user-form-footer p a {
    color: var(--shop-green) !important;
    font-weight: 600 !important;
}

/* Social login buttons - keep their brand colors */
[data-theme="light"] .user-form-social .facebook {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%) !important;
}

[data-theme="light"] .user-form-social .twitter {
    background: linear-gradient(135deg, #00acee 0%, #0088cc 100%) !important;
}

[data-theme="light"] .user-form-social .google {
    background: linear-gradient(135deg, #E60023 0%, #c4001d 100%) !important;
}

[data-theme="light"] .user-form-social .instagram {
    background: linear-gradient(135deg, #F77737 0%, #e8552e 100%) !important;
}

/* ========================================
   PRODUCT DETAILS PAGE - LIGHT MODE
   ======================================== */

[data-theme="light"] .sc7-pdp-shell {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid rgba(0, 168, 107, .2) !important;
    box-shadow:
        0 0 0 1px rgba(0, 168, 107, .08),
        0 20px 60px rgba(0, 168, 107, .12),
        0 40px 100px rgba(0, 0, 0, .06) !important;
}

[data-theme="light"] .sc7-pdp-shell::before {
    background:
        radial-gradient(1000px 600px at 8% 22%, rgba(0, 168, 107, .08), rgba(0, 168, 107, 0) 60%),
        radial-gradient(900px 520px at 92% 18%, rgba(0, 179, 119, .04), rgba(0, 179, 119, 0) 60%) !important;
}

[data-theme="light"] .sc7-pdp-icon {
    background: linear-gradient(135deg, rgba(0, 168, 107, .15), rgba(0, 179, 119, .1)) !important;
    border-color: rgba(0, 168, 107, .3) !important;
}

[data-theme="light"] .sc7-pdp-tag {
    background: linear-gradient(135deg, rgba(0, 168, 107, .12), rgba(0, 179, 119, .08)) !important;
    border-color: rgba(0, 168, 107, .3) !important;
    color: var(--shop-green) !important;
}

[data-theme="light"] .sc7-pdp-title {
    color: var(--shop-text) !important;
}

[data-theme="light"] .sc7-pdp-desc {
    color: var(--shop-muted) !important;
}

[data-theme="light"] .sc7-pdp-checkout {
    background: linear-gradient(135deg, rgba(0, 168, 107, .08), rgba(0, 179, 119, .05)) !important;
    border-color: rgba(0, 168, 107, .25) !important;
    box-shadow: 0 18px 60px rgba(0, 168, 107, .15) !important;
}

[data-theme="light"] .sc7-pdp-stock {
    background: var(--shop-surface) !important;
    border-color: var(--shop-border) !important;
    color: var(--shop-text) !important;
}

[data-theme="light"] .sc7-pdp-stock b {
    color: var(--shop-green) !important;
}

[data-theme="light"] .sc7-pdp-stock-dot {
    background: var(--shop-green) !important;
    box-shadow: 0 0 0 4px rgba(0, 168, 107, .15) !important;
}

[data-theme="light"] .sc7-pdp-price {
    color: var(--shop-green) !important;
}

[data-theme="light"] .sc7-pdp-mini-card {
    background: var(--shop-surface) !important;
    border-color: var(--shop-border) !important;
}

[data-theme="light"] .sc7-pdp-mini-k {
    color: var(--shop-muted) !important;
}

[data-theme="light"] .sc7-pdp-mini-v {
    color: var(--shop-text) !important;
}

[data-theme="light"] .sc7-pdp-qty-btn {
    background: var(--shop-surface) !important;
    border-color: var(--shop-border) !important;
    color: var(--shop-text) !important;
}

[data-theme="light"] .sc7-pdp-qty-btn:hover {
    background: rgba(0, 168, 107, .08) !important;
    border-color: var(--shop-green) !important;
    color: var(--shop-green) !important;
}

[data-theme="light"] .sc7-pdp-qty-input {
    background: var(--shop-surface) !important;
    border-color: var(--shop-border) !important;
    color: var(--shop-text) !important;
}

[data-theme="light"] .sc7-pdp-buy {
    background: linear-gradient(135deg, #00a86b 0%, #00b377 100%) !important;
    box-shadow: 0 16px 40px rgba(0, 168, 107, .25) !important;
}

[data-theme="light"] .sc7-pdp-buy:hover {
    background: linear-gradient(135deg, #00b377 0%, #00c084 100%) !important;
    box-shadow: 0 20px 50px rgba(0, 168, 107, .35) !important;
}

[data-theme="light"] .sc7-pdp-back {
    background: var(--shop-surface) !important;
    border-color: var(--shop-border) !important;
    color: var(--shop-text) !important;
}

[data-theme="light"] .sc7-pdp-back:hover {
    background: var(--shop-surface-2) !important;
    border-color: var(--shop-green) !important;
    color: var(--shop-green) !important;
}

[data-theme="light"] .sc7-pdp-tabs {
    background: var(--shop-surface) !important;
    border-color: var(--shop-border) !important;
}

[data-theme="light"] .sc7-pdp-tab {
    color: var(--shop-muted) !important;
}

[data-theme="light"] .sc7-pdp-tab:hover {
    background: rgba(0, 168, 107, .05) !important;
    color: var(--shop-text) !important;
}

[data-theme="light"] .sc7-pdp-tab.active {
    background: linear-gradient(135deg, rgba(0, 168, 107, .15), rgba(0, 179, 119, .1)) !important;
    color: var(--shop-green) !important;
}

/* Product Details Content */
[data-theme="light"] .details-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid rgba(0, 168, 107, .15) !important;
    box-shadow: 0 8px 32px rgba(0, 168, 107, .1) !important;
}

[data-theme="light"] .details-content:hover {
    border-color: rgba(0, 168, 107, .3) !important;
    box-shadow: 0 12px 40px rgba(0, 168, 107, .15) !important;
}

[data-theme="light"] .details-name {
    color: var(--shop-text) !important;
}

[data-theme="light"] .details-name a:hover {
    color: var(--shop-green) !important;
}

[data-theme="light"] .details-meta p,
[data-theme="light"] .details-meta span,
[data-theme="light"] .details-meta a {
    color: var(--shop-muted) !important;
}

[data-theme="light"] .details-price span {
    color: var(--shop-green) !important;
}

[data-theme="light"] .details-desc {
    color: var(--shop-muted) !important;
}

[data-theme="light"] .product-details-frame {
    background: var(--shop-surface) !important;
    border: 2px solid var(--shop-border) !important;
    color: var(--shop-muted) !important;
}

[data-theme="light"] .frame-title {
    color: var(--shop-text) !important;
}

[data-theme="light"] .tab-link {
    color: var(--shop-muted) !important;
    background: transparent !important;
}

[data-theme="light"] .tab-link.active,
[data-theme="light"] .tab-link:hover {
    color: var(--shop-green) !important;
    background: rgba(0, 168, 107, .08) !important;
    border-color: rgba(0, 168, 107, .2) !important;
}

/* ========================================
   HEADER - LIGHT MODE IMPROVEMENTS
   ======================================== */

/* Fix theme toggle button background in light mode */
[data-theme="light"] button[data-theme-toggle],
[data-theme="light"] .sc7-utility-select[data-theme-toggle] {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid var(--shop-border) !important;
    color: var(--shop-text) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04) !important;
}

[data-theme="light"] button[data-theme-toggle]:hover,
[data-theme="light"] .sc7-utility-select[data-theme-toggle]:hover {
    background: rgba(0, 168, 107, .08) !important;
    border-color: var(--shop-green) !important;
    color: var(--shop-green) !important;
    box-shadow: 0 4px 12px rgba(0, 168, 107, .15) !important;
}

[data-theme="light"] button[data-theme-toggle] i,
[data-theme="light"] .sc7-utility-select[data-theme-toggle] i {
    color: var(--shop-text) !important;
}

[data-theme="light"] button[data-theme-toggle]:hover i,
[data-theme="light"] .sc7-utility-select[data-theme-toggle]:hover i {
    color: var(--shop-green) !important;
}

[data-theme="light"] .header-part {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 2px solid var(--shop-border) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04) !important;
}

[data-theme="light"] .header-content {
    background: transparent !important;
}

[data-theme="light"] .header-widget li a,
[data-theme="light"] .header-widget li button {
    color: var(--shop-text) !important;
    transition: all 0.3s ease;
}

[data-theme="light"] .header-widget li a:hover,
[data-theme="light"] .header-widget li button:hover {
    color: var(--shop-green) !important;
}

[data-theme="light"] .header-form input {
    background: var(--shop-surface) !important;
    border: 2px solid var(--shop-border) !important;
    color: var(--shop-text) !important;
}

[data-theme="light"] .header-form input:focus {
    border-color: var(--shop-green) !important;
    box-shadow: 0 0 0 4px rgba(0, 168, 107, .1) !important;
}

[data-theme="light"] .header-form button {
    background: linear-gradient(135deg, #00a86b 0%, #00b377 100%) !important;
    color: #fff !important;
    border: none !important;
}

[data-theme="light"] .header-form button:hover {
    background: linear-gradient(135deg, #00b377 0%, #00c084 100%) !important;
    box-shadow: 0 4px 12px rgba(0, 168, 107, .25) !important;
}

[data-theme="light"] .navbar-list li a {
    color: var(--shop-text) !important;
    font-weight: 600;
}

[data-theme="light"] .navbar-list li a:hover,
[data-theme="light"] .navbar-list li a.active {
    color: var(--shop-green) !important;
}

[data-theme="light"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 2px solid var(--shop-border) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

[data-theme="light"] .dropdown-item {
    color: var(--shop-text) !important;
}

[data-theme="light"] .dropdown-item:hover {
    background: rgba(0, 168, 107, .08) !important;
    color: var(--shop-green) !important;
}

/* Mobile menu */
[data-theme="light"] .mobile-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    border-right: 2px solid var(--shop-border) !important;
}

[data-theme="light"] .mobile-menu .navbar-list li a {
    color: var(--shop-text) !important;
}

[data-theme="light"] .mobile-menu .navbar-list li a:hover {
    background: rgba(0, 168, 107, .08) !important;
    color: var(--shop-green) !important;
}
