/* ===================================================
   CHHOTU FASHION — Professional Redesign
   Global Stylesheet v2.0
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────── */
:root {
  --primary:       #D4522A;
  --primary-dark:  #B8421E;
  --primary-light: #F5E8E3;
  --accent:        #1C1C2E;
  --gold:          #C9A84C;

  --bg:            #F8F7F5;
  --bg-white:      #FFFFFF;
  --bg-subtle:     #F2F0ED;

  --text-heading:  #0E0E1A;
  --text-body:     #3C3C4E;
  --text-muted:    #8A8A9E;
  --text-light:    #B8B8CA;

  --border:        #E8E6E3;
  --border-dark:   #D0CEC9;

  --shadow-xs:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.13);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.16);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --font-sans:   'Inter', system-ui, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.28s var(--ease);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, select, textarea { font-family: var(--font-sans); }

/* ── Utility ─────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 400;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.badge-new  { background: #1C1C2E; color: #fff; }
.badge-sale { background: var(--primary); color: #fff; }
.badge-hot  { background: var(--gold); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: var(--radius-full); }

/* ══════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--accent);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  overflow: hidden;
  padding: 10px 0;
}
.announcement-marquee {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.announcement-marquee span { flex-shrink: 0; }
.announcement-marquee span + span::before {
  content: '·';
  margin-right: 80px;
  color: rgba(255,255,255,0.3);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 40%, #FF8C00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(255, 75, 43, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 50%;
  background: rgba(255,255,255,0.20);
  border-radius: 0 0 50% 0;
  pointer-events: none;
}
.logo:hover .logo-mark {
  transform: rotate(-5deg) scale(1.10);
  box-shadow: 0 8px 28px rgba(255, 75, 43, 0.55);
}
.logo-mark svg { display: block; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Search */
.search-bar { flex: 1; max-width: 440px; position: relative; }
.search-bar input {
  width: 100%;
  padding: 11px 18px 11px 44px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 13.5px;
  color: var(--text-heading);
  transition: var(--transition);
}
.search-bar input::placeholder { color: var(--text-light); }
.search-bar input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,82,42,0.10);
}
.search-icon-wrap {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-xs);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--text-heading); background: var(--bg); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px; right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-body);
  transition: var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: var(--bg); color: var(--text-heading); }
.nav-icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: 5px; right: 5px;
  width: 16px; height: 16px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.btn-signin {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--transition);
  margin-left: 6px;
}
.btn-signin:hover { background: #2C2C42; }

/* ══════════════════════════════════════════════════
   CATEGORY NAV
══════════════════════════════════════════════════ */
.category-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.category-nav-inner {
  display: flex;
  align-items: center;
}
.cat-link {
  padding: 13px 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.cat-link:hover { color: var(--text-heading); border-bottom-color: var(--text-heading); }
.cat-link.active { color: var(--text-heading); border-bottom-color: var(--text-heading); }
.cat-link.sale-link { color: var(--primary); }
.cat-link.sale-link:hover { border-bottom-color: var(--primary); }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: 14px; font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.btn-primary:hover { background: #2C2C42; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary.accent-btn { background: var(--primary); }
.btn-primary.accent-btn:hover { background: var(--primary-dark); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
.hero {
  background: var(--bg-white);
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--primary);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-title em { font-style: italic; color: var(--primary); }
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-item .val {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 700;
  color: var(--text-heading); line-height: 1;
}
.stat-item .lbl {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-muted); margin-top: 5px;
}

.hero-visual {
  position: relative;
  background: var(--bg-subtle);
  overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-badge.b1 { bottom: 32px; left: -20px; }
.hero-badge.b2 { top: 32px; right: -20px; }
.hero-badge-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.hero-badge-value { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--text-heading); margin-top: 2px; }

/* Animation */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow { animation: fadeUp .6s var(--ease) both; }
.hero-title    { animation: fadeUp .6s var(--ease) .1s both; }
.hero-desc     { animation: fadeUp .6s var(--ease) .2s both; }
.hero-actions  { animation: fadeUp .6s var(--ease) .3s both; }
.hero-stats    { animation: fadeUp .6s var(--ease) .4s both; }
.hero-visual   { animation: fadeUp .8s var(--ease) .2s both; }

/* ══════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--accent);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85);
}
.trust-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.8); }
.trust-title { font-size: 13.5px; font-weight: 600; color: #fff; }
.trust-sub { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 1px; }

/* ══════════════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════════════ */
.categories-section { padding: 80px 0; background: var(--bg-white); }
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 40px;
}
.view-all-link {
  font-size: 13px; font-weight: 600; color: var(--text-heading);
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--text-heading);
  transition: var(--transition);
}
.view-all-link:hover { color: var(--primary); border-bottom-color: var(--primary); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md); cursor: pointer;
  aspect-ratio: 3/4;
  transition: var(--transition);
  background: var(--bg-subtle);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.cat-card:hover img { transform: scale(1.05); }
.cat-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,14,26,0.82) 0%, rgba(14,14,26,0) 100%);
  padding: 32px 18px 20px;
  color: #fff;
}
.cat-card-info h3 { font-size: 15px; font-weight: 600; }
.cat-card-info p { font-size: 11.5px; opacity: 0.7; margin-top: 2px; }
.cat-card.span2 { grid-column: span 2; aspect-ratio: auto; min-height: 320px; }
.cat-card-badge { position: absolute; top: 14px; left: 14px; }

/* ══════════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════════ */
.products-section { padding: 80px 0; }
.product-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px;
}
.tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  background: #fff;
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--text-heading); color: var(--text-heading); }
.tab-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-image-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/2; background: var(--bg-subtle);
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s var(--ease); }
.product-card:hover .product-image-wrap img { transform: scale(1.05); }
.product-discount-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 10.5px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-full);
  letter-spacing: 0.3px;
}
.product-actions {
  position: absolute; top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(8px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  color: var(--text-body);
}
.product-action-btn:hover { background: var(--primary); color: #fff; }
.product-action-btn svg { width: 17px; height: 17px; }

.product-info { padding: 16px; }
.product-brand { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }
.product-name { font-size: 14px; font-weight: 500; color: var(--text-heading); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { display: flex; gap: 1px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); color: var(--gold); }
.stars svg.empty { fill: var(--border); color: var(--border); }
.rating-count { font-size: 12px; color: var(--text-muted); }
.product-pricing { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price-current { font-size: 18px; font-weight: 700; color: var(--text-heading); font-family: var(--font-serif); }
.price-original { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.price-save { font-size: 11px; font-weight: 600; color: #27AE60; }
.btn-add-cart {
  width: 100%; padding: 11px;
  border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-add-cart svg { width: 16px; height: 16px; }
.btn-add-cart:hover { background: #2C2C42; }

/* ══════════════════════════════════════════════════
   FESTIVAL BANNERS
══════════════════════════════════════════════════ */
.festival-section { padding: 60px 0; background: #fff; }
.festival-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.festival-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); min-height: 260px;
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; transition: var(--transition);
}
.festival-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.festival-card.card-diwali { background: linear-gradient(140deg, #2D1B69 0%, #11998E 100%); }
.festival-card.card-eid    { background: linear-gradient(140deg, #1B4332 0%, #40916C 100%); }
.festival-card-label {
  position: absolute; top: 28px; left: 28px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1); border-radius: var(--radius-full);
  padding: 5px 14px;
}
.festival-card h2 {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 700;
  color: #fff; position: relative; z-index: 1;
}
.festival-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 8px 0 22px; position: relative; z-index: 1; }
.festival-card .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 13px; font-weight: 600;
  width: fit-content; transition: var(--transition);
  position: relative; z-index: 1;
}
.festival-card .btn-ghost:hover { background: rgba(255,255,255,0.15); }
.festival-deco {
  position: absolute; right: 32px; top: 50%; transform: translateY(-50%);
  width: 120px; height: 120px; opacity: 0.12;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,1), transparent);
}

/* ══════════════════════════════════════════════════
   BRANDS
══════════════════════════════════════════════════ */
.brands-section { padding: 60px 0; }
.brands-scroll {
  display: flex; align-items: center; gap: 12px;
  overflow-x: auto; padding: 16px 0;
  scrollbar-width: none; flex-wrap: wrap;
}
.brand-chip {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600;
  color: var(--text-body); background: #fff;
  white-space: nowrap; transition: var(--transition); cursor: pointer;
  flex-shrink: 0;
}
.brand-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--bg); }

/* ══════════════════════════════════════════════════
   TRENDING
══════════════════════════════════════════════════ */
.trending-section { padding: 80px 0; background: var(--bg-white); }
.trending-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.trend-big-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: var(--transition);
}
.trend-big-card:hover { box-shadow: var(--shadow-xl); }
.trend-big-card img { width: 100%; height: 460px; object-fit: cover; transition: transform 0.5s var(--ease); }
.trend-big-card:hover img { transform: scale(1.04); }
.trend-big-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,26,0.8) 0%, transparent 55%);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.trend-big-overlay .badge { margin-bottom: 12px; }
.trend-big-overlay h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.trend-big-overlay p { font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  color: #fff; font-size: 13px; font-weight: 600;
  width: fit-content; transition: var(--transition);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }

.trend-small-cards { display: flex; flex-direction: column; gap: 16px; }
.trend-small-card {
  display: flex; gap: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden; background: #fff;
  transition: var(--transition); cursor: pointer;
}
.trend-small-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: transparent; }
.trend-small-card img { width: 110px; height: 120px; object-fit: cover; flex-shrink: 0; }
.trend-small-info { padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.trend-small-info .badge { margin-bottom: 8px; }
.trend-small-info h4 { font-size: 14px; font-weight: 600; color: var(--text-heading); margin-bottom: 4px; }
.trend-small-info .price { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--primary); }
.trend-small-info .price-old { font-size: 12px; color: var(--text-light); text-decoration: line-through; margin-left: 6px; font-weight: 400; font-family: var(--font-sans); }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials-section { padding: 80px 0; background: var(--bg-subtle); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-md); padding: 28px;
  border: 1px solid var(--border); transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }
.testimonial-text { font-size: 14.5px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-initials {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-subtle); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--text-heading); flex-shrink: 0;
}
    .account-card-head h2 { font-size: 16px; font-weight: 700; color: var(--text-heading); }
    .account-card-body { padding: 24px; }
    
    .account-tab { display: none; }
    .account-tab.active { display: block; animation: fadeIn 0.3s ease; }
.author-name { font-size: 14px; font-weight: 600; color: var(--text-heading); }
.author-loc  { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════ */
.newsletter-section {
  padding: 80px 0;
  background: var(--accent);
}
.newsletter-inner {
  max-width: 560px; margin: 0 auto; text-align: center;
}
.newsletter-inner .nl-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 14px; display: block;
}
.newsletter-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.newsletter-inner p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 15px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  font-size: 14px; color: #fff; outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }
.newsletter-form .btn-sub {
  padding: 15px 28px; border-radius: var(--radius-full);
  background: var(--primary); color: #fff;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: var(--transition); border: none; cursor: pointer;
}
.newsletter-form .btn-sub:hover { background: var(--primary-dark); }
.nl-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 14px; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer { background: var(--text-heading); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: #fff; }
.footer-desc { font-size: 13.5px; line-height: 1.75; margin-top: 12px; color: rgba(255,255,255,0.5); max-width: 300px; }
.social-links { display: flex; gap: 8px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--primary); color: #fff; }
.social-btn svg { width: 17px; height: 17px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.payment-icons { display: flex; gap: 8px; }
.payment-icon {
  padding: 5px 12px; border-radius: 5px;
  background: rgba(255,255,255,0.08);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.55);
}

/* ══════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: var(--radius-full);
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition); opacity: 0; pointer-events: none; z-index: 99;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  padding: 8px 0; z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.mobile-nav-inner { display: flex; justify-content: space-around; align-items: center; }
.mob-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  padding: 6px 12px; border-radius: var(--radius-sm); transition: var(--transition);
}
.mob-nav-item svg { width: 22px; height: 22px; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════
   RESPONSIVE — Professional Mobile-First System
   Breakpoints: 1100px | 900px | 680px | 480px
══════════════════════════════════════════════════ */

/* ── Hamburger (hidden on desktop) ─────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  padding: 8px;
  transition: var(--transition);
  margin-left: auto;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  backdrop-filter: blur(2px);
}
.mobile-menu-overlay.open { display: block; }

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  flex-direction: column;
}
.mobile-nav-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: #fff; z-index: 1;
}
.drawer-head .logo-name { font-size: 18px; }
.btn-drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-subtle); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px; color: var(--text-heading);
}
.drawer-body { padding: 16px 0; flex: 1; }
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  font-size: 15px; font-weight: 500; color: var(--text-heading);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.drawer-link:hover, .drawer-link.active { color: var(--primary); background: var(--primary-light); }
.drawer-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); }
.drawer-actions {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-actions a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600;
}
.btn-drawer-signin {
  background: var(--accent); color: #fff;
}
.btn-drawer-shop {
  background: var(--primary); color: #fff;
}

/* ── 1100px ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card.span2   { grid-column: span 1; min-height: auto; aspect-ratio: 3/4; }
  .products-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── 900px ──────────────────────────────────────── */
@media (max-width: 900px) {
  /* Header */
  .nav-links  { display: none; }
  .search-bar { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav-drawer { display: flex; }
  .navbar { gap: 16px; }

  /* Hide sign-in button in header on mobile (moved to drawer) */
  .btn-signin { display: none; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 0 40px; text-align: center; }
  .hero-content .section-label { display: block; text-align: center; }
  .hero-cta-group { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; }

  /* Tabs */
  .product-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }
  .product-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; }

  /* Grids */
  .trending-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Shop page layout */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters {
    position: static !important;
    display: none;
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
  }
  .shop-filters.mobile-open { display: block; }
  .filter-toggle-btn { display: flex; }

  /* Product page */
  .product-page-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-table-head { display: none; }
  .cart-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .cart-row-total { text-align: right; }

  /* Account */
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }

  /* Checkout */
  .checkout-layout { grid-template-columns: 1fr; }
  .co-summary { position: static; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── 680px ──────────────────────────────────────── */
@media (max-width: 680px) {
  /* Typography scale-down */
  .section-title { font-size: 24px; }
  .hero-title    { font-size: clamp(28px, 8vw, 42px) !important; }

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

  /* Grids */
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid   { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trending-grid   { grid-template-columns: 1fr; }
  .festival-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Product card compact */
  .product-card-info { padding: 12px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 16px; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-radius: var(--radius-full); }
  .newsletter-btn   { border-radius: var(--radius-full); width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 16px; flex-wrap: wrap; }

  /* Mobile bottom nav */
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 72px; }
  .back-to-top { bottom: 84px; right: 16px; }

  /* Product page gallery — stack vertically on mobile */
  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .gallery-thumbnails {
    flex-direction: row !important;
    overflow-x: auto;
    gap: 8px;
    order: 2;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .gallery-thumbnails::-webkit-scrollbar { display: none; }
  .thumbnail-btn { width: 64px; height: 80px; flex-shrink: 0; }
  .gallery-main { order: 1; }

  /* Size options 3-col on mobile */
  .size-options { grid-template-columns: repeat(3, 1fr); }

  /* Cart rows stack fully */
  .cart-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
  }
  .cart-img { width: 80px; height: 100px; }
  .qty-control { justify-self: start; }
  .cart-row-total { justify-self: end; }
  .btn-remove-row { justify-self: end; }

  /* Stats row */
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  /* Checkout steps */
  .checkout-steps { gap: 4px; }
  .step span { display: none; }
  .step-divider { max-width: 30px; }

  /* Track form */
  .track-form { flex-direction: column; }
  .btn-track-submit { border-radius: var(--radius-sm); }

  /* Auth card */
  .auth-body { padding: 24px 20px 32px; }

  /* Wishlist grid */
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Account profile form */
  .profile-form { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
}

/* ── 480px ──────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Logo */
  .logo-tagline { display: none; }
  .logo-name { font-size: 17px; }

  /* Nav */
  .nav-actions { gap: 8px; }
  .nav-icon-btn { width: 36px; height: 36px; }
  .cart-badge { width: 16px; height: 16px; font-size: 9px; top: -4px; right: -4px; }

  /* Hero */
  .hero-content { padding: 40px 0 32px; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group a, .hero-cta-group button { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-val { font-size: 22px; }

  /* Cards */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-img { height: 90px; }

  /* Trust bar */
  .trust-item { flex-direction: column; text-align: center; font-size: 12px; }
  .trust-item svg { width: 20px; height: 20px; }

  /* Wishlist */
  .wishlist-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .w-img { aspect-ratio: 3/2; }

  /* Cart summary */
  .summary-row { font-size: 13px; }
  .summary-row.total { font-size: 16px; }

  /* Page hero */
  .page-hero { padding: 32px 0 24px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions a { width: 100%; justify-content: center; text-align: center; }

  /* Account sidebar */
  .account-profile-box { padding: 20px 16px; }
  .sidebar-link { padding: 12px 16px; }

  /* Timeline */
  .timeline-dot { width: 30px; height: 30px; font-size: 13px; }
  .timeline-step { font-size: 14px; }

  /* Coupon form */
  .coupon-form { flex-direction: column; }
  .coupon-input { border-radius: var(--radius-sm); }
  .btn-apply { border-radius: var(--radius-sm); width: 100%; }

  /* Fields */
  .field-grid { grid-template-columns: 1fr; }
  .field-grid.cols3 { grid-template-columns: 1fr; }

  /* Mobile bottom nav labels */
  .mob-nav-item { font-size: 10px; padding: 4px 8px; }
}

/* ── Mobile Search Bar (shown below header on mobile) ── */
@media (max-width: 900px) {
  .mobile-search {
    display: none;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    background: #fff;
  }
  .mobile-search input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: var(--bg);
    font-size: 14px;
    color: var(--text-heading);
    outline: none;
  }
  .mobile-search input:focus { border-color: var(--primary); }
  .mobile-search-wrap { position: relative; width: 100%; }
  .mobile-search-icon {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-search { display: none; }
  .filter-toggle-btn { display: none; }
}

/* ── Filter toggle button (mobile shop page) ─────── */
.filter-toggle-btn {
  display: none;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
  transition: var(--transition);
}
.filter-toggle-btn:hover { background: var(--primary); }
.filter-toggle-btn svg { width: 18px; height: 18px; }
