/* ════════════════════════════════════════════════════
   BraidsTribe  –  E-commerce Website Styles
   ════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --primary:      #FC46AA;
  --primary-dk:   #d63a90;
  --primary-lt:   #ff6ec4;
  --secondary:    #9A67EA;
  --deal:         #FF3D57;
  --deal-bg:      #FFF0F2;
  --new-badge:    #FC46AA;
  --star:         #f59e0b;
  --bg:           #f8f8f8;
  --surface:      #ffffff;
  --border:       #e5e5e5;
  --text-1:       #1a1a1a;
  --text-2:       #555;
  --text-3:       #999;
  --container:    1260px;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06);
  --shadow:       0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 30px rgba(0,0,0,.12);
  --header-h:     70px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }
input, select { font-family: inherit; font-size: inherit; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dk); }
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}
.btn-white:hover { background: #f5f5f5; transform: translateY(-1px); }

/* ════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════ */
.announce-bar {
  background: var(--text-1);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  text-align: center;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.announce-bar a { color: var(--primary-lt); text-decoration: underline; font-weight: 700; }
.announce-close {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  padding: 0 4px;
  line-height: 1;
  position: absolute;
  right: 20px;
}
.announce-close:hover { color: #fff; }
.announce-bar.hidden { display: none; }

/* ════════════════════════════════════════
   SITE HEADER
════════════════════════════════════════ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}
.logo span {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: 8px;
  transition: all .15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-1); background: var(--bg); }
.nav-link.active { color: var(--primary); font-weight: 700; }
.nav-link.deal-link { color: var(--deal); }
.nav-link.deal-link:hover { background: var(--deal-bg); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-1);
  transition: background .15s;
}
.icon-btn:hover { background: var(--bg); }
.get-app-btn {
  display: none; /* shown on desktop */
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-1);
  flex-shrink: 0;
}

/* Search Dropdown */
.search-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: #fff;
  border-bottom: 1px solid transparent;
}
.search-dropdown.open {
  max-height: 80px;
  border-bottom-color: var(--border);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  margin: 12px 0;
  transition: border-color .2s;
}
.search-field:focus-within { border-color: var(--primary); }
.search-field svg { flex-shrink: 0; }
#search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--text-1);
}
#search-input::placeholder { color: var(--text-3); }
.search-close-btn {
  font-size: 20px;
  color: var(--text-3);
  padding: 0 4px;
  display: none;
}
.search-dropdown.open .search-close-btn { display: block; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
/* ── App Hero ── */
.app-hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #3d1155 50%, #FC46AA22 100%);
  padding: 72px 0 60px;
  overflow: hidden;
  position: relative;
}
.app-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(252,70,170,.18) 0%, transparent 65%);
  pointer-events: none;
}
.app-hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
}
.app-hero-text {
  flex: 1;
  color: #fff;
}
.app-hero-tag {
  display: inline-block;
  background: rgba(252,70,170,.25);
  border: 1px solid rgba(252,70,170,.5);
  color: #FC46AA;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.app-hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 18px;
  color: #fff;
}
.app-hero-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin: 0 0 28px;
  max-width: 440px;
}
.app-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.app-hero-stat { display: flex; flex-direction: column; }
.app-hero-stat strong { font-size: 22px; font-weight: 800; color: #fff; }
.app-hero-stat span { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.app-hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }
.app-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.app-store-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.app-store-btn div { display: flex; flex-direction: column; line-height: 1.3; }
.app-store-btn div span { font-size: 10px; color: rgba(255,255,255,.65); }
.app-store-btn div strong { font-size: 15px; font-weight: 700; }
/* Phone frames */
.app-hero-phones {
  flex-shrink: 0;
  position: relative;
  width: 300px;
  height: 480px;
}
.phone-frame {
  position: absolute;
  width: 220px;
  height: 440px;
  background: #1a1a2e;
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-frame-back {
  left: 60px;
  top: 40px;
  transform: rotate(6deg);
  opacity: .7;
  z-index: 1;
}
.phone-frame-front {
  left: 0;
  top: 0;
  transform: rotate(-3deg);
  z-index: 2;
  border-color: rgba(252,70,170,.4);
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(252,70,170,.2), 0 0 40px rgba(252,70,170,.15);
}
.phone-notch {
  width: 80px;
  height: 22px;
  background: #0d0d1a;
  border-radius: 0 0 16px 16px;
  margin-bottom: 4px;
  flex-shrink: 0;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  flex: 1;
  overflow: hidden;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 860px) {
  .app-hero-inner { flex-direction: column; text-align: center; padding: 0; gap: 36px; }
  .app-hero-text h1 { font-size: 32px; }
  .app-hero-text p { margin: 0 auto 24px; }
  .app-hero-stats { justify-content: center; }
  .app-hero-btns { justify-content: center; }
  .app-hero-phones { width: 260px; height: 380px; }
  .phone-frame { width: 180px; height: 360px; }
  .phone-frame-back { left: 50px; top: 30px; }
}

/* ─────────────────────────────────────
   OLD HERO SLIDER (kept for reference)
───────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-track {
  display: flex;
  transition: transform .5s ease;
}
.hero-slide {
  flex: 0 0 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 60px 0;
  width: 100%;
}
.hero-text {
  flex: 1;
  color: #fff;
  min-width: 0;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.hero-text h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: .9;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-img {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s;
}
.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: all .3s;
  cursor: pointer;
}
.hdot.active {
  width: 28px;
  border-radius: 5px;
  background: #fff;
}

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item svg { flex-shrink: 0; }
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
}
.trust-item span {
  font-size: 12px;
  color: var(--text-3);
}

/* ════════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */
.section {
  padding: 48px 0;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-1);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-header h2 {
  font-size: 22px;
  font-weight: 800;
}
.link-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: opacity .15s;
  white-space: nowrap;
}
.link-btn:hover { opacity: .7; }

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cd-label { font-size: 12px; color: var(--text-3); margin-right: 4px; }
.cd-digit {
  background: var(--deal);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 3px 7px;
  border-radius: 5px;
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  text-align: center;
}
.cd-sep { color: var(--text-3); font-weight: 800; }

/* ════════════════════════════════════════
   FLASH DEALS ROW
════════════════════════════════════════ */
.deals-section { background: #fff; }
.flash-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.flash-row::-webkit-scrollbar { height: 4px; }
.flash-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.flash-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  flex: 1;
}

.flash-card {
  flex: 0 0 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.flash-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.flash-card-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg);
}
.flash-card-img img { width: 100%; height: 100%; object-fit: cover; }
.flash-discount {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--deal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
}
.flash-card-body {
  padding: 10px 12px 14px;
}
.flash-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.flash-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--deal);
}
.flash-card-orig {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ════════════════════════════════════════
   CATEGORY CARDS
════════════════════════════════════════ */
.categories-section { background: #fff; border-top: 1px solid var(--border); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  transition: all .2s;
  border: 2px solid transparent;
}
.cat-card:hover {
  border-color: var(--primary);
  background: #fff;
  transform: translateY(-2px);
}
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
}

/* ════════════════════════════════════════
   PRODUCTS SECTION
════════════════════════════════════════ */
.products-section { background: var(--bg); }
.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.products-header-left {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.products-header h2 {
  font-size: 26px;
  font-weight: 800;
}
.product-count {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 600;
}
.products-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Filter Pills */
.filter-pills {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-pills::-webkit-scrollbar { display: none; }
.pill {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all .15s;
  white-space: nowrap;
}
.pill:hover { border-color: var(--primary); color: var(--primary); }
.pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: #fff;
  outline: none;
  cursor: pointer;
}
.sort-select:focus { border-color: var(--primary); }

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--text-3);
  font-size: 14px;
  font-weight: 600;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg);
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  cursor: pointer;
}
.product-card:hover .card-img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
  z-index: 2;
}
.card-badge.deal { background: var(--deal); }
.card-badge.new-badge { background: var(--new-badge); top: auto; bottom: 10px; }

.card-save {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ccc;
  transition: all .15s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.card-save:hover { color: var(--primary); }
.card-save.saved { color: var(--primary); }

.card-body {
  padding: 14px 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.card-stars { color: var(--star); letter-spacing: -1px; }
.card-rating-val { color: var(--text-2); font-weight: 600; }
.card-review-cnt { color: var(--text-3); }

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--deal);
}
.card-price.no-sale { color: var(--text-1); }
.card-orig-price {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: line-through;
}

/* Load More */
.load-more-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 32px auto 0;
  padding: 14px;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  text-align: center;
  transition: all .2s;
}
.load-more-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Empty State */
.products-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 60px 20px;
  text-align: center;
}
.products-empty p { font-size: 16px; font-weight: 600; color: var(--text-2); }

/* ════════════════════════════════════════
   APP CTA
════════════════════════════════════════ */
.app-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 64px 0;
}
.app-cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.app-cta-text {
  flex: 1;
  color: #fff;
}
.app-cta-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.app-cta-text p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.6;
}
.app-store-btns {
  display: flex;
  gap: 12px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
}
.store-badge:hover { background: rgba(255,255,255,.25); }

.app-cta-visual {
  flex-shrink: 0;
}
.app-cta-visual img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--text-1);
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 40px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  transition: background .2s, transform .2s;
}
.footer-socials a:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}
.footer-logo span {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  padding: 4px 0;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  font-size: 13px;
  text-align: center;
  color: rgba(255,255,255,.4);
}

/* ════════════════════════════════════════
   MOBILE MENU
════════════════════════════════════════ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  z-index: 1200;
  transition: left .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-menu.open { left: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-header .logo span { font-size: 18px; }
.mobile-close {
  font-size: 28px;
  color: var(--text-2);
  padding: 0 4px;
  line-height: 1;
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.mm-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  transition: background .12s;
}
.mm-link:hover { background: var(--bg); }
.mm-link.deal { color: var(--deal); }
.mm-link.mm-auth-link { 
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  margin: 8px 16px;
  border-radius: 8px;
  text-align: center;
}
.mm-link.mm-auth-link:hover { opacity: 0.9; }
.mm-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* ════════════════════════════════════════
   SPINNER (legacy)
════════════════════════════════════════ */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════
   SHIMMER SKELETON LOADERS
════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer-line {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 6px;
}
.skeleton-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.skeleton-card .skel-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease infinite;
}
.skeleton-card .skel-body { padding: 14px 12px 18px; }
.skeleton-card .skel-title {
  height: 14px;
  width: 80%;
  margin-bottom: 10px;
}
.skeleton-card .skel-rating {
  height: 12px;
  width: 50%;
  margin-bottom: 10px;
}
.skeleton-card .skel-price {
  height: 16px;
  width: 35%;
}

/* Review skeleton */
.skeleton-review {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.skeleton-review .skel-stars { height: 14px; width: 40%; margin-bottom: 14px; }
.skeleton-review .skel-msg1 { height: 12px; width: 100%; margin-bottom: 8px; }
.skeleton-review .skel-msg2 { height: 12px; width: 90%; margin-bottom: 8px; }
.skeleton-review .skel-msg3 { height: 12px; width: 60%; margin-bottom: 18px; }
.skeleton-review .skel-footer { display: flex; align-items: center; gap: 10px; }
.skeleton-review .skel-avatar {
  width: 36px; height: 36px; border-radius: 50%;
}
.skeleton-review .skel-name { height: 12px; width: 80px; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-text h1 { font-size: 38px; }
  .hero-img { width: 260px; height: 260px; }
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .get-app-btn { display: flex; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  :root { --header-h: 56px; }
  .header-inner { gap: 12px; }
  .logo img { width: 28px; height: 28px; }
  .logo span { font-size: 18px; }

  .announce-bar { font-size: 11px; padding: 6px 0; }
  .announce-close { display: none; }

  /* Hero */
  .hero-slide { min-height: 300px; }
  .hero-content { flex-direction: column; gap: 24px; padding: 32px 0; text-align: center; }
  .hero-text h1 { font-size: 28px; }
  .hero-text p { font-size: 14px; margin: 0 auto 20px; }
  .hero-img { width: 180px; height: 180px; }
  .hero-arrow { display: none; }

  /* Trust bar */
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item { gap: 8px; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cat-icon { width: 48px; height: 48px; }

  /* Flash */
  .flash-card { flex: 0 0 150px; }

  /* Products */
  .section { padding: 32px 0; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .products-header-right { width: 100%; }
  .filter-pills { width: 100%; overflow-x: auto; }
  .products-header h2 { font-size: 22px; }

  .card-body { padding: 10px 10px 12px; }
  .card-name { font-size: 13px; }
  .card-price { font-size: 16px; }
  .card-badge { top: 6px; left: 6px; font-size: 10px; padding: 3px 7px; }

  /* App CTA */
  .app-cta { padding: 40px 0; }
  .app-cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .app-cta-text h2 { font-size: 24px; }
  .app-cta-text p { margin: 0 auto 20px; }
  .app-store-btns { justify-content: center; }
  .app-cta-visual img { width: 80px; height: 80px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 32px 16px 24px; }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .get-app-btn { display: flex; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1400px) {
  .products-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ════════════════════════════════════════
   SECTION TAG (shared)
════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(252,70,170,.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip {
  background: var(--text-1);
  padding: 32px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
  text-align: center;
}
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .3px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-inner { gap: 0; }
  .stat-item { padding: 12px 24px; }
  .stat-num { font-size: 26px; }
  .stat-divider { height: 36px; }
}

/* ════════════════════════════════════════
   ABOUT / MISSION
════════════════════════════════════════ */
.about-section { background: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.about-text { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 900px) { .about-text h2 { font-size: 42px; } }
.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.6;
  margin: 0;
}
.about-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin: 0;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 8px;
}
.about-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(252,70,170,.08);
  border: 1px solid rgba(252,70,170,.2);
  padding: 5px 14px;
  border-radius: 20px;
}

/* Visual collage */
.about-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-card-1 {
  width: 260px;
  height: 340px;
  top: 0;
  left: 0;
}
.about-card-2 {
  width: 200px;
  height: 260px;
  bottom: 0;
  right: 0;
  border: 4px solid #fff;
}
.about-badge {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 12px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(252,70,170,.4);
  white-space: nowrap;
}
.about-badge-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.about-badge-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: .85;
  margin-top: 2px;
}
@media (max-width: 899px) {
  .about-visual { height: 300px; }
  .about-card-1 { width: 180px; height: 240px; }
  .about-card-2 { width: 150px; height: 190px; }
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-section { background: var(--bg); }
.how-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.how-header h2 { font-size: 34px; font-weight: 800; color: var(--text-1); margin: 8px 0 12px; }
.how-header p  { font-size: 16px; color: var(--text-2); margin: 0; }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 16px;
}
.how-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  opacity: .6;
}
.how-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 2px solid rgba(252,70,170,.12);
}
.how-step h3 { font-size: 17px; font-weight: 700; color: var(--text-1); margin: 0; }
.how-step p  { font-size: 14px; color: var(--text-2); line-height: 1.7; margin: 0; }
.how-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(252,70,170,.3), rgba(154,103,234,.3));
  margin-top: 53px; /* align with center of icons */
  border-radius: 2px;
}
@media (max-width: 700px) {
  .how-steps { flex-direction: column; align-items: center; gap: 32px; }
  .how-connector { width: 2px; height: 32px; margin: 0; }
  .how-header h2 { font-size: 26px; }
}

/* ════════════════════════════════════════
   FEATURES
════════════════════════════════════════ */
.features-section { background: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.feature-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(252,70,170,.1);
  background: #fff;
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin: 0;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════
   REVIEWS / TESTIMONIALS
════════════════════════════════════════ */
.reviews-section { background: var(--bg); }

.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.reviews-avg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.reviews-avg-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-1);
  line-height: 1;
}
.reviews-avg-stars {
  display: flex;
  gap: 3px;
}
.reviews-count {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

.reviews-carousel {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  min-width: 0;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(252,70,170,.15);
}

.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-message {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
}
.review-date {
  font-size: 12px;
  color: var(--text-3);
}
.review-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.reviews-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all .2s;
}
.reviews-nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(252,70,170,.04);
}
.reviews-dots {
  display: flex;
  gap: 8px;
}
.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.reviews-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .review-card { flex: 0 0 100%; }
  .reviews-avg-num { font-size: 36px; }
}

/* ════════════════════════════════════════════════════
   "Get" Button on Product Cards
════════════════════════════════════════════════════ */
.card-get-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px 0;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .1s;
  letter-spacing: .3px;
  text-align: center;
  text-decoration: none;
  line-height: normal;
}
.card-get-btn:hover {
  background: var(--primary-dk);
  transform: scale(1.02);
}
.card-get-btn:active { transform: scale(.97); }

/* Make product-card a clickable div (not <a>) */
.product-card { cursor: pointer; text-decoration: none; color: inherit; }
.flash-card { cursor: pointer; }

/* ════════════════════════════════════════════════════
   QUICK-VIEW MODAL (Temu-inspired)
════════════════════════════════════════════════════ */
.qv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.qv-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.qv-content {
  position: relative;
  z-index: 1;
  display: flex;
  background: #fff;
  border-radius: 16px;
  max-width: 860px;
  width: 92vw;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: qvSlideUp .3s ease;
}
@keyframes qvSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Close button */
.qv-close {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 10;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-1);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qv-close:hover { transform: scale(1.1); }

/* Gallery side */
.qv-gallery {
  position: relative;
  flex: 0 0 50%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.qv-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qv-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s;
}
.qv-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  color: #fff;
}
.qv-badge.deal { background: var(--deal); }
.qv-badge.new-badge { background: var(--new-badge); top: auto; bottom: 14px; }

/* Gallery arrows */
.qv-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,.85);
  border: none; border-radius: 50%;
  font-size: 24px; line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: background .15s;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-1);
}
.qv-prev { left: 10px; }
.qv-next { right: 10px; }
.qv-arrow:hover { background: #fff; }

/* Dots */
.qv-dots {
  display: flex; gap: 6px;
  padding: 10px 0 6px;
  justify-content: center;
}
.qv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.qv-dot.active { background: var(--primary); transform: scale(1.25); }

/* Thumbnails */
.qv-thumbs {
  display: flex; gap: 8px;
  padding: 4px 12px 12px;
  overflow-x: auto;
}
.qv-thumb {
  width: 54px; height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s;
  flex-shrink: 0;
}
.qv-thumb.active { border-color: var(--primary); }
.qv-thumb:hover { border-color: var(--primary-lt); }

/* Info side */
.qv-info {
  flex: 1;
  padding: 28px 28px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qv-brand {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.qv-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.3;
  margin: 0;
}
.qv-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.qv-stars { color: var(--star); letter-spacing: -1px; }
.qv-rating-val { font-weight: 600; color: var(--text-2); }
.qv-review-cnt { color: var(--text-3); }
.qv-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.qv-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--deal);
}
.qv-orig-price {
  font-size: 15px;
  color: var(--text-3);
  text-decoration: line-through;
}
.qv-save-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--deal);
  background: var(--deal-bg);
  padding: 3px 8px;
  border-radius: 4px;
}
.qv-variations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}
.qv-attr-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: capitalize;
  width: 100%;
  margin-bottom: 2px;
}
.qv-var-pill {
  font-size: 12px;
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  color: var(--text-2);
  background: #fff;
  transition: border-color .15s;
}
.qv-var-pill:hover { border-color: var(--primary); }
.qv-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

/* "Get" button in modal */
.qv-get-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .1s;
  margin-top: auto;
}
.qv-get-btn:hover { background: var(--primary-dk); transform: scale(1.01); }
.qv-get-btn:active { transform: scale(.98); }
.qv-get-btn svg { flex-shrink: 0; }

/* Action row – Get + Share side-by-side */
.qv-action-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.qv-action-row .qv-get-btn {
  flex: 1;
  margin-top: 0;
}
.qv-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .1s;
  flex-shrink: 0;
}
.qv-share-btn:hover { background: rgba(252,70,170,.07); transform: scale(1.01); }
.qv-share-btn:active { transform: scale(.97); }
.qv-share-btn svg { flex-shrink: 0; }

.qv-app-hint {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin: 0;
}



/* ── Quick-View Responsive ── */
@media (max-width: 700px) {
  .qv-content {
    flex-direction: column;
    width: 100vw;
    max-width: 100vw;
    max-height: 95vh;
    border-radius: 16px 16px 0 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    top: auto;
    animation: qvSlideUpMobile .3s ease;
  }
  @keyframes qvSlideUpMobile {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .qv-modal { align-items: flex-end; }
  .qv-gallery { flex: 0 0 auto; max-height: 45vh; }
  .qv-img-wrap { aspect-ratio: auto; max-height: 40vh; }
  .qv-info { padding: 20px 20px 24px; }
  .qv-name { font-size: 17px; }
  .qv-price { font-size: 22px; }
  .qv-thumbs { display: none; }
}

/* ════════════════════════════════════════
   HOMEPAGE DYNAMIC SECTIONS
════════════════════════════════════════ */

/* Section Intro */
.section-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-intro .section-tag {
  display: inline-block;
  background: rgba(252, 70, 170, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section-intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}

.section-intro p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.section-empty {
  text-align: center;
  color: var(--text-3);
  padding: 2rem;
  font-size: 0.9375rem;
}

/* Popular Styles Gallery */
.popular-styles-section {
  padding: 4rem 0;
  background: var(--surface);
}

.styles-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.style-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}

.style-item:hover {
  transform: scale(1.02);
}

.style-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2rem 0.75rem 0.75rem;
}

/* Featured Stylists */
.featured-stylists-section {
  padding: 4rem 0;
  background: var(--bg);
}

.featured-stylists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.featured-stylist-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.featured-stylist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fs-photo {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.fs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-verified {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #10B981;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.fs-info {
  padding: 1rem;
}

.fs-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fs-location {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fs-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fs-rating .star {
  color: #ddd;
  font-size: 0.75rem;
}

.fs-rating .star.filled {
  color: var(--star);
}

.fs-rating span {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-left: 4px;
}

/* Upcoming Classes */
.upcoming-classes-section {
  padding: 4rem 0;
  background: var(--surface);
}

.upcoming-classes-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.upcoming-class-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg);
  border-radius: 16px;
  padding: 1.25rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.upcoming-class-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.uc-date {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.uc-month {
  font-size: 0.6875rem;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

.uc-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.uc-info {
  flex: 1;
  min-width: 0;
}

.uc-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.25rem;
}

.uc-meta {
  font-size: 0.8125rem;
  color: var(--text-3);
}

.uc-free {
  color: #10B981;
  font-weight: 600;
}

.uc-action .btn-sm {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
}

/* Community Highlights */
.community-highlights-section {
  padding: 4rem 0;
  background: var(--bg);
}

.community-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.community-highlight-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.community-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ch-image {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.ch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch-content {
  padding: 1.25rem;
}

.ch-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.ch-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ch-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ch-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.ch-author span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
}

/* Loading spinner for sections */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: var(--text-3);
  grid-column: 1 / -1;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-spinner p {
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .styles-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .featured-stylists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .community-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .styles-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-stylists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .community-highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .upcoming-class-card {
    gap: 1rem;
    padding: 1rem;
  }
  
  .uc-date {
    width: 52px;
    height: 52px;
  }
  
  .uc-day {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .styles-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .featured-stylists-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .popular-styles-section,
  .featured-stylists-section,
  .upcoming-classes-section,
  .community-highlights-section {
    padding: 3rem 0;
  }
}
