/* ================================
   NEXORA — COMPLETE PROFESSIONAL CSS
   (v4 — image-only hero slideshow + plain round category tiles)
================================ */
:root {
    --primary: #1a1a2e;
    --primary-mid: #16213e;
    --accent: #e94560;
    --accent-hover: #c73652;
    --gold: #f5a623;
    --success: #00b894;
    --bg: #f4f6f9;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #555e6d;
    --text-light: #8a93a2;
    --border: #e8ecf0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 50px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Segoe UI',system-ui,sans-serif; background:var(--bg); color:var(--text-dark); -webkit-font-smoothing:antialiased; }
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }
button { font-family:inherit; cursor:pointer; border:none; }

/* ===== HEADER (used site-wide) ===== */
header {
    background: var(--primary);
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.logo a, .logo h1 {
    color: var(--accent);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.search-wrap {
    flex: 1;
    max-width: 580px;
    display: flex;
    background: white;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.2s;
}

.search-wrap:focus-within { border-color: var(--accent); }

.search-box {
    flex: 1;
    padding: 10px 18px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--text-dark);
}

.search-btn {
    padding: 0 18px;
    background: var(--accent);
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.header-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: 0.2s;
    cursor: pointer;
    font-size: 11px;
    gap: 2px;
    min-width: 52px;
    background: none;
}

.header-icon-btn:hover { background: rgba(255,255,255,0.1); }

.header-icon-btn .icon { font-size: 20px; }
.header-icon-btn .label { font-size: 11px; color: rgba(255,255,255,0.8); }

.header-icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

.user-chip {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-btn {
    background: rgba(233,69,96,0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.logout-btn:hover { background: var(--accent); color: white; }

.login-header-btn {
    background: var(--accent);
    color: white;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
}
.login-header-btn:hover { background: var(--accent-hover); }

/* Simple header variant (auth / minimal pages) */
.header-simple-actions { display:flex; align-items:center; gap:10px; margin-left:auto; }
.header-simple-actions a { color: rgba(255,255,255,0.75); font-size:14px; font-weight:600; }
.header-simple-actions a:hover { color: white; }

/* ===== NAV BAR ===== */
.nav-bar {
    background: var(--primary-mid);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-bar::-webkit-scrollbar { display:none; }

.nav-inner {
    display: flex;
    padding: 0 20px;
    gap: 4px;
    min-width: max-content;
}

.nav-cat {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: none;
    padding: 13px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.nav-cat:hover { color: white; }
.nav-cat.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ===== HERO BANNER (pure image slideshow — no text, no buttons) ===== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: var(--primary); /* shows while the first image loads, or if none are set yet */
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease, transform 6s ease;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slow continuous zoom while a slide is showing, purely decorative. */
.hero-slide.active {
    transform: scale(1.06);
}

.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: 0.3s;
}

.hero-dot.active {
    background: white;
    width: 22px;
    border-radius: 4px;
}

/* ===== MEMBER BAR ===== */
.member-bar {
    background: linear-gradient(135deg, #fff8f0, #fff0f3);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 2px solid rgba(233,69,96,0.15);
    flex-wrap: wrap;
}

.member-bar span { font-size: 14px; color: var(--text-mid); }
.member-bar a { background: var(--accent); color: white; padding: 6px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; }

/* ===== OFFERS BAR ===== */
.offers-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
}

.offer-item {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    border-right: 1px solid var(--border);
    white-space: nowrap;
}

.offer-item:last-child { border-right: none; }

/* ===== BREADCRUMB (site-wide) ===== */
.breadcrumb { font-size: 13px; color: var(--text-light); margin: 20px auto 0; max-width: 1180px; padding: 0 20px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== SECTIONS ===== */
.section { padding: 28px 20px; max-width: 1180px; margin: 0 auto; }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== SORT ===== */
.sort-wrap { display: flex; gap: 8px; }

.sort-select {
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: inherit;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    outline: none;
}

.sort-select:focus { border-color: var(--accent); }

/* ===== CATEGORY TILES ===== */
.category-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    padding-bottom: 8px;
}

.cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-align: center;
    flex-shrink: 0;
    /* plain — no card background/border/shadow, just the circle + label */
}

.cat-icon {
    font-size: 46px;
    width: 116px;
    height: 116px;
    background: linear-gradient(135deg, #fff0f3, #fff8f0);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cat-tile:hover .cat-icon {
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
}

/* When a category has a real uploaded image, it fills the circle
   completely (object-fit:cover) instead of showing an emoji. */
.cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-tile span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== SHOP LAYOUT (filters + products, Amazon-style) ===== */
.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: start;
}

.filters-sidebar {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: 78px;
}

.filters-sidebar h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg);
}

.filter-group { margin-bottom: 20px; }
.filter-group h4 { font-size: 13px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.filter-group label { display:flex; align-items:center; gap:8px; font-size:13px; color: var(--text-dark); cursor:pointer; padding:6px 0; font-weight:500; }
.filter-group label input[type="radio"], .filter-group label input[type="checkbox"] { width:15px; height:15px; margin-right:0; accent-color: var(--accent); }

.price-range-inputs { display:flex; align-items:center; gap:8px; }
.price-range-inputs input { padding:8px 10px; font-size:13px; }
.price-range-inputs span { color: var(--text-light); }

.filter-apply-btn {
    width: 100%;
    margin-top: 10px;
    padding: 9px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
}
.filter-apply-btn:hover { background: var(--primary-mid); }

.filter-clear-btn {
    width: 100%;
    padding: 9px;
    background: var(--bg);
    color: var(--accent);
    border: 1.5px solid #ffd6df;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
}
.filter-clear-btn:hover { background: #fff0f3; }

.mobile-filter-toggle { display:none; }

/* ===== PRODUCT GRID ===== */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.load-more-btn {
    padding: 12px 32px;
    background: white;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s;
}
.load-more-btn:hover { background: var(--accent); color: white; }

/* ===== PRODUCT CARD ===== */
.product-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f8f9fa;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s;
}

.product-card:hover .card-img-wrap img { transform: scale(1.05); }

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
}

.card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.card-title a { color: var(--text-dark); }
.card-title a:hover { color: var(--accent); }

.card-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.card-original {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-badge {
    background: #00b894;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

.review-count { font-size: 12px; color: var(--text-light); }

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.btn-cart {
    flex: 1;
    padding: 9px;
    background: #fff8e1;
    color: #a67c00;
    border: 1px solid #f5d76e;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-cart:hover { background: #f5d76e; }

.btn-wish {
    width: 36px;
    height: 36px;
    background: #fff0f3;
    border: 1px solid #ffd6df;
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wish:hover { background: var(--accent); }
.btn-wish.active { background: var(--accent); }

.btn-buynow {
    display: block;
    text-align: center;
    padding: 9px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s;
}

.btn-buynow:hover { background: var(--accent-hover); }

/* ===== NO PRODUCTS ===== */
.no-products {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.loading-spinner {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px;
    color: var(--text-light);
    font-size: 16px;
}

/* ===== FEATURES ===== */
.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 0 0 32px;
}

.feature-box {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.feature-box:last-child { border-right: none; }

.feature-icon { font-size: 32px; margin-bottom: 10px; }

.feature-box h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-box p { font-size: 12px; color: var(--text-light); }

/* ===== FOOTER ===== */
.main-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    margin-top: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 48px 40px 32px;
    max-width: 1180px;
    margin: 0 auto;
}

.footer-logo {
    color: var(--accent);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
}

.social-links { display: flex; gap: 10px; }

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.2s;
}

.social-links a:hover { background: var(--accent); }

.footer-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    transition: 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1180px;
    margin: 0 auto;
}

.footer-bottom p { font-size: 13px; }

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icons span {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.simple-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.65);
    text-align: center;
    padding: 24px 20px;
    font-size: 13px;
    margin-top: 40px;
}
.simple-footer a { color: rgba(255,255,255,0.65); margin: 0 6px; }
.simple-footer a:hover { color: var(--accent); }

/* ===== CART / GENERIC CONTAINER ===== */
.cart-container {
    max-width: 900px;
    margin: 28px auto;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.cart-container h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

/* ===== INPUTS ===== */
input, textarea, select {
    font-family: inherit;
    font-size: 15px;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    color: var(--text-dark);
    background: #fafbfc;
    transition: 0.2s;
    width: 100%;
    box-sizing: border-box;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

/* ===== AUTH PAGES ===== */
.auth-wrapper {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.auth-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-icon { font-size: 48px; text-align: center; margin-bottom: 8px; }
.auth-box h2 { text-align: center; font-size:24px; font-weight:800; color:var(--text-dark); margin-bottom:6px; }
.auth-box p.subtitle { text-align: center; color:var(--text-light); font-size:14px; margin-bottom:28px; }

.auth-btn {
    width:100%; padding:14px; background:var(--accent); color:white;
    border:none; border-radius:10px; font-size:15px; font-weight:700;
    cursor:pointer; transition:0.2s; font-family:inherit; margin-bottom:12px;
}

.auth-btn:hover { background:var(--accent-hover); }
.auth-btn:disabled { background:#ccc; cursor:not-allowed; }

.auth-status { color:var(--accent); font-size:13px; margin-top:10px; text-align:center; font-weight:600; }
.auth-links { text-align:center; margin-top:20px; font-size:14px; color:var(--text-light); }
.auth-links a { color:var(--accent); font-weight:700; }
.auth-links .forgot-link { font-size: 13px; display:block; margin-top:2px; }

.divider { display:flex; align-items:center; gap:12px; margin:4px 0 12px; color:var(--text-light); font-size:13px; }
.divider::before,.divider::after { content:''; flex:1; height:1px; background:var(--border); }

.google-btn {
    width:100%; padding:13px; background:white; color:var(--text-dark);
    border:1.5px solid var(--border); border-radius:10px; font-size:15px;
    font-weight:600; cursor:pointer; transition:0.2s; font-family:inherit;
    display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:12px;
}

.google-btn:hover { background:#f4f6f9; }

/* ===== PRODUCT DETAILS ===== */
.product-details {
    max-width: 1000px;
    margin: 28px auto;
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ===== SUCCESS PAGE ===== */
.success-wrapper {
    min-height: calc(100vh - 64px);
    display:flex; align-items:center; justify-content:center;
    padding:20px;
    background: linear-gradient(135deg, #f4f6f9, #eef1f1);
}

.success-card {
    background:white; border-radius:20px; padding:44px 36px;
    max-width:560px; width:100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align:center;
}

.success-icon { font-size:64px; margin-bottom:16px; animation:bounceIn 0.6s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes bounceIn { from{opacity:0;transform:scale(0.5)} to{opacity:1;transform:scale(1)} }
.success-card h1 { font-size:26px; font-weight:800; color:var(--success); margin-bottom:8px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width:7px; height:7px; }
::-webkit-scrollbar-track { background:#f1f1f1; }
::-webkit-scrollbar-thumb { background:#ccc; border-radius:10px; }
::-webkit-scrollbar-thumb:hover { background:#aaa; }

/* ===== RADIO / LABELS ===== */
input[type="radio"] { width:18px; height:18px; accent-color:var(--accent); cursor:pointer; margin-right:8px; }
label { display:flex; align-items:center; gap:8px; font-size:15px; color:var(--text-dark); cursor:pointer; padding:10px 0; font-weight:500; }

/* ===== BADGES / MISC ===== */
.page-empty-state { text-align:center; padding:60px 20px; color: var(--text-light); }
.page-empty-state .empty-icon { font-size: 48px; margin-bottom: 14px; }

/* ===== ADMIN / SELLER SHARED WRAPPERS ===== */
.orders-container {
    max-width: 900px;
    margin: 28px auto;
    padding: 0 16px 40px;
}
.orders-container h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    header { height:auto; flex-wrap:wrap; padding:10px 12px; gap:8px; }
    .logo a, .logo h1 { font-size:20px; }
    .search-wrap { order:3; width:100%; max-width:100%; flex:none; }
    .header-actions { order:2; gap:4px; }
    .header-icon-btn { min-width:44px; padding:4px 6px; }
    .hero-banner { height: 220px; }
    .products { grid-template-columns:1fr 1fr; gap:10px; }
    .card-img-wrap { height:150px; }
    .features-section { grid-template-columns:1fr 1fr; }
    .feature-box { border-bottom:1px solid var(--border); }
    .footer-top { grid-template-columns:1fr; gap:24px; padding:32px 20px; }
    .footer-bottom { padding:16px 20px; flex-direction:column; text-align:center; }
    .section { padding:20px 12px; }
    .member-bar { font-size:13px; }
    .offers-bar { justify-content:flex-start; }
    .offer-item { padding:8px 16px; font-size:12px; }
    .cat-icon { width:90px; height:90px; font-size:36px; }

    .shop-layout { grid-template-columns: 1fr; }
    .filters-sidebar {
        position: static;
        display: none;
    }
    .filters-sidebar.open { display: block; }
    .mobile-filter-toggle {
        display: block;
        width: 100%;
        padding: 12px;
        margin-bottom: 14px;
        background: white;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
    }
}

@media (max-width: 480px) {
    .products { grid-template-columns:1fr 1fr; gap:8px; }
    .card-img-wrap { height:130px; }
    .features-section { grid-template-columns:1fr 1fr; }
    .hero-banner { height: 180px; }
}
/* ===== ORDER TRACKING TIMELINE ===== */
.tracking-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 20px 0;
    padding: 0 4px;
}
.tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    text-align: center;
}
.tl-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e8ecf0;
    border: 3px solid #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    z-index: 2;
    transition: 0.3s;
}
.tl-step.done .tl-dot,
.tl-step.current .tl-dot {
    background: #e94560;
    border-color: #e94560;
}
.tl-step.current .tl-dot {
    box-shadow: 0 0 0 4px rgba(233,69,96,0.2);
}
.tl-line {
    position: absolute;
    top: 13px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #e8ecf0;
    z-index: 1;
}
.tl-step:last-child .tl-line { display: none; }
.tl-line.done { background: #e94560; }
.tl-label {
    font-size: 12px;
    font-weight: 700;
    color: #555e6d;
    margin-top: 8px;
}
.tl-step.done .tl-label,
.tl-step.current .tl-label { color: #1a1a2e; }
.tl-date {
    font-size: 11px;
    color: #8a93a2;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}
.tl-cancelled {
    text-align: center;
    padding: 10px;
    background: #fff0f3;
    color: #e94560;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    margin: 20px 0;
}
@media (max-width: 480px) {
    .tl-label { font-size: 10px; }
    .tl-date { font-size: 9px; }
}
