/* AOZ Dashboard Frontend Styles */

/* CSS Custom Properties - These will be overridden by PHP-generated values */
:root {
    --primary-color: #4682b4;
    --primary-color-dark: #325f85;
    --accent-color: #dc2626;
    --accent-color-dark: #a51d1d;
    --background-color: #F8F6F1;
    --sidebar-bg: rgba(55, 65, 81, 0.92);
    --card-bg: rgba(255, 255, 255, 0.92);
    --button-bg: #4682b4;
    --button-bg-hover: #3a6a94;
    --button-text: #ffffff;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --sidebar-text: #ffffff;
    --sidebar-text-secondary: #cbd5e1;
    --premium-gold: #d4af37;
    --border-light: rgba(226, 232, 240, 0.8);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* Base */
html, body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    min-height: 100vh;
    position: relative;
}
*, *::before, *::after { box-sizing: border-box; }

/* Background Elements */
.bg-element {
    position: fixed;
    opacity: 0.02;
    animation: premium-float 15s ease-in-out infinite;
    z-index: 0;
}
.bg-element:nth-child(1) { 
    top: 10%; 
    left: 3%; 
    width: 200px; 
    height: 200px; 
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark)); 
    border-radius: 50%; 
    animation-delay: 0s; 
}
.bg-element:nth-child(2) { 
    top: 50%; 
    right: 5%; 
    width: 250px; 
    height: 250px; 
    background: linear-gradient(45deg, var(--premium-gold), var(--primary-color)); 
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%); 
    animation-delay: 5s; 
}
.bg-element:nth-child(3) { 
    top: 25%; 
    left: 80%; 
    width: 150px; 
    height: 150px; 
    background: linear-gradient(225deg, var(--primary-color), var(--primary-color-dark)); 
    border-radius: 30px; 
    animation-delay: 10s; 
}

@keyframes premium-float {
    0%, 100% { transform: translateY(0) rotate(0) scale(1); }
    33% { transform: translateY(-20px) rotate(120deg) scale(1.05); }
    66% { transform: translateY(-10px) rotate(240deg) scale(0.95); }
}

/* Layout */
.dashboard-layout { display: flex; min-height: 100vh; position: relative; z-index: 1; width: 100vw; min-width: 0; }

/* Sidebar */
.sidebar {
    width: 280px; 
    background: var(--sidebar-bg); 
    backdrop-filter: blur(25px);
    border-right: 2px solid rgba(70, 130, 180, 0.2);
    position: fixed; 
    height: 100vh; 
    left: 0; 
    top: 0;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 100; 
    overflow-y: auto; 
    box-shadow: var(--shadow-premium);
}
.sidebar[data-position="right"] { 
    left: auto; 
    right: 0; 
    border-right: none; 
    border-left: 2px solid rgba(70, 130, 180, 0.2); 
}
.sidebar.collapsed { transform: translateX(-100%); }
.sidebar[data-position="right"].collapsed { transform: translateX(100%); }

.sidebar-header {
    padding: 2rem 1.5rem 1.5rem; 
    border-bottom: 1px solid rgba(70, 130, 180, 0.2);
    display: flex; 
    align-items: center; 
    gap: 1rem;
}
.sidebar-logo img { height: 40px; width: auto; object-fit: contain; }
.sidebar-brand { 
    font-family: 'Jacques Francois', serif; 
    color: var(--sidebar-text); 
    font-size: 1.4rem; 
    font-weight: 400; 
    letter-spacing: .5px; 
}

.sidebar-profile {
    padding: 1.5rem; 
    border-bottom: 1px solid rgba(70, 130, 180, 0.2);
    display: flex; 
    align-items: center; 
    gap: 1rem;
}
.profile-avatar { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background-size: cover; 
    background-position: center; 
    border: 2px solid rgba(255, 255, 255, 0.3); 
}
.profile-info h4 { 
    color: var(--sidebar-text); 
    font-size: .95rem; 
    margin-bottom: .3rem; 
    font-weight: 600; 
}
.vip-badge { 
    background: linear-gradient(135deg, var(--premium-gold), #f6e05e); 
    color: var(--text-primary); 
    padding: .25rem .7rem; 
    border-radius: 20px; 
    font-size: .7rem; 
    font-weight: 600; 
    display: inline-flex; 
    align-items: center; 
    gap: .3rem; 
    margin-bottom: .2rem; 
}
.member-since { 
    color: var(--sidebar-text-secondary); 
    font-size: .75rem; 
    font-weight: 400; 
}

.sidebar-nav { padding: 1rem 0; }
.nav-item {
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    padding: .8rem 1.5rem;
    color: var(--sidebar-text-secondary); 
    text-decoration: none; 
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    border-left: 3px solid transparent; 
    font-weight: 500; 
    font-size: .9rem;
}
.nav-item:hover { 
    background: rgba(70, 130, 180, 0.1); 
    color: var(--sidebar-text); 
    border-left-color: var(--primary-color); 
    transform: translateX(2px); 
}
.nav-item.active { 
    background: rgba(70, 130, 180, 0.15); 
    color: var(--sidebar-text); 
    border-left-color: var(--primary-color); 
    font-weight: 600; 
}
.nav-icon { 
    width: 18px; 
    height: 18px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--sidebar-text); 
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none; 
    position: fixed; 
    inset: 0; 
    background: rgba(0, 0, 0, .3); 
    backdrop-filter: blur(2px); 
    z-index: 99; 
    transition: opacity .3s ease;
}
.sidebar-overlay.active { display: block; }

/* Main Content */
.main-content { 
    flex: 1; 
    margin-left: 280px; 
    width: 100%; 
    min-width: 0; 
    transition: margin-left .4s cubic-bezier(.4, 0, .2, 1); 
}
.main-content.expanded { margin-left: 0; }
.sidebar[data-position="right"] + .main-content { margin-left: 0; margin-right: 280px; }
.sidebar[data-position="right"] + .main-content.expanded { margin-right: 0; }

/* Header */
.dashboard-header {
    background: rgba(255, 255, 255, .8); 
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem; 
    border-bottom: 1px solid var(--border-light);
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    position: sticky; 
    top: 0; 
    z-index: 50; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}
.hamburger {
    display: none; 
    background: rgba(255, 255, 255, .9); 
    border: 1px solid var(--border-light); 
    color: var(--text-primary);
    font-size: 1.2rem; 
    cursor: pointer; 
    padding: .6rem; 
    border-radius: 10px; 
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08); 
    backdrop-filter: blur(10px);
}
.hamburger:hover { 
    background: rgba(70, 130, 180, .1); 
    border-color: var(--primary-color); 
    transform: translateY(-1px); 
}

.header-title h1 { 
    font-family: 'Jacques Francois', serif; 
    color: var(--text-primary); 
    font-size: 1.8rem; 
    font-weight: 400; 
    letter-spacing: .3px; 
    margin: 0; 
}
.header-actions { position: relative; }
.notification-btn { 
    background: rgba(255, 255, 255, .9); 
    border: 1px solid var(--border-light); 
    border-radius: 12px; 
    padding: .7rem; 
    cursor: pointer; 
    transition: all .3s ease; 
    position: relative; 
}
.notification-btn:hover { 
    border-color: var(--primary-color); 
    transform: translateY(-2px); 
}
.notification-badge {
    position: absolute; 
    top: -4px; 
    right: -4px;
    background: var(--accent-color);
    color: #fff; 
    border-radius: 50%; 
    width: 18px; 
    height: 18px; 
    font-size: .65rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600;
}
.notifications-dropdown {
    position: absolute; 
    top: 100%; 
    right: 0; 
    width: 320px; 
    background: rgba(255, 255, 255, .95); 
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    z-index: 1000; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(-10px); 
    transition: all .3s ease; 
    margin-top: .5rem;
}
.notifications-dropdown.show { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.dropdown-header { 
    padding: 1rem 1.2rem; 
    border-bottom: 1px solid var(--border-light); 
    font-weight: 600; 
    color: var(--text-primary); 
    font-size: .9rem; 
}
.dropdown-item { 
    padding: 1rem 1.2rem; 
    border-bottom: 1px solid var(--border-light); 
    transition: background .2s ease; 
    cursor: pointer; 
}
.dropdown-item:hover { background: rgba(70, 130, 180, .05); }
.dropdown-item:last-child { border-bottom: none; }
.notification-content h4 { 
    font-size: .85rem; 
    font-weight: 600; 
    color: var(--text-primary); 
    margin-bottom: .2rem; 
}
.notification-content p { 
    font-size: .75rem; 
    color: var(--text-secondary); 
    margin-bottom: .3rem; 
}
.notification-time { 
    font-size: .7rem; 
    color: var(--text-light); 
}

/* Content wrapper */
.dashboard-content { 
    padding: 0; 
    width: 100%; 
    max-width: 100vw; 
    min-width: 0; 
    position: relative; 
    min-height: 400px; 
}
.dashboard-content.loading { 
    opacity: .5; 
    pointer-events: none; 
}
.aoz-loading-spinner { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
    font-size: 2rem; 
    color: var(--primary-color); 
}

/* Endpoint Content */
.aoz-endpoint-content { 
    padding: 2rem; 
    animation: fadeInUp .4s ease forwards; 
}
.aoz-wc-content { 
    background: var(--card-bg); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-light); 
    border-radius: 20px; 
    padding: 2rem; 
    margin-bottom: 2rem; 
}

.aoz-endpoint-widgets { margin-top: 2rem; }

.aoz-wc-content .woocommerce-notices-wrapper { margin-bottom: 1.5rem; }
.aoz-wc-content table.shop_table { 
    border: 1px solid var(--border-light); 
    border-radius: 12px; 
    overflow: hidden; 
}
.aoz-wc-content table.shop_table th { 
    background: rgba(70, 130, 180, .05); 
    border-bottom: 1px solid var(--border-light); 
    padding: 1rem; 
    font-weight: 600; 
    color: var(--text-primary); 
}
.aoz-wc-content table.shop_table td { 
    padding: 1rem; 
    border-bottom: 1px solid var(--border-light); 
}
.aoz-wc-content table.shop_table tr:last-child td { border-bottom: none; }

.aoz-wc-content .woocommerce-button,
.aoz-wc-content .button {
    background: linear-gradient(135deg, var(--button-bg), var(--button-bg-hover));
    color: var(--button-text); 
    border: none; 
    border-radius: 8px; 
    padding: .6rem 1.2rem; 
    font-weight: 600; 
    transition: all .3s ease; 
    text-decoration: none; 
    display: inline-block;
}
.aoz-wc-content .woocommerce-button:hover,
.aoz-wc-content .button:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(70, 130, 180, .3); 
    background: var(--button-bg-hover);
}

/* Stats Grid */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 0; 
    margin-bottom: 2rem; 
    width: 100%; 
    min-width: 0; 
}
.stat-card {
    background: var(--card-bg); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-light); 
    border-radius: 0; 
    padding: 1.8rem;
    transition: all .4s cubic-bezier(.4, 0, .2, 1); 
    position: relative; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    opacity: 0; 
    transform: translateY(20px); 
    animation: fadeInUp .6s ease forwards; 
    border-right: none;
}
.stat-card:last-child { border-right: 1px solid var(--border-light); }
.stat-card:nth-child(1) { animation-delay: .1s; } 
.stat-card:nth-child(2) { animation-delay: .2s; } 
.stat-card:nth-child(3) { animation-delay: .3s; } 
.stat-card:nth-child(4) { animation-delay: .4s; }
@keyframes fadeInUp { 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

.stat-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(70, 130, 180, .3); 
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08); 
    z-index: 10; 
}
.stat-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 3px; 
    background: var(--sidebar-bg); 
}

.stat-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 1.2rem; 
}
.stat-icon { 
    color: var(--text-primary); 
    font-size: 1.4rem; 
}
.stat-arrow { 
    color: var(--text-light); 
    font-size: 1.2rem; 
    transition: all .3s ease; 
}
.stat-card:hover .stat-arrow { opacity: 0; }
.stat-continue { 
    position: absolute; 
    right: 1.8rem; 
    top: 3rem; 
    color: var(--primary-color); 
    font-size: .85rem; 
    font-weight: 600; 
    opacity: 0; 
    transition: all .3s ease; 
}
.stat-card:hover .stat-continue { opacity: 1; }

.stat-value { 
    font-size: 2.2rem; 
    font-weight: 700; 
    color: var(--text-primary); 
    margin-bottom: .4rem; 
}
.stat-label { 
    color: var(--text-secondary); 
    font-size: .85rem; 
    font-weight: 500; 
    letter-spacing: .3px; 
}
.vip-progress { 
    width: 100%; 
    height: 6px; 
    background: rgba(212, 175, 55, .2); 
    border-radius: 3px; 
    margin-top: .5rem; 
    overflow: hidden; 
}
.vip-progress-fill { 
    height: 100%; 
    background: linear-gradient(135deg, var(--premium-gold), #f6e05e); 
    border-radius: 3px; 
    width: 0%; 
    transition: width 2s ease-out; 
}

/* Content Section */
.content-section { padding: 0 2rem 2rem 2rem; }

/* Product Sections */
.product-section { margin-bottom: 2rem; }
.section-title { 
    font-size: 1.4rem; 
    color: var(--text-primary); 
    margin-bottom: 0; 
    font-weight: 600; 
    letter-spacing: .2px; 
}

.product-scroll { 
    display: flex; 
    gap: 1rem; 
    overflow-x: auto; 
    scrollbar-width: thin; 
    scrollbar-color: var(--border-light) transparent; 
}
.product-scroll::-webkit-scrollbar { height: 6px; }
.product-scroll::-webkit-scrollbar-track { 
    background: var(--border-light); 
    border-radius: 3px; 
}
.product-scroll::-webkit-scrollbar-thumb { 
    background: var(--primary-color); 
    border-radius: 3px; 
}

.product-card { 
    min-width: 200px; 
    background: var(--card-bg); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    padding: 1rem; 
    transition: all .3s ease; 
    cursor: pointer; 
    display: flex; 
    flex-direction: column; 
}
.product-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08); 
}
.product-link { 
    text-decoration: none; 
    color: inherit; 
    display: flex; 
    flex-direction: column; 
    flex: 1; 
}

.product-image {
    width: 100%; 
    height: 140px;
    background: linear-gradient(135deg, var(--card-bg), var(--border-light));
    border-radius: 12px; 
    margin-bottom: 1rem; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--text-light); 
    font-size: 2.5rem; 
    background-size: cover; 
    background-position: center;
}

.product-title { 
    font-size: .9rem; 
    font-weight: 600; 
    color: var(--text-primary); 
    margin-bottom: .5rem; 
    line-height: 1.3; 
    flex-grow: 1; 
}
.product-price { 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: var(--primary-color); 
    margin-bottom: 1rem; 
}

.add-to-cart-btn {
    width: 100%; 
    padding: .7rem;
    background: linear-gradient(135deg, var(--button-bg), var(--button-bg-hover));
    color: var(--button-text); 
    border: none; 
    border-radius: 10px; 
    font-size: .8rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all .3s ease;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: .4rem;
}
.add-to-cart-btn:hover {
    background: var(--button-bg-hover);
    transform: translateY(-1px);
}

/* Quick Actions */
.quick-actions { margin-bottom: 2rem; }
.actions-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1rem; 
    width: 100%; 
}
.action-btn {
    background: var(--card-bg); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    padding: 1.3rem;
    text-align: center; 
    cursor: pointer; 
    transition: all .3s ease; 
    text-decoration: none; 
    color: var(--text-primary);
}
.action-btn:hover { 
    transform: translateY(-4px); 
    border-color: rgba(70, 130, 180, .3); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08); 
}
.action-btn .icon { 
    font-size: 1.6rem; 
    margin-bottom: .6rem; 
    display: block; 
    color: var(--text-primary); 
}
.action-btn .label { 
    font-weight: 500; 
    font-size: .85rem; 
    letter-spacing: .2px; 
}

/* Recent Activity */
.recent-activity { 
    background: var(--card-bg); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-light); 
    border-radius: 20px; 
    padding: 1.8rem; 
    margin-bottom: 2rem; 
}
.activity-item { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    padding: 1rem 0; 
    border-bottom: 1px solid var(--border-light); 
}
.activity-item:last-child { border-bottom: none; }
.activity-icon { 
    width: 42px; 
    height: 42px; 
    border-radius: 12px; 
    background: rgba(255, 255, 255, .9); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--text-secondary); 
    font-size: 1.1rem; 
    border: 1px solid var(--border-light); 
}
.activity-content { flex: 1; }
.activity-content h4 { 
    color: var(--text-primary); 
    font-size: .9rem; 
    margin-bottom: .3rem; 
    font-weight: 600; 
}
.activity-content p { 
    color: var(--text-secondary); 
    font-size: .8rem; 
    font-weight: 400; 
}
.activity-time { 
    color: var(--text-light); 
    font-size: .75rem; 
    font-weight: 500; 
}

/* Chart Placeholder */
.chart-placeholder { 
    background: var(--card-bg); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-light); 
    border-radius: 20px; 
    padding: 2rem; 
    text-align: center; 
    color: var(--text-secondary); 
    font-size: 1rem; 
    margin-bottom: 2rem; 
}

/* Custom Page Content */
.custom-page-content { 
    background: var(--card-bg); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-light); 
    border-radius: 20px; 
    padding: 2rem; 
    margin-bottom: 2rem; 
}

/* Responsive */
@media (max-width: 1200px) {
    .content-section { padding: 0 1.2rem 1.2rem; }
    .actions-grid { gap: .8rem; }
}
@media (max-width: 768px) {
    .sidebar { 
        width: 85%; 
        max-width: 300px; 
        transform: translateX(-100%); 
    }
    .sidebar[data-position="right"] { transform: translateX(100%); }
    .sidebar.open, .sidebar[data-position="right"].open { transform: translateX(0); }
    .main-content { margin-left: 0; width: 100vw; min-width: 0; }
    .sidebar[data-position="right"] + .main-content { margin-right: 0; }
    .hamburger { display: block; }
    .dashboard-header { padding: 1rem 1.2rem; }
    .header-title h1 { font-size: 1.4rem; }
    .content-section { padding: 0 1rem 1rem; }
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem; 
        margin-bottom: 1.5rem; 
    }
    .stat-card { 
        padding: 1.2rem; 
        border-right: 1px solid var(--border-light); 
        border-radius: 12px; 
    }
    .stat-card:last-child { border-right: 1px solid var(--border-light); }
    .stat-icon { font-size: 1.2rem; }
    .stat-value { font-size: 1.6rem; }
    .stat-label { font-size: .8rem; }
    .stat-header { margin-bottom: .8rem; }
    .stat-continue { font-size: .75rem; right: 1.2rem; top: 2.5rem; }
    .vip-progress { height: 5px; margin-top: .4rem; }
    .actions-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
    .action-btn { padding: 1rem; }
    .action-btn .icon { font-size: 1.4rem; margin-bottom: .5rem; }
    .action-btn .label { font-size: .8rem; }
    .section-title { font-size: 1.2rem; margin-bottom: .8rem; }
    .product-section { margin-bottom: 1.5rem; }
    .quick-actions { margin-bottom: 1.5rem; }
    .recent-activity { margin-bottom: 1.5rem; }
    .chart-placeholder { margin-bottom: 1.5rem; }
    .product-scroll { gap: .8rem; }
    .product-card { min-width: 160px; padding: .8rem; }
    .product-image { height: 100px; font-size: 2rem; margin-bottom: .8rem; }
    .product-title { font-size: .8rem; margin-bottom: .4rem; }
    .product-price { font-size: 1rem; margin-bottom: .8rem; }
    .add-to-cart-btn { padding: .6rem; font-size: .75rem; }
    .notifications-dropdown { width: 280px; right: -30px; }
    .aoz-endpoint-content { padding: 1rem; }
    .aoz-wc-content { padding: 1.2rem; }
}
@media (max-width: 480px) {
    .content-section { padding: 0 .8rem .8rem; }
    .stats-grid { 
        grid-template-columns: 1fr; 
        gap: .8rem; 
        margin-bottom: 1.2rem; 
    }
    .stat-card { padding: 1rem; }
    .stat-icon { font-size: 1.1rem; }
    .stat-value { font-size: 1.4rem; }
    .stat-label { font-size: .75rem; }
    .stat-header { margin-bottom: .6rem; }
    .stat-continue { font-size: .7rem; right: 1rem; top: 2rem; }
    .vip-progress { height: 4px; margin-top: .3rem; }
    .actions-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
    .action-btn { padding: .8rem; }
    .action-btn .icon { font-size: 1.2rem; margin-bottom: .4rem; }
    .action-btn .label { font-size: .7rem; }
    .section-title { font-size: 1.1rem; margin-bottom: .6rem; }
    .product-section { margin-bottom: 1.2rem; }
    .quick-actions { margin-bottom: 1.2rem; }
    .recent-activity { margin-bottom: 1.2rem; padding: 1.2rem; }
    .chart-placeholder { margin-bottom: 1.2rem; }
    .product-scroll { gap: .6rem; }
    .product-card { min-width: 140px; padding: .8rem; }
    .product-image { height: 90px; font-size: 1.8rem; margin-bottom: .6rem; }
    .product-title { font-size: .75rem; margin-bottom: .3rem; }
    .product-price { font-size: .9rem; margin-bottom: .6rem; }
    .add-to-cart-btn { padding: .5rem; font-size: .7rem; }
    .dashboard-header { padding: .8rem 1rem; }
    .header-title h1 { font-size: 1.2rem; }
    .activity-item { padding: .8rem 0; }
    .activity-icon { width: 36px; height: 36px; font-size: 1rem; }
    .activity-content h4 { font-size: .8rem; }
    .activity-content p { font-size: .7rem; }
    .activity-time { font-size: .65rem; }
    .aoz-wc-content { padding: 1rem; }
    .aoz-wc-content table.shop_table { font-size: .85rem; }
    .aoz-wc-content table.shop_table th,
    .aoz-wc-content table.shop_table td { padding: .6rem; }
}

/* Utilities */
.no-items, .no-activity { 
    text-align: center; 
    color: var(--text-light); 
    font-style: italic; 
    padding: 2rem; 
}