/* ============================================================
   FLORENZA — CSS
   Aesthetic: Dark Luxury + Cream Accents + Serif Headlines
   ============================================================ */

:root {
  --black: #0D0A08;
  --dark: #181310;
  --card-bg: #1E1914;
  --cream: #F5F0E8;
  --cream-2: #EDE6D8;
  --gold: #C9A96E;
  --gold-light: #E8C98A;
  --rose: #C8102E;
  --rose-light: #E8334A;
  --text: #F5F0E8;
  --text-muted: #9A9180;
  --border: rgba(201,169,110,0.2);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ---- CUSTOM CURSOR ---- */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform .15s ease;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transition: transform .08s linear, width .3s, height .3s, opacity .3s;
  opacity: 0.6;
}
body:hover .cursor-dot { opacity:1; }

/* ---- LOADER ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--cream);
}
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 1.5s ease;
}

/* ---- HEADER ---- */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background .4s, backdrop-filter .4s, padding .3s;
}
#header.scrolled {
  background: rgba(13,10,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  transition: padding .3s;
}
#header.scrolled .navbar-custom { padding: 16px 40px; }
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }
.nav-link-custom {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .3s;
  position: relative;
}
.nav-link-custom::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link-custom:hover { color: var(--cream); }
.nav-link-custom:hover::after { width: 100%; }

.brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-decoration: none;
  flex: 0;
  white-space: nowrap;
}

.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -10px;
  background: var(--rose);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---- SECTION COMMONS ---- */
.section-pad { padding: 100px 0; }
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body { color: var(--text-muted); line-height: 1.8; max-width: 480px; }

/* ---- BUTTONS ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 60px;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.btn-primary-custom:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.3);
}
.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid var(--border);
  border-radius: 60px;
  transition: border-color .3s, color .3s;
}
.btn-ghost-custom:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid var(--border);
  border-radius: 60px;
  transition: all .3s;
}
.btn-outline-custom:hover { border-color: var(--gold); color: var(--gold); }

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10rem, 22vw, 20rem);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
  overflow: hidden;
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 1.3rem; font-weight: 600; color: var(--cream); }
.stat-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.stat-div { width: 1px; height: 32px; background: var(--border); }

/* Hero Image Grid */
.hero-img-col { display: flex; justify-content: center; }
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 540px;
}
.hero-img-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-1 {
  width: 280px; height: 360px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.card-2 {
  width: 180px; height: 220px;
  top: 20px; right: 0;
  z-index: 2;
  transform: rotate(4deg);
}
.card-3 {
  width: 160px; height: 200px;
  bottom: 20px; left: 0;
  z-index: 2;
  transform: rotate(-3deg);
}
.img-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.floating-petal {
  position: absolute;
  font-size: 2rem;
  animation: floatPetal 4s ease-in-out infinite;
  pointer-events: none;
}
.petal-1 { top: 10%; left: 5%; animation-delay: 0s; }
.petal-2 { top: 40%; right: -10px; animation-delay: 1s; }
.petal-3 { bottom: 10%; left: 20%; animation-delay: 2s; }
@keyframes floatPetal {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---- FILTER TABS ---- */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  background: transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 40px;
  cursor: pointer;
  transition: all .3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ---- PRODUCT CARD ---- */
.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.product-card:hover { transform: translateY(-8px); color: inherit; }

.product-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--card-bg);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}
.new-badge { background: #22c55e; color: #fff; }
.sale-badge { background: var(--rose); color: #fff; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,10,8,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover .product-overlay { opacity: 1; }

.quick-add {
  background: var(--cream);
  color: var(--black);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border-radius: 40px;
  cursor: pointer;
  transform: translateY(10px);
  transition: transform .3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--gold); }

.product-info { padding: 14px 4px 4px; }
.product-cat {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-weight: 600; font-size: 0.95rem; color: var(--gold); }
.product-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; }

/* ---- FEATURE BANNER ---- */
.feature-banner { padding: 60px 0; }
.feature-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.fb-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 260px;
}
.fb-left { background: linear-gradient(135deg, #1E1914 0%, #2D2218 100%); border: 1px solid var(--border); }
.fb-right { background: linear-gradient(135deg, var(--rose) 0%, #8B0020 100%); }
.fb-content { flex: 1; z-index: 2; }
.fb-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.fb-right .fb-eyebrow { color: rgba(255,255,255,0.7); }
.fb-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}
.fb-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }
.fb-right p { color: rgba(255,255,255,0.7); }
.btn-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 40px;
  transition: all .3s;
}
.btn-banner:hover { background: var(--gold-light); color: var(--black); transform: translateY(-2px); }
.btn-banner.dark { background: var(--black); color: var(--cream); }
.btn-banner.dark:hover { background: var(--cream); color: var(--black); }
.fb-img {
  flex: 0;
  width: 160px;
}
.fb-img img {
  width: 100%;
  border-radius: 12px;
  transform: rotate(4deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform .4s;
}
.fb-card:hover .fb-img img { transform: rotate(0deg) scale(1.05); }

/* ---- WHY US ---- */
.features-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.fi-icon {
  width: 44px; height: 44px;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item h5 { font-size: 0.9rem; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.feature-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.why-img-grid { display: grid; grid-template-columns: 1fr 180px; gap: 16px; height: 480px; }
.wig-large { border-radius: var(--radius); overflow: hidden; }
.wig-large img { width: 100%; height: 100%; object-fit: cover; }
.wig-small-col { display: flex; flex-direction: column; gap: 16px; }
.wig-small { border-radius: var(--radius); overflow: hidden; flex: 1; }
.wig-small img { width: 100%; height: 100%; object-fit: cover; }
.wig-stat-box {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.wsb-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--black); }
.wsb-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.wsb-stars { color: var(--black); font-size: 0.9rem; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--dark); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .3s, border-color .3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(201,169,110,0.4); }
.tc-large {
  grid-column: 1;
  grid-row: 1 / 3;
}
.tc-accent {
  background: linear-gradient(135deg, var(--rose) 0%, #8B0020 100%);
  border-color: transparent;
  position: relative;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  position: absolute;
  top: 16px; left: 24px;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.tc-accent .testi-stars { color: rgba(255,255,255,0.7); }
.testi-text { color: var(--text-muted); line-height: 1.7; font-size: 0.9rem; margin-bottom: 24px; }
.tc-large .testi-text { font-size: 1rem; }
.tc-accent .testi-text { color: rgba(255,255,255,0.85); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--cream); }
.testi-author span { font-size: 0.75rem; color: var(--text-muted); }
.tc-accent .testi-author strong { color: #fff; }
.tc-accent .testi-author span { color: rgba(255,255,255,0.6); }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.nl-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.12) 0%, transparent 70%);
}
.nl-inner {
  position: relative;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.nl-title em { font-style: italic; color: var(--gold); }
.newsletter-section p { color: var(--text-muted); margin-bottom: 32px; }
.nl-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.nl-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .3s;
}
.nl-form input::placeholder { color: var(--text-muted); }
.nl-form input:focus { border-color: var(--gold); }
.nl-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s;
}
.nl-form button:hover { background: var(--gold-light); }

/* ---- FOOTER ---- */
.footer { background: var(--dark); padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color .3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.footer-contact i { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; margin: 0; }
.footer-pay { display: flex; gap: 12px; }
.footer-pay span {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ---- CART TOAST ---- */
.cart-toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: #16a34a;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9000;
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRODUCT PAGE SPECIFIC
   ============================================================ */
.product-page { background: var(--black); }

/* Breadcrumb */
.custom-breadcrumb { font-size: 0.78rem; }
.custom-breadcrumb .breadcrumb-item a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.custom-breadcrumb .breadcrumb-item a:hover { color: var(--gold); }
.custom-breadcrumb .breadcrumb-item.active { color: var(--text-muted); }
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--border); }

/* Gallery */
.pd-gallery { position: sticky; top: 100px; }
.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--card-bg);
  aspect-ratio: 1/1;
  margin-bottom: 16px;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
}
.gallery-zoom-hint {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 1rem;
}
.gallery-thumbs { display: flex; gap: 12px; }
.thumb {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  aspect-ratio: 1/1;
  transition: border-color .3s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--gold); }
.thumb:hover { border-color: rgba(201,169,110,0.5); }

/* Product Info */
.pd-info { padding-top: 8px; }
.pd-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pd-category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.pd-wishlist {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.pd-wishlist:hover, .pd-wishlist.active { background: #fee2e2; border-color: #ef4444; color: #ef4444; }

.pd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}
.pd-title em { font-style: italic; color: var(--gold); }

.pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }
.rating-dot { color: var(--border); }
.rating-stock { font-size: 0.78rem; font-weight: 600; color: #22c55e; display: flex; align-items: center; gap: 5px; }

.pd-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pd-price { font-size: 2rem; font-weight: 700; color: var(--gold); }
.pd-price-old { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.pd-discount {
  background: rgba(200, 16, 46, 0.15);
  color: var(--rose-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
}

.pd-desc { color: var(--text-muted); line-height: 1.8; font-size: 0.9rem; margin-bottom: 28px; }

/* Options */
.pd-option-group { margin-bottom: 24px; }
.pd-option-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pd-option-label strong { color: var(--cream); font-weight: 600; }

.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 2px solid transparent;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { box-shadow: 0 0 0 3px var(--black), 0 0 0 5px var(--gold); }

.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
  line-height: 1.4;
}
.size-btn small { display: block; color: var(--gold); font-weight: 600; }
.size-btn:hover, .size-btn.active {
  background: rgba(201,169,110,0.12);
  border-color: var(--gold);
  color: var(--cream);
}

/* Add to Cart */
.pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: stretch;
}
.qty-control {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  padding: 0 4px;
}
.qty-btn {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.1rem;
  width: 40px; height: 52px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.qty-btn:hover { color: var(--gold); }
.qty-display { width: 32px; text-align: center; font-weight: 600; font-size: 1rem; color: var(--cream); }

.btn-add-cart {
  flex: 1;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: all .3s;
}
.btn-add-cart:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}

.btn-buy-now {
  width: 100%;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px;
  cursor: pointer;
  transition: all .3s;
  margin-bottom: 28px;
}
.btn-buy-now:hover { border-color: var(--gold); color: var(--gold); }

/* Delivery info */
.pd-delivery-info {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.di-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.di-item > i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.di-item strong { display: block; font-size: 0.85rem; color: var(--cream); margin-bottom: 2px; }
.di-item span { font-size: 0.78rem; color: var(--text-muted); }

/* Share */
.pd-share {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.pd-share a {
  width: 36px; height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all .3s;
}
.pd-share a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Product Tabs */
.product-tabs-section { margin-top: 0; }
.pt-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pt-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  margin-bottom: -1px;
  transition: all .3s;
}
.pt-tab:hover { color: var(--cream); }
.pt-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.pt-panel { display: none; }
.pt-panel.active { display: block; }

.detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.detail-list li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.88rem; }
.detail-list li i { color: var(--gold); }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 10px 0; font-size: 0.85rem; color: var(--text-muted); }
.spec-table td:first-child { font-weight: 600; color: var(--cream); width: 45%; }

.care-tips { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.care-tip { display: flex; align-items: flex-start; gap: 16px; }
.ct-icon {
  width: 44px; height: 44px;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.care-tip strong { display: block; color: var(--cream); font-size: 0.9rem; margin-bottom: 4px; }
.care-tip p { color: var(--text-muted); font-size: 0.82rem; margin: 0; line-height: 1.6; }

.delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dg-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.dg-item > i { font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: 16px; }
.dg-item h5 { font-size: 0.9rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.dg-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Reviews */
.reviews-summary { display: flex; gap: 40px; align-items: center; padding: 28px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); }
.rs-score { text-align: center; }
.rs-big { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700; color: var(--cream); display: block; line-height: 1; }
.rs-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin: 4px 0; }
.rs-score > span { font-size: 0.75rem; color: var(--text-muted); }
.rs-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rb-row { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: var(--text-muted); }
.rb-bar { flex: 1; height: 6px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.rb-fill { height: 100%; background: var(--gold); border-radius: 10px; }

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
}
.rc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rc-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.rc-header strong { display: block; color: var(--cream); font-size: 0.9rem; }
.rc-stars { color: var(--gold); font-size: 0.75rem; }
.rc-date { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }
.review-card > p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* Related products */
.related-products { background: var(--dark); }

/* Sticky Bar */
.sticky-cart-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,10,8,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 500;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.scb-info strong { display: block; color: var(--cream); font-size: 0.9rem; }
.scb-info span { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.scb-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s;
}
.scb-btn:hover { background: var(--gold-light); }

/* Section header */
.section-header { margin-bottom: 48px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .testi-grid { grid-template-columns: 1fr; }
  .tc-large { grid-column: auto; grid-row: auto; }
  .feature-banner-inner { grid-template-columns: 1fr; }
  .why-img-grid { height: 320px; }
  .pd-gallery { position: static; margin-bottom: 40px; }
  .delivery-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .sticky-cart-bar { display: flex; }
  .pd-info { padding-bottom: 80px; }
}

@media (max-width: 768px) {
  .navbar-custom { padding: 18px 20px; }
  .hero-img-wrap { height: 380px; max-width: 380px; }
  .card-1 { width: 200px; height: 260px; }
  .card-2 { width: 130px; height: 160px; }
  .card-3 { width: 110px; height: 140px; }
  .nl-form { flex-direction: column; }
  .fb-img { display: none; }
  .fb-card { padding: 32px; }
  .section-pad { padding: 60px 0; }
  .why-img-grid { height: auto; grid-template-columns: 1fr; }
  .wig-small-col { flex-direction: row; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pd-actions { flex-direction: column; }
  .qty-control { justify-content: center; }
  .btn-add-cart { width: 100%; justify-content: center; }
  .size-options { gap: 6px; }
}
