/* ==========================================
   MarketSplit Design System & Core Styles
   ========================================== */

:root {
    --bg-main: #ffffff;
    --bg-sidebar: #1d4ed8; /* Vibrant true blue */
    --bg-card: #f8fafc;
    --bg-header: rgba(255, 255, 255, 0.95);
    --border-color: #e2e8f0;
    --text-primary: #000000;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --surface-light: #ffffff;
    --text-main: #000000;
    
    --primary: #f97316; /* Orange */
    --primary-glow: rgba(249, 115, 22, 0.2);
    --primary-hover: #ea580c;
    --secondary: #1e3a8a; /* Blue */
    --secondary-glow: rgba(30, 58, 138, 0.2);
    
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.2);
    --danger: #ef4444;
    --danger-glow: rgba(239, 68, 68, 0.2);
    --warning: #f59e0b;
    --info: #3b82f6;
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --sidebar-width: 260px;
    --header-height: 70px;
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Overrides */
body.light-theme {
    --bg-main: #f9fafb;
    --bg-sidebar: #f3f4f6;
    --bg-card: rgba(0, 0, 0, 0.02);
    --bg-header: rgba(249, 250, 251, 0.8);
    --border-color: rgba(0, 0, 0, 0.08);
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --primary-glow: rgba(139, 92, 246, 0.15);
    --surface-light: #ffffff;
    --text-main: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ==========================================
   Sidebar Navigation Layout
   ========================================== */

.sidebar {
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --bg-card: rgba(255, 255, 255, 0.05);
    
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 24px 16px;
    transition: var(--transition-smooth);
    overflow-y: auto; /* Enable scroll if height is small */
}

/* Custom scrollbar for sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 30px 8px;
    border-bottom: 1px solid var(--border-color);
}

.brand-logo {
    font-size: 28px;
    text-shadow: 0 0 10px var(--primary-glow);
    animation: rotateGlobe 20s linear infinite;
}

@keyframes rotateGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-text h1 {
    font-size: 32px !important;
    font-weight: 800;
}

.brand-text > span {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-text h1 span {
    font-size: inherit;
}

.sidebar-nav {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.nav-item i {
    width: 20px;
    height: 20px;
}

.nav-item:hover {
    color: var(--text-primary);
    background-color: var(--bg-card);
}

.nav-item.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), rgba(139, 92, 246, 0.4));
    box-shadow: 0 4px 12px var(--primary-glow);
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: var(--border-radius-md);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.cart-qty-btn {
    border: none;
    background: none;
    color: #000000 !important;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.cart-qty-btn:hover {
    color: #f97316 !important;
    background: rgba(0, 0, 0, 0.05);
}

.cart-qty-val {
    font-size: 14px;
    font-weight: 800;
    padding: 0 4px;
    color: #000000 !important;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #000000 !important;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.theme-toggle:hover {
    background-color: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.theme-toggle i {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.theme-toggle .theme-text {
    transition: var(--transition-smooth);
}

body.light-theme .theme-toggle {
    color: var(--primary);
    background-color: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

body.light-theme .theme-toggle:hover {
    background-color: rgba(139, 92, 246, 0.16);
}

/* Light / Dark Icon displays */
.sun-icon { display: none; }
.moon-icon { display: block; }
.light-theme .sun-icon { display: block; }
.light-theme .moon-icon { display: none; }

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

.user-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.user-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==========================================
   Main Content Layout
   ========================================== */

.main-content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-main);
    transition: var(--transition-smooth);
}

.content-header {
    height: var(--header-height);
    padding: 0 40px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    z-index: 50;
    transition: var(--transition-smooth);
}

.header-search {
    position: relative;
    width: 350px;
}

.header-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.header-search input {
    width: 100%;
    padding: 10px 14px 10px 42px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.header-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-trigger {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.cart-trigger:hover {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(236, 72, 153, 0.4);
}

/* Page containers */
.page-container {
    padding: 40px;
    flex-grow: 1;
    background-color: var(--bg-main);
}

.page {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
    background-color: var(--bg-main);
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10deg); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   Hero Banner Design
   ========================================== */

.hero-banner {
    background: radial-gradient(circle at 80% 20%, var(--primary-glow) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, var(--secondary-glow) 0%, transparent 50%),
                var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--primary-hover);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.neon-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px var(--primary-glow);
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================
   Categories Bar
   ========================================== */

.categories-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
    scrollbar-width: none; /* Firefox */
}

.categories-bar::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-pill {
    padding: 10px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.category-pill:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.category-pill.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* ==========================================
   Product comparison showcase
   ========================================== */

.section-container {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.btn-text:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.compare-showcase {
    background: rgba(139, 92, 246, 0.05);
    border: 1px dashed var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.compare-card {
    background-color: rgba(13, 15, 20, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
}

.compare-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.compare-store-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare-store-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.compare-store-row span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.compare-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.compare-price-row .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--success);
}

/* ==========================================
   Product Grid & Cards
   ========================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.product-img-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-store-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    background-color: rgba(249, 115, 22, 0.95) !important;
    color: #ffffff !important;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.product-store-logo {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.product-sector-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    background: rgba(249, 115, 22, 0.95); /* Orange */
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-primary);
}

.product-desc {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price .lbl {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.product-price .val {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.btn-add-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px var(--primary-glow);
    transition: var(--transition-smooth);
}

.btn-add-cart:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}

.product-stock-out {
    position: absolute;
    inset: 0;
    background: rgba(13, 15, 20, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--danger);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   Forms, Cards & Layout Utilities
   ========================================== */

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.glass-card {
    backdrop-filter: blur(12px);
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.card-body {
    padding: 24px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glass-input {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.glass-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background-color: rgba(255, 255, 255, 0.04);
}

select.glass-input {
    background-color: var(--surface-light);
    color: var(--text-primary);
    cursor: pointer;
}
select.glass-input option {
    background-color: var(--surface-light);
    color: var(--text-primary);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-row input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.checkbox-row label {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.checkbox-row label a {
    color: var(--primary);
    text-decoration: underline;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.align-center {
    align-items: center;
}

.margin-top {
    margin-top: 16px;
}
.margin-top-large {
    margin-top: 28px;
}
.w-100 {
    width: 100%;
}
.max-width-600 {
    max-width: 600px;
}
.max-width-500 {
    max-width: 500px;
}
.max-width-400 {
    max-width: 400px;
}
.centered {
    margin-left: auto;
    margin-right: auto;
}
.bold {
    font-weight: 700;
}
.font-purple {
    color: var(--primary-hover);
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.padding-vertical {
    padding: 40px 0;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.btn-danger {
    background-color: var(--danger);
    color: white;
    box-shadow: 0 4px 14px var(--danger-glow);
}

.btn-danger:hover {
    background-color: #f87171;
    transform: translateY(-2px);
}

.btn-glowing {
    position: relative;
    overflow: hidden;
}

.btn-glowing::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-glowing:hover::after {
    transform: translateX(100%);
}

/* Badges */
.badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-info {
    background-color: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-danger {
    background-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-warning {
    background-color: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ==========================================
   Merchant Portal Layout
   ========================================== */

.merchant-header-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.store-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-selector-wrapper select {
    padding: 10px 30px 10px 14px;
    cursor: pointer;
    min-width: 220px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 35px;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.purple { background-color: rgba(139, 92, 246, 0.15); color: var(--primary-hover); }
.stat-icon.green { background-color: rgba(16, 185, 129, 0.15); color: #34d399; }
.stat-icon.blue { background-color: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.stat-icon.gold { background-color: rgba(245, 158, 11, 0.15); color: #fbbf24; }

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-info h3 {
    font-size: 24px;
    font-weight: 800;
}

.merchant-tabs, .admin-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1px;
    margin-bottom: 24px;
}

.m-tab-btn, .a-tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.m-tab-btn:hover, .a-tab-btn:hover {
    color: var(--text-primary);
}

.m-tab-btn.active, .a-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.m-tab-content, .a-tab-content {
    display: none;
}

.m-tab-content.active, .a-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.data-table th, .data-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    font-weight: 600;
    color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.01);
}

.data-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.table-thumbnail {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.table-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-product-info h5 {
    font-size: 14px;
    font-weight: 600;
}

.table-product-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Switch styling for settings */
.toggle-group {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.toggle-text h4 {
    font-size: 15px;
    font-weight: 600;
}

.toggle-text p {
    font-size: 12px;
    color: var(--text-muted);
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
}

input:checked + .slider {
    background-color: var(--success);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--success);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Recent Transaction Ledger List */
.tx-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tx-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.01);
}

.tx-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tx-title {
    font-size: 13px;
    font-weight: 600;
}

.tx-date {
    font-size: 11px;
    color: var(--text-muted);
}

.tx-amount {
    font-weight: 700;
    font-size: 15px;
}

.tx-amount.credit { color: var(--success); }
.tx-amount.debit { color: var(--danger); }

/* ==========================================
   Multi-Shop Shopping Cart Drawer
   ========================================== */

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    background-color: var(--bg-sidebar);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1d4ed8 !important;
}

.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.cart-drawer-header .close-btn {
    color: #ffffff !important;
}

.close-btn:hover {
    color: var(--text-primary);
}

.cart-drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-store-group {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-card);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-store-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.cart-store-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 16px;
    color: #f97316 !important;
}

.cart-store-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.cart-store-delivery-select {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #f97316 !important;
}

.cart-store-delivery-select select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 4px;
    padding: 2px 4px;
    font-family: var(--font-sans);
    outline: none;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-img {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-info h5 {
    font-size: 13px;
    font-weight: 700;
    color: #000000 !important;
}

.cart-item-info span {
    font-size: 12px;
    font-weight: 700;
    color: #f97316 !important;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.cart-qty-btn {
    border: none;
    background: none;
    color: #000000 !important;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.cart-qty-btn:hover {
    color: #f97316 !important;
    background: rgba(0, 0, 0, 0.05);
}

.cart-qty-val {
    font-size: 14px;
    font-weight: 800;
    padding: 0 4px;
    color: #000000 !important;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #000000 !important;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: rgba(6, 7, 10, 0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
}

.cart-summary-line.grand-total {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    margin-top: 5px;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    color: var(--text-muted);
    text-align: center;
}

.cart-empty-state i {
    width: 48px;
    height: 48px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
}

.overlay.show {
    display: block;
}

/* ==========================================
   Split Checkout Modal
   ========================================== */

.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.checkout-modal-overlay.show {
    display: flex;
}

.checkout-container {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 750px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: zoomIn 0.3s ease-out;
}

.image-upload-zone {
    border: 2px dashed rgba(255,255,255,0.2);
    padding: 22px 18px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255,255,255,0.02);
    position: relative;
}

.image-upload-zone:hover,
.image-upload-zone:focus,
.image-upload-zone.drag-active {
    border-color: var(--primary-color);
    background-color: rgba(59,130,246,0.08);
    transform: translateY(-1px);
}

.image-upload-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.image-upload-text {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.image-upload-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-upload-hint {
    display: none;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.image-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

@media (max-width: 640px) {
    .image-upload-zone {
        padding: 18px 14px;
    }
    .image-upload-actions {
        flex-direction: column;
    }
    .mobile-upload-hint {
        display: block;
    }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.checkout-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header h2 {
    font-size: 20px;
    font-weight: 800;
}

.checkout-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.checkout-tabs {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    margin-bottom: 24px;
}

.step-indicator {
    flex-grow: 1;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-right: 1px solid var(--border-color);
}

.step-indicator:last-child {
    border-right: none;
}

.step-indicator.active {
    background-color: var(--primary-glow);
    color: var(--primary-hover);
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.checkout-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.radio-group {
    display: flex;
    gap: 16px;
}

.radio-label {
    flex-grow: 1;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.radio-label:hover {
    background-color: var(--bg-card);
}

.radio-label input:checked + span {
    color: var(--primary-hover);
    font-weight: 600;
}

/* STEP 2: Glass Card Payout Styling */
.glass-credit-card {
    aspect-ratio: 1.586/1; /* standard card ratio */
    width: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    overflow: hidden;
    margin: 0 auto;
}

.glass-credit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.card-chip {
    width: 36px;
    height: 28px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.card-number-display {
    font-size: 18px;
    letter-spacing: 2px;
    font-family: monospace;
    color: white;
    z-index: 1;
}

.card-holder-row {
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.holder-lbl span {
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.holder-lbl h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* STEP 3: Split Flow SVG Graph Visuals */
.visualizer-instructions {
    text-align: center;
    margin-bottom: 20px;
}

.visualizer-instructions p {
    font-size: 13px;
    color: var(--text-secondary);
}

.visualizer-wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 300px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-svg {
    width: 100%;
    height: 100%;
}

.flow-line {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 2px;
    stroke-dasharray: 4, 4;
}

.flow-line.active {
    stroke: var(--primary);
    stroke-width: 2.5px;
    animation: dashMove 2s linear infinite;
}

.flow-line.admin {
    stroke: var(--warning);
}

.flow-line.delivery {
    stroke: var(--info);
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -20;
    }
}

.flow-dot {
    filter: drop-shadow(0 0 5px currentColor);
}

.svg-node {
    cursor: default;
}

.svg-node circle {
    transition: transform 0.2s ease;
}

.svg-node:hover circle {
    transform: scale(1.05);
}

/* STEP 4: Success States */
.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.success-icon-ring {
    position: absolute;
    inset: 0;
    border: 4px solid var(--success-glow);
    border-radius: 50%;
    animation: pulseRing 1.5s ease-in-out infinite;
}

.success-checkmark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    color: var(--success);
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.receipt-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    max-width: 440px;
    margin: 20px auto 0 auto;
    text-align: left;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.receipt-row:last-child {
    border-bottom: none;
}

.receipt-split-breakdown {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.receipt-split-line {
    display: flex;
    justify-content: space-between;
}

/* ==========================================
   Alert Toasts System
   ========================================== */

.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: #111827 !important; /* Very dark background for contrast */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 12px 20px;
    color: #ffffff !important; /* Always white text for visibility */
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }
.toast.info { border-left: 4px solid var(--info); }
.toast.warning { border-left: 4px solid var(--warning); }

/* Responsive Layout Adjustments */
@media (max-width: 900px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 18px 14px;
    }
    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
    }
    .sidebar-nav .nav-item {
        flex: 0 0 auto;
        padding: 10px 14px;
    }
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    .content-header {
        padding: 16px 18px;
        flex-wrap: wrap;
        gap: 16px;
    }
    .header-search {
        width: 100%;
        max-width: none;
        order: 1;
    }
    .header-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 10px;
    }
    .page-container {
        padding: 24px 18px;
    }
    .merchant-header-panel,
    .stats-grid,
    .filter-bar,
    .checkout-navigation {
        gap: 16px;
    }
    .store-selector-wrapper {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
    }
    .store-selector-wrapper select {
        min-width: 180px;
        width: 100%;
    }
    .merchant-tabs,
    .admin-tabs {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }
    .m-tab-btn,
    .a-tab-btn {
        flex: 1 1 auto;
        width: auto;
        min-width: 140px;
    }
    .data-table th,
    .data-table td {
        padding: 12px 14px;
    }
    .checkout-navigation {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .sidebar {
        padding: 14px 12px;
    }
    .sidebar-brand {
        flex-wrap: wrap;
        gap: 10px;
    }
    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        overflow-x: auto;
        margin-top: 12px;
        gap: 8px;
    }
    .sidebar-nav::-webkit-scrollbar { height: 6px; }
    .sidebar-nav::-webkit-scrollbar-thumb { background: var(--border-color); }
    .nav-item {
        flex: 1 1 auto;
        min-width: 140px;
        justify-content: center;
        text-align: center;
        padding: 10px 12px;
    }
    .sidebar-footer {
        gap: 14px;
    }
    .content-header {
        padding: 14px 16px;
    }
    .header-actions {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    .header-search input {
        padding: 10px 14px 10px 40px;
    }
    .page-container {
        padding: 18px 12px;
    }
    .hero-banner {
        padding: 28px 18px;
    }
    .stats-grid {
        gap: 16px;
    }
    .stat-card {
        padding: 18px;
    }
    .product-img-wrapper {
        height: 180px;
    }
    .products-grid {
        gap: 20px;
    }
    .product-body {
        padding: 16px;
    }
    .category-pill {
        padding: 10px 16px;
        font-size: 13px;
    }
    .messages-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .messages-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        max-height: 220px;
    }
    .messages-chat-body {
        padding: 12px;
    }
    .messages-chat-input {
        flex-direction: column;
        align-items: stretch;
    }
    .messages-chat-input button {
        width: 100%;
    }
    .profile-layout {
        grid-template-columns: 1fr;
    }
    .profile-card,
    .profile-edit-section {
        padding: 18px;
    }
    .data-table th,
    .data-table td {
        padding: 12px 10px;
    }
    .table-product-cell {
        gap: 8px;
    }
    .receipt-card {
        margin: 16px auto;
    }
    .toast-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    .toast {
        min-width: auto;
        width: auto;
    }
    .checkout-container,
    .product-detail-panel {
        max-width: 100%;
        margin: 0 8px;
    }
    .checkout-settings,
    .page.active {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }
    .content-header {
        padding: 14px 16px;
    }
    .header-search {
        width: 100%;
    }
    .header-actions {
        justify-content: space-between;
    }
    .page-container {
        padding: 20px 14px;
    }
    .hero-banner {
        padding: 28px 16px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .merchant-header-panel {
        flex-direction: column;
        align-items: stretch;
    }
    .store-selector-wrapper {
        justify-content: space-between;
    }
    .store-selector-wrapper select {
        min-width: 120px;
    }
    .merchant-tabs, .admin-tabs {
        gap: 6px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .sidebar {
        padding: 14px 12px;
    }
    .sidebar-nav {
        gap: 6px;
    }
    .nav-item {
        font-size: 13px;
        padding: 10px 12px;
    }
    .content-header {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
    }
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    .page-container {
        padding: 18px 12px;
    }
    .filter-bar {
        padding: 12px 16px;
        gap: 10px;
    }
    .filter-group,
    .filter-price-inputs {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
    .filter-price-input {
        width: 100%;
    }
    .messages-layout {
        grid-template-columns: 1fr;
    }
    .messages-sidebar {
        max-height: 220px;
    }
    .messages-chat-input {
        flex-direction: column;
    }
    .merchant-header-panel,
    .stats-grid,
    .checkout-navigation {
        gap: 14px;
    }
    .customer-subnav {
        padding: 0 14px 12px;
    }
}

.toast-text {
    font-size: 13px;
    font-weight: 500;
    flex-grow: 1;
    color: #ffffff !important;
}

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-muted);
}
.toast-close:hover {
    color: var(--text-primary);
}

/* ==========================================
   Google Maps Autocomplete & Location Styles
   ========================================== */

.autocomplete-container {
    display: block;
}

.suggestions-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background-color: rgba(13, 15, 20, 0.95);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    backdrop-filter: blur(12px);
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: var(--primary-glow);
    color: var(--text-primary);
}

.suggestion-item i {
    color: var(--primary-hover);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* Store card map buttons */
.btn-nav-map {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
    margin-right: 6px;
}

.btn-nav-map:hover {
    border-color: var(--info);
    color: #60a5fa;
    background-color: rgba(59, 130, 246, 0.08);
}

/* Support & Inquiries Card Styling */
.support-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.support-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.support-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.support-header h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.support-header i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 6px 8px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
}

.support-link:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--border-color);
}

.support-link i {
    width: 14px;
    height: 14px;
    color: var(--success);
    flex-shrink: 0;
}

.support-link i[data-lucide="mail"] {
    color: var(--info);
}

/* User Auth Panel in Sidebar */
.user-auth-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition-smooth);
}

.user-auth-panel:hover {
    border-color: var(--primary);
}

.user-auth-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-auth-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 2px 8px var(--primary-glow);
}

.user-auth-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.user-auth-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.user-auth-info span {
    font-size: 10px;
    color: var(--text-muted);
}

.btn-signout {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 4px;
    text-align: left;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-signout:hover {
    text-decoration: underline;
}

.btn-signin-trigger {
    background: linear-gradient(135deg, var(--primary), rgba(139, 92, 246, 0.6));
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-signin-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--primary-glow);
}

.btn-google-auth:hover {
    background-color: #f3f4f6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.auth-view {
    animation: fadeIn 0.3s ease-out;
}

/* ==========================================
   Modals
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: var(--surface-light);
    color: var(--text-main);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-primary);
}

/* ==========================================
   Notifications Center Styles
   ========================================== */
.notif-bell-btn {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
}

.notif-bell-btn:hover {
    background: var(--border-color);
    transform: scale(1.05);
}

.notif-bell-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.notif-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.notif-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.notif-item.unread {
    background: rgba(139, 92, 246, 0.05); /* very light primary */
    border-left: 4px solid var(--primary);
}

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.notif-icon.order {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.notif-icon.payment {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.notif-icon.delivery {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.notif-icon.security, .notif-icon.system_error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.notif-icon.promo {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.notif-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.notif-message {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.notif-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}


/* ==========================================
   Compliance & Policy System Styles
   ========================================== */

/* Skip Navigation Link (WCAG 2.1 AA) */
.skip-link {
    position: absolute;
    top: -999px;
    left: -999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}
.skip-link:focus {
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 99999;
    outline: 3px solid var(--primary-hover);
    outline-offset: 2px;
}

/* Focus Indicators (WCAG 2.1 AA - 2px minimum, non-color) */
:focus-visible {
    outline: 2px solid var(--primary-hover);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Form hint text */
.form-hint {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.4;
}

/* ==========================================
   Policy Consent Block
   ========================================== */
.policy-consent-block {
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    padding: 14px;
    margin-top: 14px;
    background: rgba(139, 92, 246, 0.05);
}

.policy-consent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.select-all-btn {
    background: none;
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: var(--primary-hover);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
}
.select-all-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary);
}

.policy-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.policy-check-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.policy-check-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    accent-color: var(--primary);
    cursor: pointer;
    border-radius: 4px;
}
.policy-check-row label {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.3;
    margin: 0;
}
.policy-check-row input[type="checkbox"]:checked + label {
    color: var(--text-primary);
    font-weight: 500;
}

.read-policy-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--primary-hover);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.read-policy-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8888;
    background: rgba(6, 7, 10, 0.97);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px;
    animation: slideUpBanner 0.4s ease;
}

@keyframes slideUpBanner {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 280px;
}
.cookie-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.cookie-banner-text strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 3px;
}
.cookie-banner-text p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.cookie-link-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-hover);
    font-size: 12px;
    font-family: var(--font-sans);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-link-btn:hover { color: var(--primary); }

.cookie-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 9px 18px;
    font-size: 13px;
    white-space: nowrap;
}

/* Ghost button style for decline */
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-secondary);
}

/* ==========================================
   Cookie Preferences Modal
   ========================================== */
.cookie-pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 16px;
}
.cookie-pref-row:last-child { border-bottom: none; }
.cookie-pref-row strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}
.cookie-pref-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}
.cookie-badge-required {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    transition: all 0.3s ease;
}
.cookie-toggle-slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}
.cookie-toggle input:focus-visible + .cookie-toggle-slider {
    outline: 2px solid var(--primary-hover);
    outline-offset: 2px;
}

/* ==========================================
   Policy Content Modal Styles
   ========================================== */
.policy-content {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}
.policy-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}
.policy-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 20px 0 8px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
}
.policy-content p {
    margin: 0 0 12px 0;
}
.policy-content ul,
.policy-content ol {
    padding-left: 20px;
    margin: 0 0 12px 0;
}
.policy-content li {
    margin-bottom: 6px;
}
.policy-content em {
    color: var(--text-muted);
    font-size: 12px;
    font-style: italic;
}
.policy-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 13px;
}
.policy-content th {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    padding: 10px 12px;
    text-align: left;
    font-weight: 700;
}
.policy-content td {
    padding: 9px 12px;
    border-top: 1px solid var(--border-color);
}

/* ==========================================
   Sidebar Footer Policy Links
   ========================================== */
.policy-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 0 4px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}
.policy-footer-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-muted);
    font-size: 10px;
    font-family: var(--font-sans);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.policy-footer-link:hover { color: var(--primary-hover); }

/* ==========================================
   Customer Support Chat Widget
   ========================================== */
.support-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    cursor: pointer;
    z-index: 1100;
    transition: transform 0.2s, box-shadow 0.2s;
}
.support-floating-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.support-chat-panel {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1100;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.support-chat-header {
    background: var(--bg-sidebar);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.support-chat-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.support-chat-body {
    padding: 16px;
}

/* Multi-Step Form Wizard Styles */
.form-step {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.store-progress-container {
    width: 100%;
    margin-bottom: 20px;
}

.store-progress-bar {
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ==========================================
   Mobile Responsiveness (Customer & Merchant)
   ========================================== */
.mobile-menu-btn {
    display: none;
    color: var(--text-primary);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 990;
    display: none;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    width: 100% !important;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
        padding: 6px;
        font-size: 20px;
    }

    .sidebar {
        transform: translateX(-100%) !important;
        z-index: 1000 !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        width: 82vw !important;
        max-width: 280px !important;
        position: fixed !important;
        left: 0;
        top: 0;
        bottom: 0;
    }

    .sidebar.open {
        transform: translateX(0) !important;
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 12px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .content-header {
        padding: 10px 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-search {
        flex: 1;
        width: auto;
        min-width: 140px;
    }

    .sidebar-brand {
        padding: 12px 14px !important;
        gap: 8px !important;
    }

    .sidebar-brand img, .brand-logo img {
        height: 26px !important;
        width: auto !important;
        max-width: 90px !important;
        object-fit: contain;
    }

    .sidebar-brand .brand-text h1 {
        font-size: 19px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    .sidebar-nav .nav-item {
        padding: 9px 12px !important;
        font-size: 13.5px !important;
        min-height: 42px !important;
        margin-bottom: 3px !important;
        gap: 8px !important;
    }

    /* Prevent tables from overflowing screen */
    table, .table-responsive, .cart-table, .order-table {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        display: block !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Collapse grids to 1 column on mobile */
    .stores-grid, .products-grid, .merchant-dash-grid, .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Modal dialogs */
    .modal-content {
        width: 94% !important;
        max-width: 480px !important;
        padding: 16px !important;
        margin: 16px auto !important;
        max-height: 88vh !important;
        overflow-y: auto !important;
    }
}

