/* ═══════════════════════════════════════════════════════════════
   VM CLOTHES v3.0 — Premium CSS
   Maya-inspired animations + scroll effects + mobile-first
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════════════ */
:root {
  /* Colors */
  --bg:           #ffffff;
  --bg2:          #fafaf8;
  --bg3:          #f4f2ee;
  --surface:      #ffffff;
  --surface2:     #f8f7f5;
  --border:       #e8e3dc;
  --border2:      #d4cec5;
  --text:         #1a1a1a;
  --text2:        #5c5753;
  --text3:        #9c9590;
  --text4:        #c4c0b8;
  --accent:       #1a1a2e;
  --accent2:      #2d2d4a;
  --gold:         #b8935a;
  --gold2:        #d4a96a;
  --gold3:        #e8c285;
  --gold-light:   rgba(184,147,90,.12);
  --red:          #e94560;
  --red2:         #ff6b6b;
  --red-light:    rgba(233,69,96,.1);
  --green:        #2d7a4f;
  --green2:       #3a9c65;
  --green-light:  rgba(45,122,79,.1);
  --blue:         #3b82f6;
  --purple:       #8b5cf6;
  --orange:       #f97316;

  /* Typography */
  --font:         'DM Sans', 'Inter', -apple-system, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-mono:    'Courier New', monospace;

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px;
  --space-4: 16px; --space-5: 20px; --space-6: 24px;
  --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-20: 80px;

  /* Radius */
  --r-sm: 8px; --r: 12px; --r-md: 16px; --r-lg: 20px;
  --r-xl: 28px; --r-2xl: 40px; --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.1);
  --shadow-md: 0 8px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.14);
  --shadow-xl: 0 24px 80px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 30px rgba(184,147,90,.3);
  --shadow-accent: 0 8px 30px rgba(26,26,46,.25);

  /* Transitions */
  --t-fast:  150ms cubic-bezier(0.4,0,0.2,1);
  --t:       250ms cubic-bezier(0.4,0,0.2,1);
  --t-slow:  400ms cubic-bezier(0.4,0,0.2,1);
  --t-spring: 600ms cubic-bezier(0.34,1.56,0.64,1);

  /* Layout */
  --max-w: 1440px;
  --header-h: 68px;
  --sidebar-w: 260px;

  /* Safe area */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ══════════════════════════════════════════════════
   RESET + BASE
══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }
[x-cloak] { display: none !important; }

/* ══════════════════════════════════════════════════
   SCROLL ANIMATIONS (Maya-style)
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Fallback: if JS fails, show after 1.5s */
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }
.reveal { animation: revealFallback 0s 1.5s forwards; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(30px); }
.stagger.visible > *:nth-child(1) { animation: fadeUp 0.6s 0.05s forwards ease; }
.stagger.visible > *:nth-child(2) { animation: fadeUp 0.6s 0.15s forwards ease; }
.stagger.visible > *:nth-child(3) { animation: fadeUp 0.6s 0.25s forwards ease; }
.stagger.visible > *:nth-child(4) { animation: fadeUp 0.6s 0.35s forwards ease; }
.stagger.visible > *:nth-child(5) { animation: fadeUp 0.6s 0.45s forwards ease; }
.stagger.visible > *:nth-child(6) { animation: fadeUp 0.6s 0.55s forwards ease; }
.stagger.visible > *:nth-child(7) { animation: fadeUp 0.6s 0.65s forwards ease; }
.stagger.visible > *:nth-child(8) { animation: fadeUp 0.6s 0.75s forwards ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14%     { transform: scale(1.3); }
  28%     { transform: scale(1); }
  42%     { transform: scale(1.3); }
  70%     { transform: scale(1); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Page transition */
.page-enter { animation: fadeIn 0.4s ease forwards; }

/* ══════════════════════════════════════════════════
   SKELETON LOADER
══════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, #f0ede8 25%, #e8e4de 50%, #f0ede8 75%);
  background-size: 2000px 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════ */
.ann-bar {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 10px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ann-track {
  display: inline-flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.ann-bar:hover .ann-track { animation-play-state: paused; }
.ann-dot { color: var(--gold2); margin: 0 8px; }
.ann-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  cursor: pointer; opacity: 0.6; font-size: 18px; background: none; border: none;
  color: #fff; padding: 4px 8px; line-height: 1; transition: opacity var(--t-fast);
}
.ann-close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.site-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 900;
  transition: box-shadow var(--t), background var(--t);
  height: var(--header-h);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; height: 100%;
}
.header-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.header-logo:hover { opacity: 0.85; }
.header-logo img { height: 38px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--font-serif); font-size: 21px; font-weight: 800;
  letter-spacing: 1.5px; color: var(--accent);
}
/* Desktop Nav */
.header-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.header-nav > a {
  padding: 8px 14px; font-size: 13.5px; font-weight: 500;
  color: var(--text2); border-radius: 10px;
  transition: color var(--t-fast), background var(--t-fast);
  position: relative; white-space: nowrap;
}
.header-nav > a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s ease;
}
.header-nav > a:hover, .header-nav > a.active { color: var(--accent); }
.header-nav > a:hover::after, .header-nav > a.active::after { transform: scaleX(1); }
.nav-sale-link { color: var(--red) !important; font-weight: 700 !important; }
/* Mega Menu */
.has-mega { position: relative; }
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl); padding: 24px; min-width: 560px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.mega-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 12px; cursor: pointer; transition: background var(--t-fast);
}
.mega-item:hover { background: var(--bg2); }
.mega-img {
  width: 46px; height: 56px; object-fit: cover; border-radius: 8px;
  background: var(--bg3); flex-shrink: 0;
}
.mega-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.mega-sub  { font-size: 11px; color: var(--text3); margin-top: 2px; }
/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.h-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: all var(--t-fast); position: relative; font-size: 18px;
}
.h-btn:hover { background: var(--bg3); color: var(--accent); }
.h-badge {
  position: absolute; top: 3px; right: 3px;
  background: var(--red); color: #fff;
  min-width: 17px; height: 17px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; padding: 0 3px;
  transition: transform var(--t-spring);
}
.h-badge.bump { animation: pulse 0.3s ease; }
.h-search-wrap { flex: 1; max-width: 320px; position: relative; }
.h-search {
  width: 100%; padding: 10px 40px 10px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r-full);
  font-size: 13.5px; background: var(--bg2); color: var(--text);
  transition: all var(--t);
}
.h-search:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(26,26,46,0.06);
}
.h-search-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text3); pointer-events: none; font-size: 15px;
}
/* Search Dropdown */
.search-drop {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); z-index: 1000; overflow: hidden;
  max-height: 420px; overflow-y: auto;
}
.search-section-head {
  padding: 10px 16px 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text3); background: var(--bg2);
}
.search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; cursor: pointer;
  transition: background var(--t-fast); border-bottom: 1px solid var(--border);
}
.search-item:last-child { border-bottom: none; }
.search-item:hover { background: var(--bg2); }
.search-img {
  width: 46px; height: 56px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0; background: var(--bg3);
}
.search-name { font-size: 13px; font-weight: 600; line-height: 1.3; }
.search-price { font-size: 13px; font-weight: 700; color: var(--gold); margin-top: 2px; }
.search-see-all {
  padding: 13px 16px; text-align: center; font-size: 13px;
  font-weight: 600; color: var(--accent); cursor: pointer;
  background: var(--bg2); border-top: 1px solid var(--border);
  transition: background var(--t-fast);
}
.search-see-all:hover { background: var(--border); }
/* Menu button mobile */
.h-menu-btn {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center; color: var(--text2);
  cursor: pointer; flex-direction: column; gap: 5px;
}
.h-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: all 0.3s ease;
}
.h-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.h-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.h-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════════ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1000; opacity: 0; pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(4px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0; width: 300px;
  background: #fff; z-index: 1001;
  transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  padding: 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.mobile-nav-logo { font-family: var(--font-serif); font-size: 19px; font-weight: 800; color: var(--accent); }
.mobile-nav-close { font-size: 24px; color: var(--text2); cursor: pointer; }
.mobile-nav-user {
  padding: 16px 20px; background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
}
.mobile-nav-user-name  { font-size: 15px; font-weight: 700; }
.mobile-nav-user-email { font-size: 12px; opacity: 0.7; margin-top: 2px; }
.mobile-nav-links { padding: 8px 0; flex: 1; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 12px; padding: 13px 20px;
  font-size: 14px; font-weight: 500; color: var(--text);
  border-left: 3px solid transparent; transition: all var(--t-fast);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  background: var(--bg2); color: var(--accent); border-left-color: var(--gold);
}
.mobile-nav-icon { font-size: 18px; width: 22px; text-align: center; }

/* ══════════════════════════════════════════════════
   BOTTOM NAV (Mobile)
══════════════════════════════════════════════════ */
.bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); z-index: 800;
  padding-bottom: var(--safe-bottom);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.bottom-nav-inner { display: flex; }
.bn-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 10px 4px; font-size: 10px;
  font-weight: 600; color: var(--text3); cursor: pointer;
  transition: color var(--t-fast); gap: 3px; position: relative;
}
.bn-item.active { color: var(--accent); }
.bn-item.active .bn-icon-wrap::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px; background: var(--accent); border-radius: 0 0 3px 3px;
}
.bn-icon { font-size: 22px; line-height: 1; }
.bn-icon-wrap { position: relative; }
.bn-badge {
  position: absolute; top: -4px; right: -8px;
  background: var(--red); color: #fff; min-width: 16px; height: 16px;
  border-radius: 50%; font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; padding: 0 2px;
}

/* ══════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; background: var(--accent); }
.hero-track { display: flex; height: 620px; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); }
.hero-slide {
  min-width: 100%; position: relative;
  display: flex; align-items: center; flex-shrink: 0;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(26,26,46,.90) 0%, rgba(26,26,46,.55) 50%, rgba(26,26,46,.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 64px; max-width: 680px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(184,147,90,.2); border: 1px solid rgba(184,147,90,.45);
  color: var(--gold3); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-full);
  margin-bottom: 20px;
  animation: slideInLeft 0.7s 0.2s both ease;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(40px, 6vw, 76px);
  font-weight: 900; color: #fff; line-height: 1.04;
  margin-bottom: 18px; letter-spacing: -1px;
  animation: slideInLeft 0.7s 0.35s both ease;
}
.hero-title em { font-style: italic; color: var(--gold2); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
  animation: slideInLeft 0.7s 0.5s both ease;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: slideInLeft 0.7s 0.65s both ease;
}
.btn-hero-primary {
  background: var(--gold); color: #fff; padding: 15px 32px;
  border-radius: var(--r-full); font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(184,147,90,.4);
}
.btn-hero-primary:hover {
  background: var(--gold2); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184,147,90,.5);
}
.btn-hero-secondary {
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.3); color: #fff;
  padding: 15px 28px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 600; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
/* Hero controls */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 50px; height: 50px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; cursor: pointer;
  transition: all var(--t);
}
.hero-arrow:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.1); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-dots { position: absolute; bottom: 32px; left: 64px; display: flex; gap: 8px; z-index: 10; }
.hero-dot {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.3); cursor: pointer; transition: all 0.4s ease;
}
.hero-dot.active { width: 48px; background: var(--gold); }
/* Hero stats */
.hero-stats {
  position: absolute; bottom: 28px; right: 64px;
  display: flex; gap: 32px; z-index: 10;
}
.hero-stat {
  text-align: right;
  animation: fadeIn 0.7s 0.8s both;
}
.hero-stat-val {
  font-family: var(--font-serif); font-size: 26px; font-weight: 800; color: #fff;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: 0.5px; }

/* ══════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════ */
.trust-strip {
  background: var(--accent);
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 14px 24px; display: flex;
  align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 28px; color: rgba(255,255,255,.85);
}
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.12); }
.trust-icon { font-size: 22px; }
.trust-title  { font-size: 13px; font-weight: 700; color: #fff; }
.trust-desc   { font-size: 11px; color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════ */
.section  { padding: 72px 24px; }
.section-sm { padding: 48px 24px; }
.section-lg { padding: 96px 24px; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.section-label::before, .section-label::after {
  content: ''; width: 30px; height: 1px; background: var(--gold); opacity: 0.6;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; color: var(--accent);
  line-height: 1.12; letter-spacing: -0.5px;
}
.section-sub {
  font-size: 15px; color: var(--text2); margin-top: 12px;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.view-all-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  padding: 9px 20px; border: 1.5px solid var(--border);
  border-radius: var(--r-full); transition: all var(--t);
  white-space: nowrap;
}
.view-all-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ══════════════════════════════════════════════════
   CATEGORY CARDS
══════════════════════════════════════════════════ */
.cat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; transition: transform 0.2s; cursor: pointer;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-img {
  width: 100%; aspect-ratio: 1; border-radius: var(--r-xl); overflow: hidden;
  background: var(--bg3);
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-img-placeholder { display: flex; align-items: center; justify-content: center; }
.cat-name { font-size: 13px; font-weight: 700; color: var(--text); text-align: center; }

/* ══════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════ */
.product-grid   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-grid-5 { grid-template-columns: repeat(5, 1fr); }
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid-2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: var(--surface); border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-6px);
  border-color: transparent;
}
.product-card-img {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg3);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
/* Product Image 2 on hover */
.product-card-img .img-hover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.5s ease;
}
.product-card:hover .product-card-img .img-hover { opacity: 1; }

/* Badges */
.product-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px; z-index: 2;
}
.badge {
  padding: 4px 10px; border-radius: var(--r-full);
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  text-transform: uppercase; line-height: 1;
}
.badge-new    { background: var(--accent); color: #fff; }
.badge-sale   { background: var(--red);    color: #fff; }
.badge-hot    { background: #ff6b35;       color: #fff; }
.badge-off    { background: var(--green);  color: #fff; }
.badge-flash  { background: linear-gradient(135deg, #f97316, #ef4444); color: #fff; animation: pulse 2s infinite; }
.badge-sold   { background: #64748b;       color: #fff; }

/* Card Actions */
.card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
  opacity: 0; transform: translateX(12px);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.product-card:hover .card-actions { opacity: 1; transform: translateX(0); }
.ca-btn {
  width: 36px; height: 36px; background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; box-shadow: 0 2px 12px rgba(0,0,0,.12);
  cursor: pointer; transition: all var(--t-fast); border: none;
}
.ca-btn:hover { background: var(--accent); color: #fff; transform: scale(1.1); }
.ca-btn.wishlisted { color: var(--red); }
.ca-btn.wishlisted:hover { background: var(--red); color: #fff; }

/* Quick Add to Cart bar */
.quick-atc {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: #fff;
  padding: 12px 16px; text-align: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  transform: translateY(100%); transition: transform 0.3s ease;
  cursor: pointer; z-index: 3;
}
.product-card:hover .quick-atc { transform: translateY(0); }
.quick-atc:hover { background: var(--gold); }

/* Card Body */
.product-card-body { padding: 14px 16px 16px; }
.pc-category { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 5px; }
.pc-name {
  font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4;
  margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; min-height: 40px;
}
.pc-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: #f59e0b; font-size: 12px; letter-spacing: -1px; }
.rating-num { font-size: 11px; color: var(--text3); }
.pc-prices { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.price-now  { font-size: 17px; font-weight: 800; color: var(--accent); }
.price-was  { font-size: 13px; color: var(--text3); text-decoration: line-through; }
.price-save { font-size: 11px; font-weight: 700; background: var(--green-light); color: var(--green); padding: 2px 8px; border-radius: var(--r-full); }
.pc-sizes   { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.size-chip  {
  padding: 3px 9px; border-radius: 6px; font-size: 10px; font-weight: 700;
  border: 1.5px solid var(--border); color: var(--text2); cursor: pointer;
  transition: all var(--t-fast);
}
.size-chip:hover, .size-chip.selected {
  border-color: var(--accent); color: var(--accent);
  background: rgba(26,26,46,0.05);
}
.size-chip.oos { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.pc-footer { display: flex; align-items: center; gap: 8px; }
.btn-atc {
  flex: 1; background: var(--accent); color: #fff; padding: 10px 14px;
  border-radius: 10px; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; transition: all var(--t); border: none; letter-spacing: 0.3px;
}
.btn-atc:hover { background: var(--gold); transform: translateY(-1px); }
.btn-atc:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-buy {
  width: 38px; height: 38px; background: var(--bg2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all var(--t-fast);
  border: 1.5px solid var(--border); flex-shrink: 0;
}
.btn-buy:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ══════════════════════════════════════════════════
   PROMO BANNERS
══════════════════════════════════════════════════ */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promo-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  cursor: pointer; min-height: 240px;
}
.promo-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.promo-card:hover .promo-bg { transform: scale(1.06); }
.promo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,.82) 0%, rgba(26,26,46,.2) 70%);
}
.promo-body { position: relative; z-index: 2; padding: 28px 24px; }
.promo-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold2); margin-bottom: 8px; }
.promo-title { font-family: var(--font-serif); font-size: 24px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.promo-desc  { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.btn-promo {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.3); color: #fff;
  padding: 9px 18px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 700; transition: all var(--t);
}
.btn-promo:hover { background: rgba(255,255,255,.28); }

/* ══════════════════════════════════════════════════
   FEATURES GRID
══════════════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  text-align: center; padding: 36px 24px; background: var(--bg2);
  border-radius: var(--r-xl); border: 1px solid var(--border);
  transition: all var(--t);
}
.feature-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.feature-icon { font-size: 46px; margin-bottom: 14px; display: block; }
.feature-title { font-size: 15px; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.feature-desc  { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1100; opacity: 0; pointer-events: none;
  transition: opacity var(--t); backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 440px; max-width: 100vw;
  background: #fff; z-index: 1101; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 22px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.cart-title { font-size: 18px; font-weight: 800; color: var(--accent); }
.cart-count { font-size: 13px; color: var(--text3); margin-left: 8px; }
.cart-close {
  width: 36px; height: 36px; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--text2); transition: background var(--t-fast);
}
.cart-close:hover { background: var(--bg3); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 80px; height: 96px; object-fit: cover;
  border-radius: 12px; flex-shrink: 0; background: var(--bg3);
}
.cart-item-info  { flex: 1; min-width: 0; }
.cart-item-name  { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.cart-item-meta  { font-size: 12px; color: var(--text3); margin-bottom: 8px; }
.cart-item-price { font-size: 16px; font-weight: 800; color: var(--accent); }
.cart-qty-row    { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.qty-ctrl        { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg2); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all var(--t-fast); line-height: 1;
}
.qty-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.qty-val  { font-size: 15px; font-weight: 700; min-width: 22px; text-align: center; }
.cart-del { font-size: 16px; color: var(--text3); cursor: pointer; padding: 4px; border-radius: 6px; transition: all var(--t-fast); }
.cart-del:hover { color: var(--red); background: var(--red-light); }
.cart-foot {
  padding: 20px 24px; border-top: 1px solid var(--border);
  flex-shrink: 0; background: #fff;
}
.cart-shipping-bar {
  margin-bottom: 14px; background: var(--bg2); border-radius: 10px; padding: 10px 14px;
}
.cart-shipping-text { font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.cart-shipping-progress { height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.cart-shipping-fill { height: 100%; background: var(--green); border-radius: 4px; transition: width 0.5s ease; }
.cart-coupon { display: flex; gap: 8px; margin-bottom: 14px; }
.cart-coupon input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 13px; background: var(--bg2); color: var(--text);
  transition: border-color var(--t);
}
.cart-coupon input:focus { outline: none; border-color: var(--accent); background: #fff; }
.btn-apply { padding: 10px 18px; background: var(--accent); color: #fff; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background var(--t); border: none; white-space: nowrap; }
.btn-apply:hover { background: var(--gold); }
.cart-summary { margin-bottom: 14px; }
.cart-sum-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; color: var(--text2); }
.cart-sum-row.green { color: var(--green); }
.cart-sum-total { font-size: 17px; font-weight: 800; color: var(--text); border-top: 1.5px solid var(--border); margin-top: 8px; padding-top: 12px; }
.btn-checkout {
  width: 100%; background: var(--accent); color: #fff; padding: 16px;
  border-radius: 14px; font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: none; transition: all var(--t); letter-spacing: 0.3px;
}
.btn-checkout:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-view-cart {
  width: 100%; background: var(--bg2); color: var(--accent); padding: 12px;
  border-radius: 12px; font-size: 14px; font-weight: 600; text-align: center;
  margin-bottom: 10px; border: 1.5px solid var(--border); cursor: pointer;
  transition: all var(--t);
}
.btn-view-cart:hover { border-color: var(--accent); }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.3; }

/* ══════════════════════════════════════════════════
   TOAST SYSTEM
══════════════════════════════════════════════════ */
.toast-wrap {
  position: fixed; bottom: 90px; right: 20px; z-index: 2000;
  display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.16); border: 1px solid var(--border);
  min-width: 280px; max-width: 360px; pointer-events: all;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show   { transform: translateX(0); }
.toast-icon   { font-size: 24px; flex-shrink: 0; }
.toast-body   { flex: 1; }
.toast-title  { font-size: 13px; font-weight: 700; }
.toast-msg    { font-size: 12px; color: var(--text2); margin-top: 1px; }
.toast-close  { font-size: 16px; color: var(--text3); cursor: pointer; }
.toast-success { border-left: 3px solid var(--green); }
.toast-error   { border-left: 3px solid var(--red); }
.toast-info    { border-left: 3px solid var(--blue); }
.toast-warning { border-left: 3px solid var(--orange); }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all var(--t); border: 2px solid transparent;
  letter-spacing: 0.3px; text-align: center; white-space: nowrap;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.btn-primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover  { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover  { background: var(--accent); color: #fff; }
.btn-gold     { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover     { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-red      { background: var(--red); color: #fff; border-color: var(--red); }
.btn-ghost    { background: var(--bg2); color: var(--text); border-color: var(--border); }
.btn-ghost:hover    { border-color: var(--accent); color: var(--accent); }
.btn-sm   { padding: 8px 18px; font-size: 12px; }
.btn-lg   { padding: 16px 36px; font-size: 16px; }
.btn-xl   { padding: 18px 48px; font-size: 17px; }
.btn-full { width: 100%; border-radius: 14px; }
.btn-loading { position: relative; pointer-events: none; }
.btn-loading::after {
  content: ''; position: absolute; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
  right: 14px; top: 50%; transform: translateY(-50%);
}

/* ══════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-label .req { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 12px; font-size: 14px; background: var(--bg2);
  color: var(--text); transition: all var(--t);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(26,26,46,.07);
}
.form-input.is-error, .form-select.is-error { border-color: var(--red); }
.form-error { font-size: 12px; color: var(--red); margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-hint  { font-size: 12px; color: var(--text3); margin-top: 5px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6560' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.form-checkbox input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }

/* ══════════════════════════════════════════════════
   TABS
══════════════════════════════════════════════════ */
.tab-bar {
  display: flex; gap: 4px; background: var(--bg2); border-radius: 14px;
  padding: 5px; margin-bottom: 28px;
}
.tab-btn {
  flex: 1; padding: 10px 18px; border-radius: 10px; font-size: 13px;
  font-weight: 600; color: var(--text2); cursor: pointer;
  transition: all var(--t); text-align: center; white-space: nowrap;
}
.tab-btn.active { background: #fff; color: var(--accent); box-shadow: var(--shadow-sm); }

/* ══════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════ */
.breadcrumb { padding: 14px 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { font-size: 13px; color: var(--text3); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { font-size: 13px; color: var(--text4); }
.breadcrumb .cur { font-size: 13px; color: var(--text); font-weight: 500; }

/* ══════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 1200; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity var(--t);
  backdrop-filter: blur(6px);
}
.modal-overlay.open  { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: var(--r-xl); width: 100%;
  max-width: 920px; max-height: 90vh; overflow-y: auto;
  transform: scale(0.93) translateY(20px); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 10px; cursor: pointer;
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text2);
}
.modal-close:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════
   FLASH SALE TIMER
══════════════════════════════════════════════════ */
.flash-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1a3e 50%, #1a1a2e 100%);
  background-size: 200% 200%; animation: gradientShift 4s ease infinite;
  padding: 20px 24px; border-radius: var(--r-xl); margin-bottom: 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.flash-title { font-size: 24px; font-weight: 900; color: #fff; font-family: var(--font-serif); }
.flash-subtitle { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 2px; }
.flash-timer { display: flex; gap: 8px; align-items: center; }
.timer-block { text-align: center; background: rgba(255,255,255,.12); border-radius: 10px; padding: 10px 14px; min-width: 60px; }
.timer-num   { font-size: 24px; font-weight: 900; color: var(--gold2); font-family: var(--font-serif); line-height: 1; }
.timer-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 3px; }
.timer-sep   { font-size: 24px; font-weight: 900; color: var(--gold2); }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px; position: relative;
  transition: all var(--t);
}
.testimonial-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-quote { font-size: 48px; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: -10px; font-family: var(--font-serif); }
.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; }
.testimonial-text  { font-size: 14px; color: var(--text2); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { font-size: 34px; }
.testimonial-name   { font-size: 14px; font-weight: 700; }
.testimonial-meta   { font-size: 11px; color: var(--text3); margin-top: 2px; }

/* ══════════════════════════════════════════════════
   STATS COUNTER
══════════════════════════════════════════════════ */
.stats-section { background: var(--accent); padding: 64px 24px; }
.stats-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: var(--max-w); margin: 0 auto; }
.stat-item     { text-align: center; }
.stat-icon     { font-size: 40px; margin-bottom: 12px; }
.stat-num {
  font-family: var(--font-serif); font-size: 42px; font-weight: 900;
  color: #fff; line-height: 1;
}
.stat-num .stat-suffix { font-size: 26px; }
.stat-label    { font-size: 13px; color: rgba(255,255,255,.55); letter-spacing: 0.5px; margin-top: 6px; }

/* ══════════════════════════════════════════════════
   WA FLOAT + SCROLL TOP
══════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 88px; right: 20px; z-index: 800;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  animation: float 4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.15); box-shadow: 0 8px 28px rgba(37,211,102,.6); }
.scroll-top {
  position: fixed; bottom: 88px; right: 82px; z-index: 799;
  width: 46px; height: 46px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: all var(--t); box-shadow: var(--shadow);
  pointer-events: none; border: none;
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ══════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(26,26,46,0.97); backdrop-filter: blur(12px);
  color: #fff; z-index: 1500; padding: 18px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { flex: 1; font-size: 13px; opacity: 0.85; min-width: 240px; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--gold); color: #fff; padding: 10px 22px; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; transition: background var(--t); }
.btn-cookie-accept:hover { background: var(--gold2); }
.btn-cookie-decline { background: rgba(255,255,255,.12); color: #fff; padding: 10px 18px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,.2); transition: background var(--t); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer { background: var(--accent); color: #fff; padding: 72px 24px 0; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand-logo { font-family: var(--font-serif); font-size: 26px; font-weight: 800; letter-spacing: 1px; margin-bottom: 14px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 17px; transition: all var(--t); }
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.65); transition: color var(--t-fast); }
.footer-links a:hover { color: #fff; }
.footer-newsletter-title { font-size: 13px; font-weight: 600; margin-bottom: 10px; color: rgba(255,255,255,.85); }
.footer-newsletter-form  { display: flex; gap: 8px; }
.footer-newsletter-input { flex: 1; padding: 10px 14px; border-radius: 10px; border: none; font-size: 13px; background: rgba(255,255,255,.1); color: #fff; }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-input:focus { outline: none; background: rgba(255,255,255,.15); }
.btn-subscribe { padding: 10px 16px; background: var(--gold); color: #fff; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background var(--t); white-space: nowrap; }
.btn-subscribe:hover { background: var(--gold2); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-pay { display: flex; align-items: center; gap: 8px; }
.pay-icon    { background: rgba(255,255,255,.08); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════════
   PAGE WRAPPER (mobile padding for bottom nav)
══════════════════════════════════════════════════ */
.page-wrap { padding-bottom: 0; }

/* ══════════════════════════════════════════════════
   UTILITY CLASSES
══════════════════════════════════════════════════ */
.hidden  { display: none !important; }
.invisible { visibility: hidden; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-gold   { color: var(--gold) !important; }
.text-accent { color: var(--accent) !important; }
.text-red    { color: var(--red) !important; }
.text-green  { color: var(--green) !important; }
.text-muted  { color: var(--text3) !important; }
.text-sm     { font-size: 13px; }
.text-xs     { font-size: 11px; }
.text-lg     { font-size: 17px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.italic { font-style: italic; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col  { flex-direction: column; }
.gap-4  { gap: 4px; }  .gap-8  { gap: 8px; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-20 { gap: 20px; } .gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mt-4  { margin-top: 4px;  } .mt-8  { margin-top: 8px;  }
.mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.mb-4  { margin-bottom: 4px;  } .mb-8  { margin-bottom: 8px;  }
.mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.p-16  { padding: 16px; } .p-20 { padding: 20px; } .p-24 { padding: 24px; }
.rounded    { border-radius: var(--r); }
.rounded-lg { border-radius: var(--r-lg); }
.rounded-xl { border-radius: var(--r-xl); }
.rounded-full { border-radius: var(--r-full); }
.shadow    { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full   { width: 100%; }
.h-full   { height: 100%; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .product-grid   { grid-template-columns: repeat(3, 1fr); }
  .product-grid-5 { grid-template-columns: repeat(4, 1fr); }
  .cat-grid       { grid-template-columns: repeat(4, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1.5fr 1fr 1fr; }
  .stats-grid     { grid-template-columns: repeat(4, 1fr); }
  .hero-content   { padding: 0 40px; }
}
@media (max-width: 1024px) {
  .header-nav, .h-search-wrap { display: none; }
  .h-menu-btn { display: flex; }
  .product-grid   { grid-template-columns: repeat(3, 1fr); }
  .cat-grid       { grid-template-columns: repeat(3, 1fr); }
  .promo-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 58px; }
  .product-grid, .product-grid-5, .product-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .promo-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-track    { height: 480px; }
  .hero-content  { padding: 0 24px; max-width: 100%; }
  .hero-title    { font-size: 34px; }
  .hero-sub      { font-size: 14px; margin-bottom: 24px; }
  .hero-btns     { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
  .hero-dots     { left: 24px; bottom: 20px; }
  .hero-stats    { display: none; }
  .bottom-nav    { display: block; }
  .page-wrap     { padding-bottom: calc(68px + var(--safe-bottom)); }
  .cart-drawer   { width: 100vw; }
  .wa-float      { bottom: calc(76px + var(--safe-bottom)); }
  .scroll-top    { bottom: calc(76px + var(--safe-bottom)); right: 76px; }
  .toast-wrap    { right: 12px; left: 12px; bottom: calc(76px + var(--safe-bottom)); }
  .toast         { min-width: auto; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-box     { border-radius: var(--r-xl) var(--r-xl) 0 0; max-height: 92vh; border-radius: 24px 24px 0 0; }
  .section       { padding: 48px 16px; }
  .section-sm    { padding: 36px 16px; }
  .trust-inner   { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding: 12px 16px; }
  .trust-item    { flex-shrink: 0; padding: 6px 16px; }
  .hero-arrow    { display: none; }
  .flash-banner  { flex-direction: column; }
}
@media (max-width: 480px) {
  .product-grid  { gap: 10px; }
  .cat-grid      { gap: 8px; }
  .hero-title    { font-size: 28px; letter-spacing: -0.5px; }
}

/* ══════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════ */
@media print {
  .site-header, .site-footer, .bottom-nav, .wa-float, .scroll-top,
  .cookie-banner, .cart-overlay, .cart-drawer, .toast-wrap { display: none !important; }
  body { font-size: 12pt; }
}

/* ══ PRODUCT DETAIL PAGE ══ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ══ SHOP PAGE SIDEBAR HIDE ON MOBILE ══ */
@media (max-width: 768px) {
  .shop-sidebar { display: none; }
  .shop-sidebar.open { display: block; position: fixed; inset: 0; z-index: 200; background: #fff; overflow-y: auto; padding: 20px; }
}

/* ══ ADMIN RESPONSIVE ══ */
@media (max-width: 1024px) {
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  #menuToggle { display: flex !important; }
}
@media (max-width: 768px) {
  .admin-content { padding: 16px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  table { font-size: 12px; }
  th, td { padding: 10px 10px; }
}

/* ══ FIX HOME PAGE COLLECTION BLANK ══ */
.tab-products { min-height: 200px; }

/* ═══════════════════════════════════════════════════
   COMPLETE RESPONSIVE FIX — All Devices
   ═══════════════════════════════════════════════════ */

/* ── Product Detail Grid ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Shop Sidebar Sticky ── */
.shop-layout { display: flex; gap: 24px; }
.shop-sidebar-wrap {
  width: 230px;
  flex-shrink: 0;
}
.shop-sidebar-inner {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--bg2);
  border-radius: var(--r-xl);
  padding: 22px;
  max-height: calc(100vh - var(--header-h) - 32px);
  overflow-y: auto;
}
.shop-products-wrap { flex: 1; min-width: 0; }

/* ── Tab Bar ── */
.tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-btn:hover { color: var(--accent); }

/* ── Form styles ── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.req { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--bg2);
  color: var(--text);
  transition: border-color 0.18s;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,26,46,.06);
}
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.18s; border: 1.5px solid transparent; font-family: var(--font); text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-ghost { background: var(--bg2); color: var(--text2); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-loading { opacity: 0.7; pointer-events: none; }
.btn-loading::after { content: ''; display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; margin-left: 6px; }

/* ── Product Detail Page specific ── */
.pd-gallery { position: relative; }
.pd-main-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 3/4;
  margin-bottom: 12px;
}
.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pd-thumb {
  width: 70px;
  height: 86px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.pd-thumb.active { border-color: var(--accent); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pd-info { }
.pd-category { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pd-title { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 34px); font-weight: 900; color: var(--accent); line-height: 1.2; margin-bottom: 12px; }
.pd-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pd-stars { color: #f59e0b; font-size: 16px; }
.pd-price-wrap { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pd-price { font-size: 32px; font-weight: 900; color: var(--accent); }
.pd-mrp { font-size: 18px; color: var(--text3); text-decoration: line-through; }
.pd-discount { background: var(--green-light); color: var(--green); padding: 4px 12px; border-radius: var(--r-full); font-size: 13px; font-weight: 700; }
.pd-tax-note { font-size: 12px; color: var(--text3); margin-bottom: 20px; }
.pd-short-desc { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }

.pd-label { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.pd-colors, .pd-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-color-btn {
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.pd-color-btn.selected { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,26,46,.12); }
.pd-size-btn {
  width: 52px;
  height: 52px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-size-btn.selected { background: var(--accent); color: #fff; border-color: var(--accent); }
.pd-size-btn:hover:not(.selected) { border-color: var(--accent); }
.size-error { color: var(--red); font-size: 12px; margin-top: 6px; font-weight: 600; }

.pd-qty-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.pd-qty-ctrl { display: flex; align-items: center; gap: 14px; background: var(--bg2); border-radius: 12px; padding: 8px 14px; border: 1.5px solid var(--border); }
.pd-qty-btn { font-size: 20px; font-weight: 700; cursor: pointer; color: var(--text2); width: 24px; line-height: 1; border: none; background: none; }
.pd-qty-val { font-size: 16px; font-weight: 800; min-width: 22px; text-align: center; }
.pd-stock-badge { font-size: 12px; font-weight: 700; }
.pd-stock-badge.in-stock { color: var(--green); }
.pd-stock-badge.low-stock { color: var(--red); }
.pd-stock-badge.out { color: var(--text3); }

.pd-cta-wrap { display: flex; gap: 12px; margin-bottom: 14px; }
.pd-cta-wrap .btn { flex: 1; border-radius: 14px; font-size: 15px; }
.pd-wishlist-btn { width: 100%; padding: 12px; border: 1.5px solid var(--border); border-radius: 14px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; background: #fff; margin-bottom: 20px; }
.pd-wishlist-btn.wishlisted { border-color: var(--red); color: var(--red); }

.pd-marketplace { margin-top: 20px; padding: 18px; background: linear-gradient(135deg, #f8f7f5, #f0ede8); border-radius: var(--r-xl); border: 1px solid var(--border); }
.pd-marketplace-label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
.pd-marketplace-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.mkt-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 10px; font-size: 13px; font-weight: 800; text-decoration: none; transition: opacity 0.2s; }
.mkt-btn:hover { opacity: 0.85; }
.mkt-btn-fk { background: #047BD5; color: #fff; }
.mkt-btn-amz { background: #FF9900; color: #111; }
.mkt-btn-msh { background: #F43395; color: #fff; }

.pd-meta { margin-top: 18px; padding: 18px; background: var(--bg2); border-radius: var(--r-xl); font-size: 13px; color: var(--text3); line-height: 2; }
.pd-features { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.pd-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text2); }

/* ═══════════ TABLET (768px - 1024px) ═══════════ */
@media (max-width: 1024px) {
  /* Shop */
  .shop-sidebar-wrap { width: 200px; }

  /* Product detail */
  .product-detail-grid { gap: 32px; }
}

/* ═══════════ MOBILE (max 768px) ═══════════ */
@media (max-width: 768px) {
  :root { --header-h: 56px; }

  /* Container */
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-sm { padding: 24px 0; }

  /* Header */
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex !important; }
  .header-search { width: 36px; overflow: hidden; }
  .header-search input { display: none; }

  /* Product detail - stack vertically */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pd-main-img { aspect-ratio: 1/1; }
  .pd-price { font-size: 26px; }
  .pd-title { font-size: 22px; }
  .pd-cta-wrap { flex-direction: column; }

  /* Shop - hide sidebar, show filter btn */
  .shop-layout { flex-direction: column; gap: 16px; }
  .shop-sidebar-wrap {
    width: 100%;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 300;
    background: rgba(0,0,0,.5);
    display: none;
  }
  .shop-sidebar-wrap.open { display: block; }
  .shop-sidebar-inner {
    position: absolute;
    top: 0; left: 0;
    width: 280px;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    overflow-y: auto;
  }
  .shop-filter-btn { display: flex !important; }

  /* Product grid - 2 columns on mobile */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card { font-size: 12px; }
  .pc-name { font-size: 12px; min-height: unset; -webkit-line-clamp: 2; }
  .price-now { font-size: 14px; }

  /* Hero */
  .hero-section { height: 70vh; min-height: 480px; }
  .hero-title { font-size: clamp(28px, 8vw, 48px) !important; }
  .hero-sub { font-size: 13px !important; }
  .hero-btns { flex-wrap: wrap; gap: 8px !important; }
  .hero-btn { padding: 10px 18px !important; font-size: 13px !important; }

  /* Features grid */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-card { padding: 16px 12px; }

  /* Section titles */
  .section-title { font-size: 26px !important; }

  /* Tabs */
  .tab-btn { padding: 10px 14px; font-size: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Checkout */
  .checkout-grid { grid-template-columns: 1fr !important; }
  .cart-grid { grid-template-columns: 1fr !important; }

  /* About */
  .about-grid { grid-template-columns: 1fr !important; }

  /* Announcement */
  .announcement-bar { font-size: 11px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 11px; }

  /* Buttons on mobile */
  .btn-lg { padding: 12px 22px; font-size: 15px; }

  /* Admin */
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0 !important; }
  #menuToggle { display: flex !important; }
  .admin-content { padding: 14px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-num { font-size: 22px; }
  table { font-size: 11px; }
  th, td { padding: 8px 10px; }
  .td-img { width: 36px; height: 44px; }

  /* Modal */
  .modal-box { margin: 0 10px; }
}

/* ═══════════ SMALL MOBILE (max 480px) ═══════════ */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-section { height: 90vw; min-height: 340px; }
  .hero-title { font-size: clamp(24px, 7vw, 36px) !important; }
  .pd-marketplace-btns { flex-direction: column; }
  .pd-marketplace-btns .mkt-btn { width: 100%; justify-content: center; }
}

/* ═══ HOME PAGE SECTIONS ═══ */

/* Trust Bar */
.trust-bar { background:var(--accent); padding:14px 24px; overflow:hidden; }
.trust-inner { display:flex; align-items:center; justify-content:space-around; flex-wrap:wrap; gap:16px; max-width:1200px; margin:0 auto; }
.trust-item { display:flex; align-items:center; gap:10px; color:#fff; }
.trust-icon { font-size:22px; }
.trust-label { font-size:13px; font-weight:700; line-height:1.2; }
.trust-sub { font-size:11px; opacity:.7; }

/* Section heads */
.section-head { text-align:center; margin-bottom:40px; }
.section-head-row { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:32px; flex-wrap:wrap; gap:12px; }
.section-label { font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; display:flex; align-items:center; gap:8px; }
.section-label::before,.section-label::after { content:''; flex:1; height:1px; background:var(--gold); opacity:.3; }
.section-head .section-label::before,.section-head .section-label::after { max-width:60px; }
.section-title { font-family:var(--font-serif); font-size:clamp(26px,4vw,42px); font-weight:900; color:var(--accent); line-height:1.15; }
.section-sub { font-size:15px; color:var(--text2); margin-top:10px; line-height:1.7; }
.view-all-link { font-size:13px; font-weight:700; color:var(--gold); text-decoration:none; white-space:nowrap; border-bottom:1px solid var(--gold); padding-bottom:2px; }

/* Categories */
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:16px; }
.cat-card { display:flex; flex-direction:column; align-items:center; gap:10px; text-decoration:none; transition:transform 0.2s; }
.cat-card:hover { transform:translateY(-4px); }
.cat-img { width:100%; aspect-ratio:1; border-radius:var(--r-xl); overflow:hidden; background:var(--bg3); }
.cat-img img { width:100%; height:100%; object-fit:cover; }
.cat-img-placeholder { display:flex; align-items:center; justify-content:center; background:var(--bg3); }
.cat-name { font-size:13px; font-weight:700; color:var(--text); text-align:center; }

/* Home tabs */
.home-tabs { display:flex; gap:8px; margin-bottom:28px; overflow-x:auto; scrollbar-width:none; padding-bottom:4px; }
.home-tabs::-webkit-scrollbar { display:none; }
.home-tab-btn { padding:10px 22px; border-radius:50px; font-size:13px; font-weight:700; cursor:pointer; border:1.5px solid var(--border); background:#fff; color:var(--text2); transition:all 0.2s; white-space:nowrap; }
.home-tab-btn.active { background:var(--accent); color:#fff; border-color:var(--accent); }
.home-tab-btn:hover:not(.active) { border-color:var(--accent); color:var(--accent); }
.home-tab-pane { min-height:200px; }

/* Stats */
.stats-section { background:var(--bg2); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat-item { text-align:center; padding:28px 16px; }
.stat-icon { font-size:36px; margin-bottom:12px; }
.stat-num { font-family:var(--font-serif); font-size:clamp(28px,4vw,48px); font-weight:900; color:var(--accent); line-height:1; margin-bottom:6px; }
.stat-label { font-size:13px; color:var(--text2); font-weight:600; }

/* Promo Banners */
.promo-section { }
.promo-grid { display:grid; gap:16px; }
.promo-grid-1 { grid-template-columns:1fr; }
.promo-grid-2 { grid-template-columns:1fr 1fr; }
.promo-grid-3 { grid-template-columns:1fr 1fr 1fr; }
.promo-card { display:block; position:relative; border-radius:var(--r-xl); overflow:hidden; min-height:220px; text-decoration:none; transition:transform 0.3s,box-shadow 0.3s; }
.promo-card:hover { transform:scale(1.02); box-shadow:0 20px 40px rgba(0,0,0,.2); }
.promo-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.promo-overlay { position:absolute; inset:0; background:rgba(0,0,0,.3); }
.promo-content { position:relative; z-index:1; padding:32px 28px; height:100%; display:flex; flex-direction:column; justify-content:flex-end; }
.promo-title { font-family:var(--font-serif); font-size:clamp(18px,2.5vw,28px); font-weight:900; margin-bottom:6px; line-height:1.2; }
.promo-sub { font-size:14px; opacity:.85; margin-bottom:16px; }
.promo-btn { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.3); padding:10px 20px; border-radius:50px; font-size:13px; font-weight:700; width:fit-content; }

/* Features */
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.feature-card { text-align:center; padding:32px 20px; background:var(--bg2); border-radius:var(--r-xl); border:1px solid var(--border); transition:transform 0.2s,box-shadow 0.2s; }
.feature-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.08); }
.feature-icon { font-size:40px; display:block; margin-bottom:14px; }
.feature-title { font-size:15px; font-weight:800; color:var(--accent); margin-bottom:8px; }
.feature-desc { font-size:13px; color:var(--text2); line-height:1.7; }

/* Testimonials */
.testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card { background:#fff; border-radius:var(--r-xl); padding:26px; border:1px solid var(--border); position:relative; }
.t-quote { font-size:64px; font-family:Georgia,serif; color:var(--gold); opacity:.2; position:absolute; top:12px; left:20px; line-height:1; }
.t-stars { color:#f59e0b; font-size:16px; margin-bottom:12px; }
.t-body { font-size:13px; color:var(--text2); line-height:1.7; margin-bottom:16px; font-style:italic; }
.t-footer { display:flex; align-items:center; gap:10px; }
.t-avatar { font-size:28px; }
.t-name { font-size:13px; font-weight:700; color:var(--accent); }
.t-loc { font-size:11px; color:var(--text3); }

/* Marketplace */
.marketplace-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:820px; margin:0 auto; }
.marketplace-card { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-xl); padding:28px 22px; text-align:center; position:relative; transition:transform 0.2s; }
.marketplace-card:hover { transform:translateY(-4px); }
.mkt-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--gold); color:#fff; font-size:11px; font-weight:800; padding:4px 14px; border-radius:50px; white-space:nowrap; }
.mkt-icon { width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:28px; margin:0 auto 14px; }
.mkt-name { font-size:18px; font-weight:900; margin-bottom:8px; }
.mkt-desc { font-size:12px; color:rgba(255,255,255,.5); line-height:1.6; margin-bottom:18px; }
.mkt-btn-link { display:inline-block; padding:10px 20px; border-radius:50px; font-size:13px; font-weight:700; color:#fff; text-decoration:none; transition:opacity 0.2s; }
.mkt-btn-link:hover { opacity:.85; }
.mkt-coming { font-size:12px; color:rgba(255,255,255,.3); font-style:italic; }

/* App section */
.app-grid { display:grid; grid-template-columns:1fr auto; gap:60px; align-items:center; }
.app-store-btn { display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.08); border:1.5px solid rgba(255,255,255,.2); border-radius:14px; padding:12px 22px; text-decoration:none; color:#fff; transition:background 0.2s; }
.app-store-btn:hover { background:rgba(255,255,255,.15); }

/* Breadcrumb */
.breadcrumb { display:flex; align-items:center; flex-wrap:wrap; gap:4px; font-size:12px; color:var(--text3); margin-bottom:20px; }
.breadcrumb a { color:var(--text3); text-decoration:none; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb .sep { opacity:.4; }
.breadcrumb .cur { color:var(--text); font-weight:600; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .testimonial-grid { grid-template-columns:repeat(2,1fr); }
  .marketplace-grid { grid-template-columns:repeat(3,1fr); }
  .app-grid { grid-template-columns:1fr; gap:32px; }
  .promo-grid-3 { grid-template-columns:1fr 1fr; }
  .cat-grid { grid-template-columns:repeat(auto-fill,minmax(100px,1fr)); }
}
@media (max-width: 768px) {
  .trust-inner { gap:10px; justify-content:flex-start; overflow-x:auto; flex-wrap:nowrap; }
  .trust-bar { padding:12px 16px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .features-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .testimonial-grid { grid-template-columns:1fr; }
  .marketplace-grid { grid-template-columns:1fr; gap:14px; max-width:320px; }
  .promo-grid-2,.promo-grid-3 { grid-template-columns:1fr; }
  .promo-card { min-height:180px; }
  .home-tabs { gap:6px; }
  .home-tab-btn { padding:8px 16px; font-size:12px; }
  .cat-grid { grid-template-columns:repeat(auto-fill,minmax(80px,1fr)); gap:10px; }
  .section-title { font-size:clamp(22px,6vw,32px) !important; }
  .app-grid { text-align:center; }
}

/* ══ HOME SPECIFIC FIXES ══ */
/* Remove default opacity from items that don't need animation */
.home-tab-pane .product-card { opacity: 1 !important; transform: none !important; }
.cat-card { opacity: 1 !important; transform: none !important; }
.feature-card { opacity: 1 !important; }
.testimonial-card { opacity: 1 !important; }
.stat-item { opacity: 1 !important; }
.marketplace-card { opacity: 1 !important; }
.product-card { opacity: 1; transform: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }

/* Empty state */
.empty-state { text-align:center; padding:60px 20px; color:var(--text3); }
.es-icon { font-size:48px; margin-bottom:12px; }

/* Stats dark bg */
.stats-section .stat-num { color: #fff; }
.stats-section .stat-label { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════
   HOME PAGE — ALL SECTIONS
   ═══════════════════════════════════════════════════ */

/* Hero fallback */
.hero-fallback {
  background: linear-gradient(135deg, #1a1a2e, #2d2d4a);
  min-height: 520px;
  display: flex;
  align-items: center;
}



/* ── Home Tabs ── */
.home-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.home-tabs::-webkit-scrollbar { display: none; }
.home-tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text2);
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font);
}
.home-tab-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.home-tab-btn:hover:not(.active) { border-color: var(--accent); color: var(--accent); }

/* ── Promo Banners ── */
.promo-grid { display: grid; gap: 16px; }
.promo-grid-1 { grid-template-columns: 1fr; }
.promo-grid-2 { grid-template-columns: 1fr 1fr; }
.promo-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.promo-card {
  display: block;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 220px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.promo-card:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,.2); }
.promo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); }
.promo-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.promo-title { font-family: var(--font-serif); font-size: clamp(18px,2.5vw,28px); font-weight: 900; margin-bottom: 6px; line-height: 1.2; }
.promo-sub { font-size: 14px; opacity: .85; margin-bottom: 16px; }
.promo-btn { display: inline-flex; align-items: center; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; width: fit-content; }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item { text-align: center; padding: 28px 16px; }
.stat-icon { font-size: 36px; margin-bottom: 12px; }
.stat-num { font-family: var(--font-serif); font-size: clamp(28px,4vw,48px); font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text2); font-weight: 600; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feature-card { text-align: center; padding: 32px 20px; background: #fff; border-radius: var(--r-xl); border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.feature-icon { font-size: 40px; display: block; margin-bottom: 14px; }
.feature-title { font-size: 15px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--text2); line-height: 1.7; }



/* ── Marketplace ── */
.marketplace-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 820px; margin: 0 auto; }
.marketplace-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); padding: 28px 22px; text-align: center; position: relative; transition: transform 0.2s; }
.marketplace-card:hover { transform: translateY(-4px); }
.mkt-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 50px; white-space: nowrap; }
.mkt-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 14px; }
.mkt-name { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.mkt-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 18px; }
.mkt-btn-link { display: inline-block; padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; color: #fff; text-decoration: none; }
.mkt-btn-link:hover { opacity: .85; }
.mkt-coming { font-size: 12px; color: rgba(255,255,255,.3); font-style: italic; }

/* ── App Section ── */
.app-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.app-store-btn { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2); border-radius: 14px; padding: 12px 22px; text-decoration: none; color: #fff; transition: background 0.2s; }
.app-store-btn:hover { background: rgba(255,255,255,.15); }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text3); }
.es-icon { font-size: 48px; margin-bottom: 12px; }

/* ── Section heads ── */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
.section-title { font-family: var(--font-serif); font-size: clamp(26px,4vw,42px); font-weight: 900; color: var(--accent); line-height: 1.15; }
.section-sub { font-size: 15px; color: var(--text2); margin-top: 10px; line-height: 1.7; }
.view-all-link { font-size: 13px; font-weight: 700; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; white-space: nowrap; }

/* ── Trust Bar ── */
.trust-bar { background: var(--accent); padding: 14px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; }
.trust-icon { font-size: 20px; }
.trust-label { font-size: 13px; font-weight: 700; line-height: 1.2; }
.trust-sub { font-size: 11px; opacity: .7; }

/* ── Product card opacity fix ── */
.product-card { opacity: 1 !important; transform: none; }
.product-card:hover { transform: translateY(-4px) !important; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-layout { grid-template-columns: 1fr 1fr; }
  .review-side-right { display: none; }
  .marketplace-grid { grid-template-columns: repeat(3,1fr); }
  .promo-grid-3 { grid-template-columns: 1fr 1fr; }
  .app-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .features-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-side-left,.review-side-right { display: none; }
  .marketplace-grid { grid-template-columns: 1fr; gap: 14px; max-width: 340px; }
  .promo-grid-2,.promo-grid-3 { grid-template-columns: 1fr; }
  .cat-slide-img { width: 100px; height: 100px; }
  .cat-slide-card { width: 100px; }
  .cat-arr-prev { left: -10px; }
  .cat-arr-next { right: -10px; }
}

/* ═══════════════════════════════════════════════════
   CATEGORY SLIDER — Circular Cards with Glow
   ═══════════════════════════════════════════════════ */
.cat-slider-wrap {
  position: relative;
  padding: 20px 30px;
  overflow: hidden;
}
.cat-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.cat-slide-card {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
/* Circle image with glow */
.cat-slide-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.cat-slide-img::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cat-slide-card:hover .cat-slide-img {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 32px rgba(184,147,90,.35), 0 0 0 2px var(--gold);
}
.cat-slide-card:hover .cat-slide-img::before { opacity: 1; }
.cat-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-slide-card:hover .cat-slide-img img { transform: scale(1.1); }
.cat-slide-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.cat-slide-card:hover .cat-slide-name { color: var(--gold); }

/* Arrow buttons */
.cat-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  z-index: 10;
  transition: all 0.2s;
  line-height: 1;
}
.cat-arr:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(26,26,46,.25);
}
.cat-arr-prev { left: -5px; }
.cat-arr-next { right: -5px; }

/* ═══════════════════════════════════════════════════
   REVIEWS — 3 Column: Left auto | Center | Right auto
   ═══════════════════════════════════════════════════ */
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.review-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Auto slider column */
.review-auto-col {
  position: relative;
  overflow: hidden;
}
.review-auto-track {
  position: relative;
}
.review-auto-slide {
  display: none;
  animation: reviewFadeIn 0.5s ease;
}
.review-auto-slide.active { display: block; }
@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.review-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.review-dot-btn.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Review card */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
  box-sizing: border-box;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.t-quote {
  font-size: 56px;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: .18;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
.t-stars { color: #f59e0b; font-size: 15px; margin-bottom: 10px; letter-spacing: 1px; }
.t-title { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.t-body { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.t-footer { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 12px; margin-top: auto; }
.t-avatar { font-size: 24px; }
.t-name { font-size: 13px; font-weight: 700; color: var(--accent); }
.t-loc { font-size: 11px; color: var(--text3); margin-top: 1px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .reviews-layout { grid-template-columns: 1fr 1fr; }
  .reviews-layout .review-col:last-child { display: none; }
  .cat-slide-img { width: 90px; height: 90px; }
  .cat-slide-card { width: 100px; }
}
@media (max-width: 768px) {
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-layout .review-col:not(:first-child) { display: none; }
  .cat-slide-img { width: 80px; height: 80px; }
  .cat-slide-card { width: 88px; }
  .cat-slide-name { font-size: 11px; }
  .cat-arr { width: 32px; height: 32px; font-size: 16px; }
  .cat-arr-prev { left: 0; }
  .cat-arr-next { right: 0; }
}