/* ============================================
   VELOURIAA.CO — DESIGN SYSTEM
   ============================================ */

:root {
  --pink:        #E91E8C;
  --pink-light:  #FF6EC7;
  --pink-pale:   #FFF0F8;
  --pink-dark:   #B5156D;
  --plum:        #2D1B2E;
  --plum-mid:    #4A2D4E;
  --white:       #FFFFFF;
  --off-white:   #FDF8FC;
  --gray-50:     #F9F5F8;
  --gray-100:    #F0E8EF;
  --gray-200:    #DDD0DC;
  --gray-400:    #9E8A9D;
  --gray-600:    #6B5A6A;
  --gray-800:    #3D2B3C;
  --gold:        #D4A017;
  --green:       #22C55E;
  --red:         #EF4444;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(45,27,46,.08);
  --shadow-md:   0 4px 16px rgba(45,27,46,.12);
  --shadow-lg:   0 8px 32px rgba(45,27,46,.16);
  --shadow-xl:   0 16px 48px rgba(45,27,46,.20);
  --shadow-pink: 0 8px 24px rgba(233,30,140,.30);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.45s cubic-bezier(0.4,0,0.2,1);

  --nav-h: 60px;
  --cat-h: 44px;
  --announce-h: 36px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--plum);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }
ul { list-style: none; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--plum);
  color: var(--white);
  height: var(--announce-h);
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: marqueeSlide 20s linear infinite;
  white-space: nowrap;
}

.announcement-inner .sep { opacity: 0.4; }

@keyframes marqueeSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  height: var(--nav-h);
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--plum);
  white-space: nowrap;
  letter-spacing: -0.5px;
}

.logo-v {
  color: var(--pink);
  font-style: italic;
}

.logo-dot {
  color: var(--pink);
  font-size: 18px;
  font-weight: 400;
}

/* Search */
.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0 6px 0 16px;
  height: 42px;
  transition: border-color var(--transition), box-shadow var(--transition);
  max-width: 560px;
}

.search-bar:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,.10);
  background: var(--white);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
  margin-right: 10px;
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--plum);
  outline: none;
}

.search-bar input::placeholder { color: var(--gray-400); }

.search-btn {
  background: var(--pink);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.search-btn:hover { background: var(--pink-dark); transform: scale(1.03); }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--plum);
  transition: background var(--transition), color var(--transition);
}

.nav-icon-btn:hover { background: var(--pink-pale); color: var(--pink); }

.nav-icon-btn svg { width: 22px; height: 22px; }

.badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}

/* Category Nav */
.cat-nav {
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  overflow-x: auto;
  scrollbar-width: none;
}

.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  height: var(--cat-h);
}

.cat-link {
  padding: 0 16px;
  height: var(--cat-h);
  display: flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.cat-link:hover, .cat-link.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,27,46,.5);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.mobile-overlay.open { display: block; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-search {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-search input {
  width: 100%;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  outline: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.mobile-nav a {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--plum);
  border-bottom: 1px solid var(--gray-50);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover { background: var(--pink-pale); color: var(--pink); }

.close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 16px;
  color: var(--gray-600);
  transition: background var(--transition);
}

.close-btn:hover { background: var(--gray-100); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  height: 560px;
}

.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero-slide.active { opacity: 1; pointer-events: all; }

.hero-content {
  flex: 1;
  padding: 60px 60px 60px 80px;
  color: var(--white);
  max-width: 560px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title em {
  font-style: italic;
  color: var(--pink-light);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(233,30,140,.40);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition);
}

.btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 22px; font-weight: 800; color: var(--white); }
.stat span { font-size: 12px; opacity: 0.7; }

/* Hero Visual */
.hero-visual {
  flex: 0 0 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  position: relative;
  padding-right: 40px;
}

.hero-img-wrap {
  position: relative;
  width: 320px;
  height: 480px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-xl);
}

.hero-badge-float {
  position: absolute;
  background: var(--white);
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: floatBadge 3s ease-in-out infinite;
}

.badge-1 { top: 40px; left: -30px; animation-delay: 0s; }
.badge-2 { bottom: 80px; right: -20px; animation-delay: 1.5s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero Controls */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.4);
  transition: all var(--transition);
}

.dot.active {
  background: var(--white);
  width: 24px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
}

.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  flex: 1;
  min-width: 160px;
  border-right: 1px solid var(--gray-100);
}

.trust-item:last-child { border-right: none; }

.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--pink);
  flex-shrink: 0;
}

.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 13px; font-weight: 700; color: var(--plum); }
.trust-item span { font-size: 11.5px; color: var(--gray-400); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-title em {
  font-style: italic;
  color: var(--pink);
}

.section-sub {
  font-size: 15px;
  color: var(--gray-400);
}

/* ============================================
   CATEGORIES GRID
   ============================================ */
.categories {
  padding: 72px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.cat-card.cat-large {
  grid-row: span 2;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat-card:hover img { transform: scale(1.07); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,46,.85) 0%, rgba(45,27,46,.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(233,30,140,.75) 0%, rgba(45,27,46,.3) 60%, transparent 100%);
}

.cat-overlay h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cat-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 12px;
}

.cat-cta {
  display: inline-block;
  background: var(--white);
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--transition);
}

.cat-card:hover .cat-cta { transform: translateY(0); opacity: 1; }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  padding: 0 24px 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 0;
  min-height: 200px;
  position: relative;
}

.promo-pink { background: linear-gradient(135deg, #E91E8C, #FF6EC7); }
.promo-dark { background: linear-gradient(135deg, #2D1B2E, #6B1F5E); }

.promo-text { color: var(--white); z-index: 2; }

.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.promo-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.promo-text p { font-size: 14px; opacity: 0.85; margin-bottom: 20px; }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--pink);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.promo-card img {
  height: 180px;
  width: 160px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  align-self: flex-end;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  padding: 0 24px 72px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}

.filter-tab:hover { border-color: var(--pink); color: var(--pink); }

.filter-tab.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.sort-select {
  padding: 9px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--plum);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.sort-select:focus { border-color: var(--pink); }

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

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-50);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.product-badge.badge-new { background: var(--green); }
.product-badge.badge-hot { background: #FF6B35; }

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.product-card:hover .product-wishlist { opacity: 1; transform: scale(1); }

.product-wishlist:hover { background: var(--pink-pale); }

.product-wishlist svg { width: 16px; height: 16px; color: var(--pink); }
.product-wishlist.wishlisted svg { fill: var(--pink); }

.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--plum);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.product-card:hover .product-quick-add { transform: translateY(0); }

.product-info {
  padding: 14px 16px 16px;
}

.product-brand {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 8px;
  line-height: 1.4;
  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-small { color: var(--gold); font-size: 12px; }

.rating-count { font-size: 11.5px; color: var(--gray-400); }

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 17px;
  font-weight: 800;
  color: var(--plum);
}

.price-original {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-discount {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* Load More */
.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-load-more {
  background: var(--white);
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 14px 48px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-load-more:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */
.brands-section {
  padding: 0 0 72px;
  overflow: hidden;
}

.brands-section .section-header { padding: 0 24px; }

.brands-marquee {
  overflow: hidden;
  position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.brands-marquee::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.brands-marquee::after  { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }

.brands-track {
  display: flex;
  gap: 16px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.brand-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--plum);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}

.brand-pill:hover { border-color: var(--pink); color: var(--pink); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 0 24px 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--plum), var(--plum-mid));
  color: var(--white);
  border-color: transparent;
}

.stars { font-size: 18px; color: var(--gold); margin-bottom: 14px; }
.testimonial-card.featured .stars { color: #FFD700; }

.testimonial-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card.featured p { color: rgba(255,255,255,.85); }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: 14px; font-weight: 700; color: var(--plum); }
.testimonial-card.featured .reviewer strong { color: var(--white); }
.reviewer span { font-size: 12px; color: var(--gray-400); }
.testimonial-card.featured .reviewer span { color: rgba(255,255,255,.6); }

/* ============================================
   APP BANNER
   ============================================ */
.app-banner {
  background: linear-gradient(135deg, var(--plum) 0%, #6B1F5E 100%);
  margin: 0 24px 72px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 1352px;
  margin-left: auto;
  margin-right: auto;
}

.app-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  gap: 40px;
}

.app-text { color: var(--white); flex: 1; }

.app-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.app-text h2 em { font-style: italic; color: var(--pink-light); }

.app-text p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 440px;
  line-height: 1.7;
}

.app-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition);
}

.app-store-btn:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.app-store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }

.app-store-btn div { display: flex; flex-direction: column; }
.app-store-btn span { font-size: 11px; opacity: 0.75; }
.app-store-btn strong { font-size: 16px; font-weight: 700; }

.app-visual img {
  height: 280px;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--plum);
  color: rgba(255,255,255,.75);
}

.footer-top {
  display: flex;
  gap: 60px;
  padding: 64px 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-brand { flex: 0 0 280px; }

.footer-logo { margin-bottom: 16px; display: block; }
.footer-logo .logo-v, .footer-logo .logo-dot { color: var(--pink-light); }
.footer-logo { color: var(--white); }

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}

.social-links a:hover { background: var(--pink); color: var(--white); }
.social-links svg { width: 16px; height: 16px; }

.footer-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--pink-light); }

.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--pink); }

.newsletter-form button {
  background: var(--pink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--pink-dark); }

.payment-icons { display: flex; gap: 8px; font-size: 22px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; }

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--pink-light); }

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,27,46,.5);
  z-index: 300;
  backdrop-filter: blur(2px);
}

.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 301;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--plum);
}

.cart-header span { font-size: 14px; color: var(--gray-400); font-family: var(--font-body); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--gray-400);
  text-align: center;
  padding: 40px;
}

.cart-empty svg { width: 64px; height: 64px; opacity: 0.3; }
.cart-empty p { font-size: 16px; font-weight: 600; color: var(--gray-600); }
.cart-empty span { font-size: 13px; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-brand { font-size: 11px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; }
.cart-item-name { font-size: 13.5px; font-weight: 600; color: var(--plum); margin: 3px 0 8px; line-height: 1.4; }
.cart-item-price { font-size: 15px; font-weight: 800; color: var(--pink); }

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--plum);
  transition: all var(--transition);
}

.qty-btn:hover { border-color: var(--pink); color: var(--pink); }

.qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }

.remove-btn {
  margin-left: auto;
  color: var(--gray-400);
  font-size: 18px;
  transition: color var(--transition);
}

.remove-btn:hover { color: var(--red); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total span { font-size: 15px; color: var(--gray-600); }
.cart-total strong { font-size: 22px; font-weight: 800; color: var(--plum); }

.btn-checkout {
  width: 100%;
  background: var(--pink);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: background var(--transition), transform var(--transition);
}

.btn-checkout:hover { background: var(--pink-dark); transform: translateY(-1px); }

.btn-continue {
  width: 100%;
  background: transparent;
  color: var(--gray-600);
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: color var(--transition);
}

.btn-continue:hover { color: var(--pink); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--plum);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 500;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  pointer-events: none;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--pink);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--pink-dark); transform: translateY(-3px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero-visual { flex: 0 0 340px; }
  .hero-content { padding: 40px 40px 40px 60px; }
  .footer-top { padding: 48px 40px 40px; gap: 40px; }
  .footer-bottom { padding: 20px 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .app-banner-inner { padding: 48px 60px; }
}

@media (max-width: 900px) {
  .hero { height: auto; min-height: 480px; }
  .hero-slide { flex-direction: column; position: relative; }
  .hero-slide.active { display: flex; }
  .hero-slide:not(.active) { display: none; }
  .hero-content { padding: 48px 32px 24px; max-width: 100%; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .cat-card.cat-large { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .promo-inner { grid-template-columns: 1fr; }
  .app-banner-inner { flex-direction: column; padding: 48px 40px; text-align: center; }
  .app-btns { justify-content: center; }
  .app-visual { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .search-bar { max-width: none; }
  .nav-container { gap: 10px; }
  .trust-inner { gap: 0; }
  .trust-item { min-width: 140px; padding: 16px 12px; }
  .trust-item svg { width: 22px; height: 22px; }
  .footer-top { flex-direction: column; padding: 40px 24px 32px; gap: 32px; }
  .footer-brand { flex: none; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; }
  .cart-drawer { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 14px; font-size: 12.5px; }
  .categories { padding: 48px 16px; }
  .promo-banner { padding: 0 16px 48px; }
  .products-section { padding: 0 16px 48px; }
  .testimonials { padding: 0 16px 48px; }
  .app-banner { margin: 0 16px 48px; border-radius: var(--radius-lg); }
  .app-banner-inner { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 36px 20px 20px; }
  .hero-title { font-size: 40px; }
  .hero-ctas { gap: 10px; }
  .btn-primary, .btn-ghost { padding: 12px 22px; font-size: 14px; }
  .hero-stats { gap: 16px; }
  .stat strong { font-size: 18px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px 12px 12px; }
  .price-current { font-size: 15px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }
  .section-title { font-size: 26px; }
  .trust-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--gray-100); }
}