/* ============================================================
   LUMIÈRE BEAUTY – STORE FRONT  (Professional Redesign 2026)
   ============================================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS VARIABLES ── */
:root {
  /* Brand */
  --rose:      #c9637a;
  --rose-dark: #7e294b;
  --rose-soft: #f9e4ea;
  --rose-mid:  #e8a0b8;

  /* Neutrals */
  --ink:     #1a1018;
  --muted:   #6b5b6e;
  --subtle:  #9b8a9e;
  --line:    #ede5ee;
  --paper:   #fdf8fc;
  --surface: #ffffff;
  --warm-bg: #fef9fd;

  /* Accent */
  --gold:    #c9a96e;
  --sage:    #5f7f6f;
  --lavender:#7b6fa6;

  /* Sizes */
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow: 0 8px 28px rgba(26,16,24,0.09);
  --shadow-sm: 0 2px 10px rgba(26,16,24,0.06);
  --shadow-hover: 0 16px 40px rgba(126,41,75,0.14);

  /* Typography */
  --font: 'Cairo', 'Segoe UI', system-ui, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── BASE ── */
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: var(--font); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: linear-gradient(90deg, var(--rose-dark) 0%, var(--rose) 50%, var(--rose-dark) 100%);
  background-size: 200% 100%;
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  animation: shimmer 4s linear infinite;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,248,252,0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  transition: box-shadow .3s var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(126,41,75,0.10);
}

.nav-inner {
  max-width: 1200px;
  height: 70px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── LOGO ── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 22px;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(201,169,110,.5));
}

.logo-text {
  font-size: 19px;
  font-weight: 900;
  color: var(--rose-dark);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 13.5px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--rose-dark); background: var(--rose-soft); }

/* ── NAV ACTIONS ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.icon-btn,
.admin-link {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.icon-btn svg,
.admin-link svg { width: 19px; height: 19px; }

.icon-btn:hover,
.admin-link:hover {
  border-color: var(--rose);
  color: var(--rose-dark);
  background: var(--rose-soft);
  box-shadow: 0 2px 10px rgba(201,99,122,.15);
}

.badge {
  position: absolute;
  top: -5px;
  left: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── HAMBURGER ── */
.hamburger-btn { display: none; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 8px 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 13px 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--rose-soft); color: var(--rose-dark); }

/* ── SEARCH BAR ── */
.search-bar {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 14px;
  gap: 10px;
}

.search-bar.open { display: flex; }

.search-bar input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color .2s;
}

.search-bar input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,99,122,.1); }

.search-bar button {
  height: 44px;
  padding: 0 22px;
  background: var(--rose-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s;
}

.search-bar button:hover { background: var(--rose); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--rose-dark), #5c1736);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(126,41,75,.3);
}

.btn-primary.full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  background: transparent;
  color: var(--rose-dark);
  border: 1.5px solid var(--rose-dark);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--rose-soft);
  border-color: var(--rose);
}

/* ── HERO ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 54px;
  line-height: 1.12;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-sub {
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat span {
  display: block;
  color: var(--rose-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat p {
  margin: 4px 0 0;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fce8ef 0%, #f3e2ff 60%, #e8f0ff 100%);
}

.hero-product-card {
  position: relative;
  width: min(100%, 360px);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
  animation: fadeInUp .7s var(--ease) .2s both;
}

.hp-img {
  width: 120px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--rose-soft);
}

.hp-img img { width: 100%; height: 100%; object-fit: cover; }

.hp-brand, .pc-brand {
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hp-name {
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 8px;
  font-size: 15px;
}

.hp-price {
  color: var(--rose-dark);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* ── SECTION BASE ── */
.section,
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 68px 24px;
}

.section-head { margin-bottom: 32px; }

.section-head h2,
.about-content h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.8px;
  line-height: 1.2;
}

/* ── REELS SECTION ── */
.reels-section {
  background: linear-gradient(180deg, var(--warm-bg) 0%, #f0e6f6 100%);
  max-width: 100%;
  padding: 50px 24px;
}

.reels-section .section-head,
.reels-section > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.reels-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
}

.reels-grid::-webkit-scrollbar { height: 5px; }
.reels-grid::-webkit-scrollbar-thumb { background: rgba(201,99,122,.3); border-radius: 10px; }

.reel-card {
  flex: 0 0 200px;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  background: #111;
}

.reel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.reel-media { width: 100%; height: 100%; position: relative; }

.reel-img,
.reel-video,
.reel-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity .3s;
}

.reel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.60);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 2;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #fff;
  z-index: 2;
}

.reel-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: transform .2s, background .2s;
}

.reel-card:hover .reel-play-icon {
  transform: translate(-50%, -60%) scale(1.15);
  background: var(--rose);
}

.reel-brand { font-size: 10px; opacity: .8; margin-bottom: 2px; }
.reel-title { font-size: 13px; font-weight: 700; margin-bottom: 5px; line-height: 1.3; }
.reel-price { font-size: 14px; font-weight: 900; color: #ffd6e0; }

/* ── CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

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

.cat-visual { height: 88px; }
.cv-makeup  { background: linear-gradient(135deg, #b84f6f 0%, #f1c4d0 100%); }
.cv-skin    { background: linear-gradient(135deg, #c49a50 0%, #f5e0b5 100%); }
.cv-perfume { background: linear-gradient(135deg, #6d5f8f 0%, #d8d1ef 100%); }
.cv-hair    { background: linear-gradient(135deg, #4f7f65 0%, #bfdfcf 100%); }
.cv-nails   { background: linear-gradient(135deg, #b56048 0%, #eec7b8 100%); }
.cv-tools   { background: linear-gradient(135deg, #4f6f8f 0%, #c8d9ea 100%); }

.cat-info { padding: 14px 16px; }
.cat-info h3 { font-size: 15px; font-weight: 800; margin-bottom: 3px; color: var(--ink); }
.cat-info p  { font-size: 12px; color: var(--muted); }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 4px;
}

.filter-btn {
  height: 38px;
  padding: 0 18px;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(126,41,75,.25);
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
  animation: fadeInUp .35s var(--ease) both;
  min-width: 0;
}

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

/* ── PRODUCT MEDIA ── */
.pc-image {
  height: 240px;
  position: relative;
  background: #f6eef2;
  overflow: hidden;
}

.pc-media-wrap,
.pc-media-img,
.pc-media-video,
.pc-visual { width: 100%; height: 100%; }

.pc-media-img { object-fit: cover; transition: transform .4s var(--ease); }
.product-card:hover .pc-media-img { transform: scale(1.04); }

.pc-media-video {
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s;
}

/* ── PRODUCT BADGES ── */
.pc-badge,
.pc-video-badge {
  position: absolute;
  border-radius: 99px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.pc-badge {
  top: 12px;
  left: 12px;
  padding: 4px 11px;
  background: var(--rose);
}

.pc-badge.new { background: var(--sage); }

.pc-video-badge {
  left: 12px;
  bottom: 12px;
  background: rgba(30,20,28,.72);
  backdrop-filter: blur(6px);
  padding: 3px 9px;
}

/* ── WISHLIST & QUICK VIEW ── */
.pc-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  transition: all .2s;
}

.pc-wishlist svg { width: 18px; height: 18px; }
.pc-wishlist:hover { background: #fff; color: var(--rose); transform: scale(1.1); }
.pc-wishlist.active { color: var(--rose); }

.pc-quick-view {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border: none;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: all .22s;
  z-index: 3;
}

.product-card:hover .pc-quick-view { opacity: 1; transform: translateY(0); }
.pc-quick-view:hover { background: var(--rose); color: #fff; }

/* ── PRODUCT INFO ── */
.pc-info { padding: 16px; }

.pc-brand {
  display: block;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}

.pc-name {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  color: var(--ink);
  min-height: 42px;
  margin-bottom: 8px;
  cursor: pointer;
}

.pc-name:hover { color: var(--rose-dark); }

.pc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.stars { color: var(--gold); font-size: 13px; letter-spacing: -1px; }

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pc-price { display: flex; flex-direction: column; gap: 2px; }
.old { color: var(--subtle); text-decoration: line-through; font-size: 11px; }
.current { color: var(--rose-dark); font-size: 18px; font-weight: 900; letter-spacing: -0.3px; }

.add-to-cart {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--rose-dark), #5c1736);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .22s;
  flex-shrink: 0;
}

.add-to-cart:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(126,41,75,.30);
}

.add-to-cart svg { width: 19px; height: 19px; }

/* ── VISUAL FALLBACKS ── */
.pc-visual,
.product-visual {
  display: grid;
  place-items: center;
  font-size: 52px;
  font-weight: 900;
  color: rgba(26,16,24,.3);
  height: 100%;
}

.pv-1 { background: linear-gradient(135deg, #f7d5df 0%, #fce9ef 100%); }
.pv-2 { background: linear-gradient(135deg, #efd7b8 0%, #f8edd8 100%); }
.pv-3 { background: linear-gradient(135deg, #ddd6ee 0%, #ede9f5 100%); }
.pv-4 { background: linear-gradient(135deg, #cfe0d8 0%, #dff0e8 100%); }
.pv-5 { background: linear-gradient(135deg, #e8cabe 0%, #f4ddd5 100%); }
.pv-6 { background: linear-gradient(135deg, #ccd9e8 0%, #dce9f4 100%); }
.pv-7 { background: linear-gradient(135deg, #ead5da 0%, #f5e4e8 100%); }
.pv-8 { background: linear-gradient(135deg, #dce7c8 0%, #ecf4d8 100%); }
.pv-hero { background: linear-gradient(135deg, #f7d5df 0%, #fce9ef 100%); }

/* ── LOAD MORE ── */
.load-more-wrap { margin-top: 32px; text-align: center; }

/* ── EMPTY STATE ── */
.empty-state {
  grid-column: 1 / -1;
  padding: 52px 24px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  color: var(--subtle);
  text-align: center;
  background: var(--surface);
  font-size: 15px;
}

/* ── ABOUT SECTION ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.about-content p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
  margin-top: 14px;
}

.about-features { display: grid; gap: 14px; margin-top: 24px; }

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.af-item span {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.af-item p { margin: 0; color: var(--muted); font-size: 14px; }

.about-visual {
  min-height: 360px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff0f5, #f3e2ff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.av-img {
  width: 200px;
  height: 250px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--rose), var(--rose-mid));
  box-shadow: var(--shadow);
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 56px 24px 28px;
  margin-top: 48px;
}

.footer-inner,
.footer-bottom { max-width: 1200px; margin: 0 auto; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 36px;
}

.footer .logo-text,
.footer h4 { color: #fff; }

.footer h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-brand p { line-height: 1.8; font-size: 13.5px; margin-top: 10px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  font-weight: 600;
  transition: color .15s;
}

.footer-links a:hover { color: var(--rose-mid); }

.footer-contact p { font-size: 13.5px; margin-bottom: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12.5px;
  text-align: center;
}

/* ── CART ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  z-index: 70;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: right .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.14);
}

.cart-sidebar.open { right: 0; }

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

.cart-header h3 { font-size: 17px; font-weight: 800; }
.cart-header button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  line-height: 1;
  transition: all .2s;
}

.cart-header button:hover { background: #ffeef3; color: var(--rose-dark); }

/* ── SHIPPING PROGRESS ── */
.cart-free-shipping {
  padding: 12px 20px;
  background: linear-gradient(135deg, #fff8fb, #fff0f5);
  border-bottom: 1px solid var(--line);
}

.cs-shipping-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  text-align: center;
}

.cs-shipping-track {
  height: 7px;
  background: var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.cs-shipping-fill {
  height: 100%;
  border-radius: 10px;
  transition: width .45s var(--ease), background .45s;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
}

/* ── CART ITEMS ── */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.cart-empty {
  padding: 52px 24px;
  text-align: center;
  color: var(--subtle);
  font-size: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}

.cart-item:hover { background: var(--warm-bg); }

.ci-img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--rose-soft);
  border: 1px solid var(--line);
}

.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-name { font-size: 13px; font-weight: 700; margin-bottom: 2px; line-height: 1.3; }
.ci-price { font-size: 13px; font-weight: 900; color: var(--rose-dark); }

.ci-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.ci-qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}

.ci-qty button:hover { background: var(--rose-soft); border-color: var(--rose); }
.ci-qty span { font-size: 13px; font-weight: 800; min-width: 20px; text-align: center; }

.ci-remove {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: var(--subtle);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: all .15s;
}

.ci-remove:hover { background: #ffeef3; color: var(--rose-dark); }

.cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background: var(--warm-bg);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}

.cart-total strong { color: var(--rose-dark); font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }

/* ── QUICK VIEW MODAL ── */
.qv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,8,20,.60);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn .2s;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.qv-modal-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 840px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  animation: slideUp .22s cubic-bezier(.4,0,.2,1);
}

@keyframes slideUp { from { transform: translateY(22px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.qv-close {
  position: sticky;
  top: 12px;
  left: 12px;
  float: left;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .2s;
  margin: 12px;
}

.qv-close:hover { background: #ffeef3; color: var(--rose-dark); border-color: var(--rose-mid); }

.qv-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 20px 24px 28px;
}

.qv-media-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5f8, #f5f0ff);
  border-radius: var(--radius-lg);
  padding: 16px;
  min-height: 300px;
}

.qv-video-wrap { width: 100%; text-align: center; }

.qv-video-player {
  max-width: 100%;
  max-height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.qv-video-tag {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--rose);
}

.qv-main-img { max-height: 380px; object-fit: contain; border-radius: var(--radius); }

.qv-info-col { display: flex; flex-direction: column; justify-content: center; padding-top: 8px; }

.qv-brand {
  font-size: 11px;
  font-weight: 800;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.qv-title { font-size: 22px; font-weight: 900; color: var(--ink); line-height: 1.25; margin-bottom: 14px; letter-spacing: -0.4px; }

.qv-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.qv-price { font-size: 26px; font-weight: 900; color: var(--rose-dark); letter-spacing: -0.5px; }
.old-price { color: var(--subtle); text-decoration: line-through; font-size: 14px; }

.qv-discount-badge {
  background: rgba(220,38,38,.1);
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
}

.qv-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }

.qv-stock { font-size: 13px; font-weight: 700; margin-bottom: 22px; }
.qv-stock.in-stock  { color: #16a34a; }
.qv-stock.out-stock { color: #dc2626; }

/* ── TOAST ── */
.toast {
  position: fixed;
  right: 50%;
  bottom: 26px;
  transform: translateX(50%) translateY(20px);
  z-index: 300;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 13.5px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  max-width: 92vw;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .categories-grid,
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .hamburger-btn { display: inline-flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
  }

  .hero-title { font-size: 38px; }
  .hero-image-wrap { min-height: 260px; }
  .hero-product-card { grid-template-columns: 90px 1fr; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }

  .about-section {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .qv-modal-content { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .nav-inner { padding: 0 14px; }
  .hero-title { font-size: 30px; }
  .hero, .section, .about-section { padding-inline: 14px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .pc-image { height: 200px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}