/* ============================================
   HERSHEY AMBALAJ - Ana Stil Dosyası
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1c1917;
    background: #fafaf9;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* === CSS VARIABLES === */
:root {
    --primary: #16a34a;
    --primary-hover: #15803d;
    --primary-light: #f0fdf4;
    --primary-dark: #14532d;
    --text: #111827;
    --text-light: #4b5563;
    --text-lighter: #9ca3af;
    --bg: #f9fafb;
    --bg-card: #ffffff;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --success: #22c55e;
    --danger: #ef4444;
    --info: #3b82f6;
    --warning: #f59e0b;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --max-width: 1280px;
    --header-height: 72px;
}

/* === UTILITY === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }
.gap-2 { gap: 8px; }
.gap-1 { gap: 4px; }
.text-center { text-align: center; }
.hidden { display: none; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* === GRID SYSTEM === */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 768px) {
    .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .md-grid-1 { grid-template-columns: 1fr; }
}

/* === TOP BAR === */
.top-bar {
    background: #1c1917;
    padding: 8px 0;
    font-size: 11px;
    color: #a8a29e;
}
.top-bar a { color: #a8a29e; }
.top-bar a:hover { color: var(--primary); }
.top-bar .icon { color: var(--primary); margin-right: 4px; font-size: 14px; vertical-align: middle; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    width: 40px; height: 40px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(22,163,74,0.25);
}
.logo-text { display: flex; align-items: baseline; gap: 6px; }
.logo-text h1 { font-size: 19px; font-weight: 800; text-transform: uppercase; line-height: 1; color: var(--text); letter-spacing: -0.3px; }
.logo-text span { font-size: 11px; font-weight: 600; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 2px; }

/* Search */
.search-bar { flex: 1; max-width: 560px; position: relative; }
.search-bar input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 52px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    background: var(--bg);
    transition: all 0.2s;
}
.search-bar input:focus { border-color: var(--primary); background: white; }
.search-bar button {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 48px;
    background: var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: white;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.search-bar button:hover { background: var(--primary-hover); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 24px; }
.header-action {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: var(--text-light);
    transition: color 0.2s;
    position: relative;
    min-width: 48px;
}
.header-action:hover { color: var(--primary); }
.header-action .material-symbols-outlined { font-size: 22px; font-variation-settings: 'FILL' 0, 'wght' 400; }
.header-action > span:last-of-type:not(.cart-badge):not(.material-symbols-outlined) { font-size: 11px; font-weight: 600; letter-spacing: 0.2px; }
.header-action .action-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2px; }
.cart-badge {
    position: absolute; top: -4px; right: -6px;
    background: var(--primary);
    color: white;
    font-size: 9px; font-weight: 800;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* === NAV === */
.nav { border-top: 1px solid var(--border-light); background: white; }
.nav ul { display: flex; align-items: center; gap: 0; overflow-x: auto; }
.nav ul::-webkit-scrollbar { display: none; }
.nav a {
    display: block;
    padding: 12px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    white-space: nowrap;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.nav a:hover { color: var(--primary); background: var(--primary-light); }
.nav a.active { color: var(--primary); }
.nav a.highlight { color: var(--danger); }
.nav a.highlight:hover { background: #fef2f2; }

/* === HERO BANNER === */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f2718 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding: 56px 64px;
    min-height: 300px;
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.hero::after {
    content: '';
    position: absolute; right: -80px; top: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(22,163,74,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute; left: 55%; bottom: -40px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 520px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(22,163,74,0.15);
    color: #86efac;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(22,163,74,0.25);
    margin-bottom: 20px;
}
.hero h1 { font-size: 40px; font-weight: 900; color: white; line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.5px; }
.hero h2 { font-size: 40px; font-weight: 900; color: white; line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.5px; }
.hero h1 span, .hero h2 span { color: #4ade80; }
.hero p { color: #94a3b8; font-size: 15px; margin-bottom: 28px; line-height: 1.6; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 13px; font-weight: 700;
    transition: all 0.2s;
    border: none; cursor: pointer;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(22,163,74,0.25); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--text); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-dark { background: #1c1917; color: white; }
.btn-dark:hover { background: #292524; }
.btn-sm { padding: 8px 16px; font-size: 11px; }
.btn-block { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius); }

/* === TRUST BADGES === */
.trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 16px 0; }
.trust-badge {
    display: flex; align-items: center; gap: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.trust-badge:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.trust-badge-icon {
    width: 42px; height: 42px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.trust-badge-icon .material-symbols-outlined { font-size: 20px; font-variation-settings: 'FILL' 1; }
.trust-badge h4 { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.trust-badge p { font-size: 10px; color: var(--text-lighter); line-height: 1.4; }

@media (max-width: 768px) {
    .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

/* === SECTION === */
.section { padding: 40px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-header h2 { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.section-header a { font-size: 12px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.section-header a:hover { color: var(--primary-hover); gap: 6px; }

/* === PRODUCT CARD === */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #d1d5db; }
.product-card-img {
    aspect-ratio: 1;
    padding: 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-sm); transition: transform 0.3s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 9px; font-weight: 700;
    padding: 3px 9px; border-radius: 20px;
    letter-spacing: 0.3px;
}
.badge-hot { background: #fef3c7; color: #92400e; }
.badge-new { background: #dbeafe; color: #1e40af; }
.badge-sale { background: #fce7f3; color: #9d174d; }
.product-fav {
    position: absolute; top: 10px; right: 10px;
    width: 30px; height: 30px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-lighter);
    transition: all 0.2s;
    border: 1px solid var(--border);
    cursor: pointer;
    box-shadow: var(--shadow);
}
.product-fav:hover { border-color: #fca5a5; color: #ef4444; }
.product-fav.active { background: #fef2f2; border-color: #fca5a5; color: #ef4444; }
.product-card-body { padding: 14px 14px 16px; flex-grow: 1; display: flex; flex-direction: column; }
.product-rating { display: flex; align-items: center; gap: 2px; margin-bottom: 6px; }
.product-rating .star { color: #f59e0b; font-size: 11px; font-variation-settings: 'FILL' 1; }
.product-rating .star.empty { color: #e5e7eb; }
.product-rating .review-count { font-size: 10px; color: var(--text-lighter); margin-left: 4px; }
.product-card-body h3 {
    font-size: 12.5px; font-weight: 600; color: var(--text);
    margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 34px; line-height: 1.45;
}
.product-card-body h3 a { transition: color 0.2s; }
.product-card-body h3 a:hover { color: var(--primary); }
.product-prices { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.price-main { display: flex; align-items: baseline; gap: 6px; }
.price-main .price { font-size: 17px; font-weight: 800; color: var(--text); }
.price-main .unit { font-size: 10px; color: var(--text-lighter); font-weight: 500; }
.price-bulk { display: flex; align-items: center; gap: 6px; }
.price-bulk .label {
    font-size: 9px; font-weight: 600;
    background: var(--primary-light); color: var(--primary-dark);
    padding: 2px 7px; border-radius: 10px;
    white-space: nowrap;
}
.price-bulk .price { font-size: 12px; font-weight: 700; color: var(--primary-dark); }
.price-box {
    background: var(--bg);
    padding: 8px;
    border-radius: var(--radius-sm);
    text-align: center;
}
.price-box.bulk { background: var(--primary-light); border: 1px solid #bbf7d0; }
.price-box .label { font-size: 9px; color: var(--text-lighter); font-weight: 600; }
.price-box .price { font-size: 13px; font-weight: 800; color: var(--text); }
.price-box.bulk .price { color: var(--primary-dark); }
.price-box .tax { font-size: 8px; color: var(--text-lighter); }
.product-actions { margin-top: auto; display: grid; grid-template-columns: 1fr 38px; gap: 6px; }
.product-actions .btn-add {
    background: var(--primary);
    color: white;
    font-size: 11px; font-weight: 600;
    padding: 9px;
    border-radius: var(--radius-sm);
    border: none; cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.product-actions .btn-add:hover { background: var(--primary-hover); }
.product-actions .btn-cart-icon {
    background: var(--bg);
    color: var(--text-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.product-actions .btn-cart-icon:hover { background: var(--primary-light); color: var(--primary); border-color: #bbf7d0; }

/* === CATEGORY CARDS === */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    display: block;
}
.category-card-bg {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    transition: transform 0.4s;
}
.category-card:hover .category-card-bg { transform: scale(1.06); }
.category-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.category-card-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.category-card-text h3 { color: white; font-size: 17px; font-weight: 800; letter-spacing: -0.2px; }
.category-card-text p { color: rgba(255,255,255,0.65); font-size: 11px; margin-top: 3px; }

.category-item {
    display: flex; align-items: center; gap: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    transition: all 0.2s;
    cursor: pointer;
}
.category-item:hover { border-color: #bbf7d0; background: var(--primary-light); box-shadow: var(--shadow); }
.category-item .emoji { font-size: 26px; width: 44px; height: 44px; background: var(--bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.category-item h3 { font-size: 13px; font-weight: 700; color: var(--text); }
.category-item p { font-size: 10px; color: var(--text-lighter); margin-top: 1px; }
.category-item .arrow { margin-left: auto; color: var(--text-lighter); transition: transform 0.2s, color 0.2s; }
.category-item:hover .arrow { color: var(--primary); transform: translateX(2px); }

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2718 100%);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::after {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(22,163,74,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.cta-banner h3 { font-size: 26px; font-weight: 900; color: white; margin-bottom: 8px; letter-spacing: -0.3px; }
.cta-banner p { color: #94a3b8; font-size: 14px; line-height: 1.6; }
.cta-banner .btn { background: var(--primary); color: white; box-shadow: 0 4px 20px rgba(22,163,74,0.4); position: relative; z-index: 1; white-space: nowrap; }
.cta-banner .btn:hover { background: var(--primary-hover); }

@media (max-width: 768px) {
    .cta-banner { flex-direction: column; text-align: center; padding: 32px; }
}

/* === BREADCRUMB === */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-lighter); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { font-size: 10px; }
.breadcrumb .current { color: var(--text-light); font-weight: 600; }

/* === PRODUCT DETAIL === */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.product-gallery-wrap { display: flex; flex-direction: column; gap: 12px; }
.product-gallery {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 1;
    overflow: hidden;
}
.product-gallery img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius); transition: opacity 0.2s; }
.product-gallery-thumbs { display: flex; gap: 8px; }
.gallery-thumb {
    width: 64px; height: 64px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 6px;
    transition: border-color 0.2s;
    font-size: 22px;
    overflow: hidden;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info h1 { font-size: 22px; font-weight: 800; color: var(--text); margin: 12px 0 8px; line-height: 1.3; letter-spacing: -0.3px; }
.product-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.product-stock-badge { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.stock-in { background: #dcfce7; color: #15803d; }
.stock-low { background: #fef3c7; color: #92400e; }
.stock-out { background: #fee2e2; color: #991b1b; }
.product-detail-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.detail-price-box {
    padding: 18px 16px;
    border-radius: var(--radius);
    text-align: center;
    transition: border-color 0.2s;
}
.detail-price-box.normal { background: var(--bg); border: 2px solid var(--border); }
.detail-price-box.bulk { background: var(--primary-light); border: 2px solid #bbf7d0; }
.detail-price-box .label { font-size: 11px; color: var(--text-lighter); margin-bottom: 4px; }
.detail-price-box .amount { font-size: 26px; font-weight: 900; line-height: 1; }
.detail-price-box.normal .amount { color: var(--text); }
.detail-price-box.bulk .amount { color: var(--primary-dark); }
.detail-price-box .tax { font-size: 10px; color: var(--text-lighter); margin-top: 4px; }

.qty-selector {
    display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.qty-selector label { font-size: 13px; font-weight: 600; color: var(--text-light); }
.qty-controls {
    display: flex; align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.qty-controls button {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    transition: background 0.2s;
}
.qty-controls button:hover { background: var(--bg); }
.qty-controls input {
    width: 64px; height: 40px;
    text-align: center;
    border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
    font-size: 14px; font-weight: 700;
}
.qty-selector .min-note { font-size: 11px; color: var(--text-lighter); }

.detail-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.detail-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.detail-feature { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--text-light); }
.detail-feature .material-symbols-outlined { font-size: 16px; color: var(--primary); }

@media (max-width: 768px) {
    .product-detail { grid-template-columns: 1fr; }
}

/* === TABS === */
.tabs { border-bottom: 1px solid var(--border); margin-bottom: 24px; display: flex; gap: 24px; }
.tab-btn {
    padding: 12px 0;
    font-size: 13px; font-weight: 700;
    color: var(--text-lighter);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    background: none; border-top: none; border-left: none; border-right: none;
    cursor: pointer;
}
.tab-btn:hover { color: var(--text-light); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 14px; color: var(--text-light); line-height: 1.8; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-item {
    display: flex; justify-content: space-between;
    background: var(--bg);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}
.spec-item .label { font-size: 12px; color: var(--text-lighter); }
.spec-item .value { font-size: 12px; font-weight: 700; color: var(--text); }

.review-item { background: var(--bg); padding: 16px; border-radius: var(--radius); margin-bottom: 12px; }
.review-item .review-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.review-item .review-name { font-size: 12px; font-weight: 700; color: var(--text); }
.review-item .review-text { font-size: 13px; color: var(--text-light); }

/* === CART === */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; }
.cart-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex; gap: 16px;
    margin-bottom: 12px;
}
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); background: var(--bg); }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 13px; font-weight: 700; color: var(--text); }
.cart-item-info p { font-size: 11px; color: var(--text-lighter); margin-top: 2px; }
.cart-item-price { text-align: right; }
.cart-item-price .amount { font-size: 18px; font-weight: 900; color: var(--text); }
.cart-item-price .tax { font-size: 10px; color: var(--text-lighter); }

.cart-summary {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky; top: calc(var(--header-height) + 24px);
}
.cart-summary h3 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; }
.summary-row .label { color: var(--text-lighter); }
.summary-row .value { font-weight: 700; }
.summary-row.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; }
.summary-row.total .value { font-size: 20px; font-weight: 900; color: var(--primary-hover); }

@media (max-width: 768px) {
    .cart-layout { grid-template-columns: 1fr; }
}

/* === CHECKOUT === */
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 40px; }
.step-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
}
.step-circle.done { background: var(--success); color: white; }
.step-circle.active { background: var(--primary); color: white; }
.step-circle.pending { background: #e7e5e4; color: var(--text-lighter); }
.step-label { font-size: 12px; font-weight: 600; }
.step-label.active { color: var(--primary); }
.step-label.pending { color: var(--text-lighter); }
.step-line { width: 64px; height: 2px; background: var(--border); }

.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .checkout-layout { grid-template-columns: 1fr; } }

/* === FORMS === */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--text-light); margin-bottom: 6px; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    transition: border-color 0.2s;
    background: white;
}
.form-control:focus { border-color: var(--primary); }
textarea.form-control { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); }
.form-check input[type="checkbox"] { accent-color: var(--primary); }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

/* === AUTH PAGES === */
.auth-page { max-width: 440px; margin: 48px auto; padding: 0 16px; }
.auth-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.auth-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-hover);
}
.auth-card h1 { font-size: 24px; font-weight: 900; text-align: center; margin-bottom: 4px; }
.auth-card .subtitle { font-size: 13px; color: var(--text-lighter); text-align: center; margin-bottom: 32px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-lighter); }
.auth-footer a { color: var(--primary); font-weight: 700; }

/* === ORDER SUCCESS === */
.success-page { max-width: 500px; margin: 64px auto; text-align: center; padding: 0 16px; }
.success-icon {
    width: 96px; height: 96px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    color: var(--success);
}
.success-page h1 { font-size: 30px; font-weight: 900; margin-bottom: 12px; }
.success-page .order-no { font-size: 14px; color: var(--text-light); margin-bottom: 4px; }
.success-page .order-no strong { color: var(--text); }
.success-page .desc { font-size: 13px; color: var(--text-lighter); margin-bottom: 32px; }

/* === ACCOUNT SIDEBAR === */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; }
.account-sidebar { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 8px; height: fit-content; }
.sidebar-link {
    display: flex; align-items: center; gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 600;
    color: var(--text-light);
    transition: all 0.2s;
    border: none; background: none; cursor: pointer; text-align: left;
}
.sidebar-link:hover { background: var(--bg); }
.sidebar-link.active { background: var(--primary-light); color: var(--primary); }
.sidebar-link.logout { color: var(--danger); margin-top: 8px; }
.sidebar-link .material-symbols-outlined { font-size: 18px; }

@media (max-width: 768px) {
    .account-layout { grid-template-columns: 1fr; }
}

/* === ORDERS LIST === */
.order-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
    transition: border-color 0.2s;
    flex-wrap: wrap; gap: 12px;
}
.order-item:hover { border-color: #bbf7d0; }
.order-id { font-size: 14px; font-weight: 700; }
.order-date { font-size: 11px; color: var(--text-lighter); }
.status-badge {
    font-size: 11px; font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.status-delivered { background: #dcfce7; color: #15803d; }
.status-shipped { background: #dbeafe; color: #1d4ed8; }
.status-preparing { background: #fef9c3; color: #854d0e; }

/* === ADDRESS CARD === */
.address-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.address-card.default { border-color: #bbf7d0; background: var(--primary-light); }
.address-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.address-card p { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.address-card .default-badge {
    font-size: 10px; font-weight: 700;
    background: var(--primary-light); color: var(--primary-dark);
    padding: 2px 8px; border-radius: 10px;
    border: 1px solid #bbf7d0;
}
.address-actions { display: flex; gap: 12px; margin-top: 12px; }
.address-actions button { font-size: 12px; font-weight: 600; }
.address-actions .edit { color: var(--primary); }
.address-actions .delete { color: var(--danger); }

/* === LEGAL PAGES === */
.legal-page { max-width: 780px; margin: 0 auto; }
.legal-page h1 { font-size: 28px; font-weight: 900; margin-bottom: 24px; }
.legal-content { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.legal-content p { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

/* === CONTACT === */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.contact-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}
.contact-card-icon {
    width: 48px; height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary-hover);
}
.contact-card h3 { font-size: 13px; font-weight: 700; }
.contact-card .value { font-size: 13px; color: var(--primary); font-weight: 600; margin-top: 4px; }
.contact-card .note { font-size: 10px; color: var(--text-lighter); margin-top: 4px; }

@media (max-width: 768px) {
    .contact-cards { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px;
    font-size: 14px; font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .answer {
    padding: 0 20px 20px;
    font-size: 13px; color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

/* === LISTING PAGES === */
.listing-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.listing-header h1 { font-size: 24px; font-weight: 800; letter-spacing: -0.3px; }
.listing-header .count { font-size: 13px; color: var(--text-lighter); margin-top: 2px; }
.sort-select {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    background: white;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--primary); outline: none; }

/* === CATEGORY WITH FILTER === */
.category-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
@media (max-width: 768px) { .category-layout { grid-template-columns: 1fr; } }

.filter-sidebar {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + 16px);
}
.filter-section { border-bottom: 1px solid var(--border-light); }
.filter-section:last-child { border-bottom: none; }
.filter-section-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    font-size: 12px; font-weight: 700; color: var(--text);
    cursor: pointer; user-select: none;
    background: none; border: none; width: 100%; text-align: left;
}
.filter-section-header .toggle-icon { color: var(--text-lighter); transition: transform 0.2s; font-size: 16px; }
.filter-section-header.open .toggle-icon { transform: rotate(180deg); }
.filter-section-body { padding: 8px 16px 14px; }
.filter-option {
    display: flex; align-items: center; gap: 8px;
    padding: 5px 0;
    font-size: 12px; color: var(--text-light);
    cursor: pointer;
}
.filter-option input[type="checkbox"] { accent-color: var(--primary); width: 14px; height: 14px; cursor: pointer; }
.filter-option:hover { color: var(--text); }
.filter-option .count { margin-left: auto; font-size: 10px; color: var(--text-lighter); }
.price-range { display: flex; flex-direction: column; gap: 8px; }
.price-range-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price-range-input {
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px; width: 100%;
    transition: border-color 0.2s;
}
.price-range-input:focus { border-color: var(--primary); outline: none; }
.filter-apply {
    width: 100%; padding: 9px;
    background: var(--primary); color: white;
    border: none; border-radius: var(--radius-sm);
    font-size: 12px; font-weight: 600;
    cursor: pointer; transition: background 0.2s;
    margin-top: 4px;
}
.filter-apply:hover { background: var(--primary-hover); }
.filter-clear { font-size: 11px; color: var(--text-lighter); cursor: pointer; }
.filter-clear:hover { color: var(--danger); }
.filter-sidebar-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.filter-sidebar-header span { font-size: 13px; font-weight: 700; }
.active-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.active-filter-tag {
    display: flex; align-items: center; gap: 4px;
    background: var(--primary-light); color: var(--primary-dark);
    font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 20px;
    border: 1px solid #bbf7d0;
    cursor: pointer;
}
.active-filter-tag:hover { background: #dcfce7; }

/* === SEARCH === */
.search-page-input {
    max-width: 640px;
    margin-bottom: 24px;
    position: relative;
}
.search-page-input input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
}
.search-page-input input:focus { border-color: var(--primary); }
.search-page-input .icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-lighter); }

/* === BLOG === */
.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    cursor: pointer;
    display: block;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-image {
    aspect-ratio: 16/9;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-content { padding: 18px 20px; }
.blog-card-content .blog-card-date { font-size: 10px; color: var(--text-lighter); display: block; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-content h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; transition: color 0.2s; line-height: 1.4; color: var(--text); }
.blog-card:hover h3 { color: var(--primary); }
.blog-card-content p { font-size: 12px; color: var(--text-lighter); line-height: 1.5; }

/* === 404 === */
.not-found { text-align: center; padding: 80px 16px; }
.not-found h1 { font-size: 120px; font-weight: 900; color: #e7e5e4; line-height: 1; }
.not-found h2 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.not-found p { font-size: 14px; color: var(--text-lighter); margin-bottom: 32px; }

/* === PAGINATION === */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; }
.page-btn {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    color: var(--text-light);
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}
.page-btn:hover { border-color: var(--primary); }
.page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.page-btn:disabled { opacity: 0.3; cursor: default; }

/* === EMPTY STATE === */
.empty-state { text-align: center; padding: 64px 16px; }
.empty-state-icon {
    width: 80px; height: 80px;
    background: var(--bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: #d6d3d1;
}
.empty-state h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.empty-state p { font-size: 13px; color: var(--text-lighter); max-width: 400px; margin: 0 auto 24px; }

/* === SHIPPING OPTION === */
.shipping-option {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.2s;
}
.shipping-option.selected { border-color: var(--primary); background: var(--primary-light); }
.shipping-radio {
    width: 20px; height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}
.shipping-option.selected .shipping-radio { border-color: var(--primary); }
.shipping-radio-inner {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--primary);
    display: none;
}
.shipping-option.selected .shipping-radio-inner { display: block; }

/* === FOOTER === */
.footer { background: #0f172a; color: #94a3b8; padding-top: 64px; padding-bottom: 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin: 16px 0; max-width: 280px; color: #64748b; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: #1e293b;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer h4 { font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 13px; transition: color 0.2s; }
.footer ul a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 11px; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 11px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding: 36px 28px; }
    .hero h1, .hero h2 { font-size: 26px; }
    .header-inner { gap: 16px; }
    .search-bar { display: none; }
    .top-bar-left span:nth-child(2) { display: none; }
    .top-bar-right span:nth-child(2) { display: none; }
}

/* === MOBILE MENU === */
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--border-light);
    padding: 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 14px; font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--primary-light); }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text-light); }
@media (max-width: 768px) { .hamburger { display: flex; } }

/* === HERO SLIDER === */
.hero-slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); margin: 20px 0; }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.slider-slide { min-width: 100%; flex-shrink: 0; }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.18); color: white;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s; z-index: 10;
}
.slider-btn:hover { background: rgba(255,255,255,0.25); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.25s; border: none; }
.slider-dot.active { background: white; width: 24px; }

/* === NAV DROPDOWN === */
.nav-item-wrap { position: relative; }
.nav-dropdown {
    position: absolute; top: calc(100% + 4px); left: 0;
    background: white; border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    min-width: 200px; padding: 6px 0;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 300;
}
.nav-item-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-head {
    font-size: 9px; font-weight: 700; color: var(--text-lighter);
    text-transform: uppercase; letter-spacing: 0.8px;
    padding: 8px 16px 4px;
}
.nav-dropdown a {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    font-size: 12px; font-weight: 600; color: var(--text-light);
    white-space: nowrap; transition: all 0.15s;
}
.nav-dropdown a:hover { background: var(--primary-light); color: var(--primary); padding-left: 20px; }
.nav-dropdown-divider { height: 1px; background: var(--border-light); margin: 4px 0; }
.nav-has-dropdown > a::after { content: '▾'; margin-left: 3px; font-size: 9px; }

/* === RELATED PRODUCTS === */
.related-products { margin-top: 56px; }
.related-products .section-header { margin-bottom: 20px; }

/* === PRODUCT DETAIL FEATURES === */
.detail-shipping-info {
    background: var(--primary-light);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 20px;
}
.detail-shipping-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--primary-dark); }
.detail-shipping-row .material-symbols-outlined { font-size: 16px; color: var(--primary); }

/* === REVIEW FORM === */
.review-form { margin-top: 24px; }
.review-form h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.star-picker { display: flex; gap: 4px; margin-bottom: 16px; cursor: pointer; }
.star-picker .material-symbols-outlined { font-size: 24px; color: #e5e7eb; transition: color 0.15s; }
.star-picker .material-symbols-outlined.active, .star-picker .material-symbols-outlined:hover { color: #f59e0b; font-variation-settings: 'FILL' 1; }
.review-summary { display: flex; align-items: center; gap: 16px; background: var(--bg); padding: 20px; border-radius: var(--radius); margin-bottom: 24px; }
.review-avg { text-align: center; }
.review-avg .score { font-size: 48px; font-weight: 900; color: var(--text); line-height: 1; }
.review-avg .stars { display: flex; gap: 2px; justify-content: center; margin: 4px 0; }
.review-avg .total { font-size: 11px; color: var(--text-lighter); }
.review-bars { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.review-bar-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-lighter); }
.review-bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.review-bar-fill { height: 100%; background: #f59e0b; border-radius: 3px; transition: width 0.5s; }

/* === BREADCRUMB IMPROVED === */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-lighter); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { font-size: 10px; }
.breadcrumb .current { color: var(--text-light); font-weight: 600; }

/* === PAGE HEADER BANNER === */
.page-header {
    background: linear-gradient(to right, var(--bg), var(--primary-light));
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.page-header h1 { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.page-header .count { font-size: 13px; color: var(--text-lighter); margin-top: 3px; }
.page-header-icon { font-size: 48px; }

/* === EMPTY STATE === */
.empty-state { text-align: center; padding: 64px 16px; }
.empty-state .icon { font-size: 48px; color: var(--border); margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--text-lighter); margin-bottom: 24px; }
