/* ═══════════════════════════════════════════════════════════
   LUXESHOP — Premium Ecommerce CSS  v2.0
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --accent:       #e94560;
  --accent-hover: #c73652;
  --accent-light: rgba(233,69,96,.08);
  --bg:           #f8f8f8;
  --surface:      #ffffff;
  --surface-2:    #f1f1f1;
  --border:       #e8e8e8;
  --text:         #1a1a2e;
  --text-muted:   #6b7280;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.14);
  --radius:       16px;
  --transition:   .25s cubic-bezier(.4,0,.2,1);
  --footer-bg:    #1a1a2e;
  --footer-text:  rgba(255,255,255,.7);
  --footer-border:rgba(255,255,255,.1);
}

[data-theme="dark"] {
  --bg:        #0f0f1a;
  --surface:   #1a1a2e;
  --surface-2: #16213e;
  --border:    #2d2d4e;
  --text:      #f0f0ff;
  --text-muted:#8888aa;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,.4);
  --footer-bg:    #0a0a15;
  --footer-text:  rgba(255,255,255,.65);
  --footer-border:rgba(255,255,255,.07);
}

/* ── Reset ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--font-body); background:var(--bg); color:var(--text); line-height:1.6; -webkit-font-smoothing:antialiased; transition:background var(--transition),color var(--transition); }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width:1280px; margin:0 auto; padding:0 1.5rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  background:var(--accent); color:#fff; border:2px solid var(--accent);
  padding:.65rem 1.5rem; border-radius:12px; font-size:.9rem; font-weight:600;
  cursor:pointer; transition:all var(--transition); white-space:nowrap; text-decoration:none;
}
.btn-primary:hover { background:var(--accent-hover); border-color:var(--accent-hover); transform:translateY(-1px); box-shadow:0 6px 20px rgba(233,69,96,.35); color:#fff; }
.btn-primary:active { transform:translateY(0); }

.btn-outline {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  background:transparent; color:var(--text); border:2px solid var(--border);
  padding:.65rem 1.5rem; border-radius:12px; font-size:.9rem; font-weight:600;
  cursor:pointer; transition:all var(--transition); white-space:nowrap; text-decoration:none;
}
.btn-outline:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-light); }

/* ── Announcement ───────────────────────────────────────── */
.announcement-bar { background:var(--text); color:#fff; padding:.55rem 1.5rem; font-size:.8rem; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
[data-theme="dark"] .announcement-bar { background:#0a0a15; }
.announcement-bar strong { color:var(--accent); }
.announcement-close { position:absolute; right:1rem; top:50%; transform:translateY(-50%); background:none; border:none; color:rgba(255,255,255,.7); cursor:pointer; font-size:1rem; }
.announcement-close:hover { color:#fff; }

/* ── Header ─────────────────────────────────────────────── */
.site-header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,.92); backdrop-filter:blur(20px); border-bottom:1px solid var(--border); transition:box-shadow var(--transition),background var(--transition); }
[data-theme="dark"] .site-header { background:rgba(26,26,46,.92); }
.site-header.scrolled { box-shadow:var(--shadow-md); }
.header-inner { display:flex; align-items:center; gap:1.5rem; max-width:1280px; margin:0 auto; padding:0 1.5rem; height:70px; }
.site-logo { display:flex; align-items:center; gap:.5rem; flex-shrink:0; }
.logo-icon { width:36px; height:36px; background:var(--accent); border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.1rem; }
.logo-text { font-family:var(--font-display); font-size:1.4rem; font-weight:700; color:var(--text); }
.logo-text em { color:var(--accent); font-style:normal; }

/* Nav */
.main-nav { display:flex; align-items:center; gap:.25rem; }
.nav-item { position:relative; }
.nav-link { display:flex; align-items:center; gap:.3rem; padding:.5rem .85rem; border-radius:8px; font-size:.875rem; font-weight:500; color:var(--text-muted); transition:all var(--transition); cursor:pointer; background:none; border:none; font-family:inherit; }
.nav-link:hover,.nav-link.active { color:var(--accent); background:var(--accent-light); }

/* Mega menu */
.mega-menu { position:absolute; top:calc(100% + .5rem); left:-6rem; width:480px; background:var(--surface); border-radius:var(--radius); box-shadow:var(--shadow-lg); border:1px solid var(--border); padding:1.25rem; display:grid; grid-template-columns:1fr 1fr; gap:.5rem; opacity:0; visibility:hidden; transform:translateY(-8px); transition:all var(--transition); pointer-events:none; }
.nav-item:hover .mega-menu { opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; }
.mega-cat { display:flex; align-items:center; gap:.75rem; padding:.65rem .875rem; border-radius:10px; transition:background var(--transition); text-decoration:none; color:var(--text); }
.mega-cat:hover { background:var(--accent-light); color:var(--accent); }
.mega-cat-icon { width:38px; height:38px; border-radius:10px; background:var(--accent-light); display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--accent); flex-shrink:0; }
.mega-cat-name { font-weight:600; font-size:.85rem; }
.mega-cat-count { font-size:.75rem; color:var(--text-muted); }

/* Search */
.header-search { flex:1; max-width:440px; position:relative; }
.header-search input { width:100%; padding:.6rem 1rem .6rem 2.5rem; border:1.5px solid var(--border); border-radius:50px; background:var(--surface-2); color:var(--text); font-size:.875rem; transition:all var(--transition); }
.header-search input:focus { outline:none; border-color:var(--accent); background:var(--surface); box-shadow:0 0 0 3px var(--accent-light); }
.header-search .search-icon { position:absolute; left:.875rem; top:50%; transform:translateY(-50%); color:var(--text-muted); font-size:.9rem; pointer-events:none; }

/* Header actions */
.header-actions { display:flex; align-items:center; gap:.5rem; margin-left:auto; }
.header-btn { position:relative; width:40px; height:40px; border-radius:10px; background:none; border:1.5px solid var(--border); color:var(--text); cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:1rem; transition:all var(--transition); text-decoration:none; }
.header-btn:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-light); }
.cart-badge { position:absolute; top:-6px; right:-6px; background:var(--accent); color:#fff; width:18px; height:18px; border-radius:50%; font-size:.65rem; font-weight:700; display:flex; align-items:center; justify-content:center; }
.mobile-menu-btn { display:none; width:40px; height:40px; border:1.5px solid var(--border); border-radius:10px; background:none; cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:5px; }
.mobile-menu-btn span { width:20px; height:2px; background:var(--text); border-radius:2px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero-section { position:relative; overflow:hidden; }
.swiper-hero { height:clamp(380px,68vh,660px); }
.hero-slide { position:relative; display:flex; align-items:center; background:linear-gradient(135deg,#1a1a2e 0%,#16213e 60%,#0f3460 100%); overflow:hidden; }
.hero-slide-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.28; }
.hero-content { position:relative; z-index:1; padding:3rem 6%; max-width:620px; }
.hero-badge { display:inline-block; background:var(--accent); color:#fff; padding:.3rem .85rem; border-radius:6px; font-size:.75rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:1.25rem; animation:fadeInDown .6s ease; }
.hero-title { font-family:var(--font-display); font-size:clamp(1.9rem,5vw,3.4rem); font-weight:700; color:#fff; line-height:1.15; margin-bottom:1rem; animation:fadeInUp .7s ease .1s both; }
.hero-title span { color:var(--accent); }
.hero-desc { color:rgba(255,255,255,.75); font-size:1rem; margin-bottom:2rem; max-width:440px; animation:fadeInUp .7s ease .2s both; }
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; animation:fadeInUp .7s ease .3s both; }
.swiper-pagination-bullet { background:#fff !important; }
.swiper-pagination-bullet-active { background:var(--accent) !important; }
.swiper-button-next,.swiper-button-prev { color:#fff !important; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(24px)}  to{opacity:1;transform:none} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:none} }
@keyframes scaleIn    { from{opacity:0;transform:scale(.92)}        to{opacity:1;transform:none} }
@keyframes float      { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes shimmer    { from{background-position:200% 0} to{background-position:-200% 0} }
@keyframes spin       { to{transform:rotate(360deg)} }
@keyframes slideInRight { from{transform:translateX(110%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes fadeOut      { from{opacity:1} to{opacity:0;transform:translateX(110%)} }
@keyframes countUp      { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
@keyframes pulse        { 0%,100%{opacity:1} 50%{opacity:.5} }

/* Scroll reveal */
[data-animate] { opacity:0; transform:translateY(24px); transition:opacity .6s ease,transform .6s ease; }
[data-animate].visible { opacity:1; transform:none; }
[data-animate="left"]  { transform:translateX(-24px); }
[data-animate="right"] { transform:translateX(24px); }
[data-animate="scale"] { transform:scale(.95); }
[data-animate="left"].visible,[data-animate="right"].visible,[data-animate="scale"].visible { transform:none; }

/* Staggered children */
[data-stagger] > * { opacity:0; transform:translateY(20px); transition:opacity .5s ease,transform .5s ease; }
[data-stagger].visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
[data-stagger].visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s; }
[data-stagger].visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.19s; }
[data-stagger].visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s; }
[data-stagger].visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.33s; }
[data-stagger].visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s; }
[data-stagger].visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:.47s; }
[data-stagger].visible > *:nth-child(8) { opacity:1; transform:none; transition-delay:.54s; }

/* ── Section Headers ────────────────────────────────────── */
.section-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:2rem; }
.section-title { font-family:var(--font-display); font-size:clamp(1.5rem,3vw,2rem); font-weight:700; }
.section-title span { color:var(--accent); }
.section-subtitle { color:var(--text-muted); font-size:.9rem; margin-top:.25rem; }
.section-link { font-size:.875rem; color:var(--accent); font-weight:600; display:flex; align-items:center; gap:.3rem; white-space:nowrap; }
.section-link:hover { text-decoration:underline; }

/* ── Product Card ───────────────────────────────────────── */
.product-card { background:var(--surface); border-radius:var(--radius); border:1px solid var(--border); overflow:hidden; transition:all var(--transition); position:relative; }
.product-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.product-card-img { aspect-ratio:1; overflow:hidden; background:var(--surface-2); position:relative; }
.product-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.product-card:hover .product-card-img img { transform:scale(1.07); }
.product-card-badges { position:absolute; top:.75rem; left:.75rem; display:flex; flex-direction:column; gap:.3rem; }
.badge { padding:.2rem .55rem; border-radius:6px; font-size:.68rem; font-weight:700; }
.badge-new  { background:#10b981; color:#fff; }
.badge-sale { background:var(--accent); color:#fff; }
.badge-hot  { background:#f59e0b; color:#fff; }
.product-card-actions { position:absolute; top:.75rem; right:.75rem; display:flex; flex-direction:column; gap:.4rem; opacity:0; transform:translateX(8px); transition:all var(--transition); }
.product-card:hover .product-card-actions { opacity:1; transform:translateX(0); }
.card-action-btn { width:34px; height:34px; border-radius:8px; border:none; background:var(--surface); color:var(--text); cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:.85rem; box-shadow:var(--shadow-sm); transition:all var(--transition); }
.card-action-btn:hover { background:var(--accent); color:#fff; }
.card-action-btn.wishlisted { background:var(--accent); color:#fff; }
.product-card-body { padding:1rem; }
.product-card-category { font-size:.72rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.05em; margin-bottom:.3rem; }
.product-card-name { font-weight:600; font-size:.9rem; margin-bottom:.5rem; line-height:1.35; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; color:var(--text); text-decoration:none; }
.product-card-rating { display:flex; align-items:center; gap:.3rem; margin-bottom:.6rem; }
.stars { color:#f59e0b; font-size:.8rem; }
.rating-count { font-size:.75rem; color:var(--text-muted); }
.product-card-price { display:flex; align-items:center; gap:.5rem; }
.price-current { font-weight:700; font-size:1rem; color:var(--accent); }
.price-original { font-size:.82rem; color:var(--text-muted); text-decoration:line-through; }
.product-card-footer { padding:0 1rem 1rem; }
.add-to-cart-btn { width:100%; padding:.6rem; border-radius:10px; background:transparent; border:1.5px solid var(--border); color:var(--text); font-size:.85rem; font-weight:600; cursor:pointer; transition:all var(--transition); display:flex; align-items:center; justify-content:center; gap:.5rem; font-family:inherit; }
.add-to-cart-btn:hover { background:var(--accent); border-color:var(--accent); color:#fff; }
.out-of-stock-btn { background:var(--surface-2); color:var(--text-muted); cursor:not-allowed; }

/* ── Products Grid ──────────────────────────────────────── */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:1.25rem; }

/* ── Categories Grid ────────────────────────────────────── */
.categories-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:1rem; }
.category-card { background:var(--surface); border-radius:var(--radius); border:1px solid var(--border); padding:1.5rem 1rem; text-align:center; text-decoration:none; color:var(--text); transition:all var(--transition); cursor:pointer; }
.category-card:hover { border-color:var(--accent); background:var(--accent-light); transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.category-card-icon { width:56px; height:56px; border-radius:14px; background:var(--accent-light); color:var(--accent); font-size:1.4rem; display:flex; align-items:center; justify-content:center; margin:0 auto .875rem; transition:all var(--transition); }
.category-card:hover .category-card-icon { background:var(--accent); color:#fff; }
.category-card-name { font-weight:700; font-size:.875rem; margin-bottom:.2rem; }
.category-card-count { font-size:.75rem; color:var(--text-muted); }

/* ── Promo Banners ──────────────────────────────────────── */
.promo-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.promo-card { border-radius:var(--radius); padding:2rem; position:relative; overflow:hidden; min-height:160px; display:flex; flex-direction:column; justify-content:flex-end; }
.promo-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.3; }
.promo-card-content { position:relative; z-index:1; }
.promo-card h3 { color:#fff; font-family:var(--font-display); font-size:1.4rem; font-weight:700; margin-bottom:.3rem; }
.promo-card p { color:rgba(255,255,255,.75); font-size:.85rem; margin-bottom:.875rem; }

/* ── Bestsellers Marquee ────────────────────────────────── */
.marquee-wrap { overflow:hidden; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:.6rem 0; }
.marquee-track { display:flex; gap:2.5rem; animation:marquee 28s linear infinite; white-space:nowrap; width:max-content; }
.marquee-track:hover { animation-play-state:paused; }
.marquee-item { display:flex; align-items:center; gap:.5rem; font-size:.82rem; font-weight:500; color:var(--text-muted); flex-shrink:0; }
.marquee-item i { color:var(--accent); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Stats ──────────────────────────────────────────────── */
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.stat-card { background:var(--surface); border-radius:var(--radius); padding:1.75rem; text-align:center; border:1px solid var(--border); transition:all var(--transition); }
.stat-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.stat-num { font-family:var(--font-display); font-size:2.25rem; font-weight:700; color:var(--accent); line-height:1; }
.stat-label { font-size:.875rem; color:var(--text-muted); margin-top:.5rem; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card { background:var(--surface); border-radius:var(--radius); padding:1.75rem; border:1px solid var(--border); transition:all var(--transition); }
.testimonial-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.testimonial-stars { color:#f59e0b; font-size:1rem; margin-bottom:.875rem; }
.testimonial-text { color:var(--text-muted); font-style:italic; margin-bottom:1.25rem; line-height:1.7; }
.testimonial-author { display:flex; align-items:center; gap:.75rem; }
.author-avatar { width:42px; height:42px; border-radius:50%; background:var(--accent); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; flex-shrink:0; }
.author-name { font-weight:600; font-size:.875rem; }
.author-loc { font-size:.75rem; color:var(--text-muted); }

/* ── Newsletter ─────────────────────────────────────────── */
.newsletter-section { background:linear-gradient(135deg,#1a1a2e 0%,#0f3460 100%); border-radius:var(--radius); padding:3rem 2rem; text-align:center; }
.newsletter-section h2 { font-family:var(--font-display); color:#fff; font-size:1.75rem; margin-bottom:.75rem; }
.newsletter-section p { color:rgba(255,255,255,.7); margin-bottom:1.5rem; }
.newsletter-form { display:flex; max-width:440px; margin:0 auto; gap:.5rem; }
.newsletter-form input { flex:1; padding:.7rem 1rem; border-radius:10px; border:none; background:rgba(255,255,255,.12); color:#fff; font-size:.875rem; }
.newsletter-form input::placeholder { color:rgba(255,255,255,.5); }
.newsletter-form input:focus { outline:2px solid var(--accent); }

/* ── Toast ──────────────────────────────────────────────── */
#toastContainer { position:fixed; bottom:1.5rem; right:1.5rem; z-index:9999; display:flex; flex-direction:column; gap:.5rem; }
.toast { display:flex; align-items:center; gap:.75rem; padding:.875rem 1.25rem; border-radius:12px; min-width:280px; max-width:360px; font-size:.875rem; font-weight:500; box-shadow:var(--shadow-lg); animation:slideInRight .3s ease, fadeOut .3s ease 2.7s forwards; backdrop-filter:blur(10px); }
.toast-success { background:#d1fae5; color:#065f46; border-left:4px solid #10b981; }
.toast-error   { background:#fee2e2; color:#7f1d1d; border-left:4px solid #ef4444; }
.toast-warning { background:#fef3c7; color:#78350f; border-left:4px solid #f59e0b; }
.toast-info    { background:#dbeafe; color:#1e3a8a; border-left:4px solid #3b82f6; }

/* ── Skeleton ───────────────────────────────────────────── */
.skeleton { background:linear-gradient(90deg,var(--surface-2) 25%,var(--border) 50%,var(--surface-2) 75%); background-size:200% 100%; animation:shimmer 1.5s infinite; border-radius:8px; }

/* ── Spinner ────────────────────────────────────────────── */
.spinner { width:18px; height:18px; border:2.5px solid rgba(255,255,255,.3); border-top-color:#fff; border-radius:50%; animation:spin .7s linear infinite; display:inline-block; }

/* ── Page Sections ──────────────────────────────────────── */
.page-section { padding:4rem 0; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb { display:flex; align-items:center; gap:.5rem; list-style:none; font-size:.85rem; color:var(--text-muted); }
.breadcrumb li+li::before { content:'/'; margin-right:.5rem; }
.breadcrumb a { color:var(--accent); }

/* ── Pagination ─────────────────────────────────────────── */
.pagination { display:flex; gap:.4rem; flex-wrap:wrap; justify-content:center; margin-top:2.5rem; }
.page-btn { width:38px; height:38px; border-radius:10px; border:1.5px solid var(--border); background:var(--surface); color:var(--text); font-size:.875rem; cursor:pointer; display:flex; align-items:center; justify-content:center; text-decoration:none; transition:all var(--transition); }
.page-btn:hover,.page-btn.active { background:var(--accent); color:#fff; border-color:var(--accent); }

/* ── Icon Button (Admin) ────────────────────────────────── */
.icon-btn { width:32px; height:32px; border-radius:8px; border:1.5px solid var(--border); background:none; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:.85rem; transition:all var(--transition); text-decoration:none; }
.icon-btn:hover { border-color:var(--accent); color:var(--accent); }
.icon-btn.danger:hover { border-color:#ef4444; color:#ef4444; }

/* ── Form Controls ──────────────────────────────────────── */
.form-group { margin-bottom:1rem; }
.form-label { display:block; font-size:.8rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:.04em; margin-bottom:.4rem; }
.form-control { width:100%; padding:.65rem .875rem; border-radius:10px; border:1.5px solid var(--border); background:var(--bg); color:var(--text); font-size:.9rem; transition:border-color var(--transition); font-family:var(--font-body); }
.form-control:focus { outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-light); }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* ── FOOTER (dark-theme safe) ───────────────────────────── */
.site-footer { background:var(--footer-bg); color:var(--footer-text); margin-top:4rem; }
.footer-main { padding:3.5rem 0; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:2rem; }
.footer-brand .logo-text { color:#fff; font-size:1.4rem; }
.footer-brand p { margin-top:.75rem; font-size:.875rem; max-width:260px; line-height:1.7; color:var(--footer-text); }
.footer-col h4 { color:#fff; font-size:.85rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:1.25rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.footer-col ul a { font-size:.875rem; transition:color var(--transition); color:var(--footer-text); }
.footer-col ul a:hover { color:var(--accent); }
.footer-bottom { border-top:1px solid var(--footer-border); padding:1.25rem 0; display:flex; justify-content:space-between; align-items:center; font-size:.8rem; flex-wrap:wrap; gap:.5rem; color:var(--footer-text); }
.social-links { display:flex; gap:.75rem; margin-top:1.25rem; }
.social-link { width:36px; height:36px; border-radius:8px; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; color:var(--footer-text); font-size:.9rem; transition:all var(--transition); }
.social-link:hover { border-color:var(--accent); color:var(--accent); }

/* ── Admin ──────────────────────────────────────────────── */
.admin-stat-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.25rem; margin-bottom:2rem; }
.admin-stat-card { background:var(--surface); border-radius:var(--radius); padding:1.5rem; border:1px solid var(--border); display:flex; align-items:center; gap:1rem; }
.admin-stat-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.admin-stat-value { font-size:1.6rem; font-weight:700; line-height:1; }
.admin-stat-label { font-size:.8rem; color:var(--text-muted); margin-top:.25rem; }
.status-badge { padding:.25rem .65rem; border-radius:6px; font-size:.72rem; font-weight:600; display:inline-block; }

/* ── Responsive ─────────────────────────────────────────── */
@media(max-width:1024px){
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-main { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  .main-nav,.header-search { display:none; }
  .mobile-menu-btn { display:flex; }
  .products-grid { grid-template-columns:repeat(2,1fr); gap:.75rem; }
  .categories-grid { grid-template-columns:repeat(3,1fr); }
  .promo-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-main { grid-template-columns:1fr; }
  .swiper-hero { height:320px; }
  .form-grid-2 { grid-template-columns:1fr; }
}
@media(max-width:480px){
  .products-grid { grid-template-columns:1fr 1fr; gap:.5rem; }
  .categories-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:1fr; }
  .newsletter-form { flex-direction:column; }
  .hero-content { padding:2rem 5%; }
}
