/* ============================================================
   HOUSE OF HAIR LOUNGE — Main Stylesheet
   Version 1.0 | Production Ready
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

/* ==========================================
   CSS CUSTOM PROPERTIES (EDIT COLORS HERE)
   ========================================== */
:root {
  /* Brand Colors */
  --black:        #0A0A0A;
  --off-black:    #1A1A1A;
  --charcoal:     #333333;
  --gray:         #888888;
  --light-gray:   #DDDDD8;
  --white:        #FFFFFF;
  --cream:        #FAF7FC;
  --ivory:        #F2EAF7;
  --gold:         #9B2EB8;
  --gold-dark:    #7A1E96;
  --gold-light:   #D4AAEC;
  --nude:         #C8A0D8;
  --blush:        #E8D4F0;
  --blush-light:  #F5EEFB;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --section-pad:   100px;

  /* Effects */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-md: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.16);
  --shadow-gold:   0 6px 24px rgba(155,46,184,0.28);
}

/* ==========================================
   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);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--off-black);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.italic-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) { .container { padding: 0 20px; } }

.text-center { text-align: center; }
.gold { color: var(--gold); }

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-label .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.85;
}

.section-subtitle.centered { margin: 0 auto; }

/* Gold divider ornament */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 0 auto 20px;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  max-width: 60px;
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
  border-radius: 0;
}

.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--off-black);
}

.btn-outline-dark {
  background: transparent;
  color: var(--off-black);
  border: 1px solid var(--off-black);
}
.btn-outline-dark:hover {
  background: var(--off-black);
  color: var(--white);
}

.btn-dark {
  background: var(--off-black);
  color: var(--white);
  border: 1px solid var(--off-black);
}
.btn-dark:hover {
  background: #2a2a2a;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: all 0.4s ease;
}

.nav-announcement {
  background: var(--off-black);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(155,46,184,0.12);
  transition: all 0.4s ease;
  overflow: hidden;
}

.nav-announcement strong { color: var(--gold); }

.nav-announcement a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav.scrolled .nav-announcement {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 40px;
  background: transparent;
  transition: all 0.4s ease;
}

.nav.scrolled .nav-bar {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  padding: 16px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-right { justify-content: flex-end; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-logo {
  text-align: center;
  cursor: pointer;
}

.nav-logo a { display: block; }

.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
  margin: 0 auto;
  transition: opacity var(--transition);
  filter: drop-shadow(0 0 8px rgba(155,46,184,0.3));
}

.nav-logo img:hover { opacity: 0.88; }

/* Keep text fallback classes in case used elsewhere */
.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

/* Footer logo image */
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 8px rgba(180,0,180,0.2));
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(155,46,184,0.5);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── NAV DROPDOWN ── */
.nav-has-dropdown {
  position: relative;
}

/* Chevron next to Shop link */
.nav-has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-has-dropdown > a .nav-chevron {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-has-dropdown:hover > a .nav-chevron,
.nav-has-dropdown:focus-within > a .nav-chevron {
  transform: rotate(180deg);
  stroke: var(--gold);
}

/* The dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(18,18,18,0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(155,46,184,0.18);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 901;
}

/* Invisible bridge so hover doesn't drop when moving from link to panel */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-dropdown a:last-child { border-bottom: none; }

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(155,46,184,0.06);
  padding-left: 28px;
}

.nav-dropdown a svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-dropdown a:hover svg { opacity: 1; }

/* Gold left border on hover */
.nav-dropdown a::before {
  display: none;
}

/* ── MOBILE SHOP SUBMENU ── */
.mobile-sub {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  margin-top: -4px;
  margin-bottom: 8px;
  border-left: 1px solid rgba(155,46,184,0.3);
}

.mobile-sub a {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.45) !important;
  padding: 8px 0 !important;
  border-bottom: none !important;
  letter-spacing: 0.08em;
}

.mobile-sub a:hover { color: var(--gold) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(85vw, 380px);
  height: 100vh;
  background: var(--off-black);
  z-index: 950;
  padding: 90px 40px 50px;
  transition: right 0.45s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(3px);
}

.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.mobile-close:hover { border-color: var(--gold); color: var(--gold); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}

.mobile-nav-links a:hover { color: var(--gold); }

.mobile-nav-links a:last-child { border-bottom: none; }

.mobile-footer {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-footer .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.mobile-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mobile-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.mobile-socials a:hover { border-color: var(--gold); color: var(--gold); }
.mobile-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/*
  ┌─────────────────────────────────────────────────────────┐
  │  HERO BACKGROUND IMAGE                                  │
  │  Replace .hero-bg background with:                      │
  │  background-image: url('../images/hero-bg.jpg');        │
  │                                                         │
  │  IDEAL IMAGE: Full-width photo of a beautiful woman     │
  │  with long flowing virgin hair, OR a luxury hair salon  │
  │  interior shot. Resolution: 2400×1600px minimum.        │
  │  Use a dark/moody lighting style.                       │
  └─────────────────────────────────────────────────────────┘
*/
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0010 0%, #1e0828 40%, #0a0a0a 100%);
  background-size: cover;
  background-position: center top;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.65) 55%,
    rgba(10,10,10,0.2) 100%
  );
  z-index: 1;
}

/* Subtle texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(155,46,184,0.12) 0%, transparent 60%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 5;
  padding-top: 160px;
  padding-bottom: 120px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-eyebrow .line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-eyebrow .eyebrow { color: var(--gold); }

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 26px;
  max-width: 700px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-accent);
  font-weight: 300;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  line-height: 1.9;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(155,46,184,0.8), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Floating badge on hero */
.hero-badge {
  position: absolute;
  right: 80px;
  bottom: 120px;
  z-index: 5;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(155,46,184,0.35);
  backdrop-filter: blur(10px);
  padding: 22px 28px;
  text-align: center;
  min-width: 140px;
}

.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-badge-label {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  display: block;
}

/* ==========================================
   STATS STRIP
   ========================================== */
.stats-strip {
  background: var(--off-black);
  border-bottom: 1px solid rgba(155,46,184,0.1);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: block;
}

/* ==========================================
   TRUST STRIP
   ========================================== */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid rgba(155,46,184,0.14);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid rgba(155,46,184,0.18);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.trust-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.trust-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--off-black);
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 300;
}

/* ==========================================
   COLLECTION SECTION
   ========================================== */
.collection-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 30px;
}

.collection-header .view-all {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap var(--transition);
}

.collection-header .view-all:hover { gap: 14px; }
.collection-header .view-all svg { width: 16px; height: 16px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
}

/*
  PRODUCT IMAGE PLACEHOLDERS
  Replace .product-img background with actual product photos.
  Recommended size: 600×720px per image (5:6 ratio)
*/
.product-img {
  position: relative;
  padding-top: 118%;
  overflow: hidden;
  background: linear-gradient(155deg, #E8DDD5 0%, #CEC0B0 50%, #BDB0A0 100%);
}

.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.product-card:hover .product-img img { transform: scale(1.07); }

/* Placeholder label for development */
.img-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(150,120,90,0.5);
  gap: 10px;
  padding: 20px;
}

.img-placeholder-label svg {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}

.img-placeholder-label span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.5;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.badge-bestseller { background: var(--gold); color: var(--white); }
.badge-new { background: var(--off-black); color: var(--gold); }

.product-quick-view {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(10,10,10,0.88);
  color: var(--white);
  font-size: 0.62rem;
  text-decoration: none;
  display: block;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-md);
  backdrop-filter: blur(4px);
}

.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 20px 4px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--off-black);
  margin-bottom: 4px;
}

.product-detail {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--gold);
}

.product-price-from {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gray);
  margin-right: 4px;
}

.product-add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.product-add:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.product-add svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Size variant table inside product cards */
.product-variants {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px 0 14px;
  border-top: 1px solid var(--light-gray);
  padding-top: 10px;
}

.product-variant-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
}

.product-variant-row .v-size {
  font-weight: 400;
  color: var(--charcoal);
}

.product-variant-row .v-price {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
}

.collection-cta {
  text-align: center;
  margin-top: 60px;
}

/* Home page category sections */
.home-category {
  margin-bottom: 72px;
}

.home-category:last-child { margin-bottom: 0; }

.home-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.home-cat-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.home-cat-header-left .line {
  height: 1px;
  background: var(--light-gray);
  flex: 1;
  max-width: 60px;
}

.home-cat-view-all {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap var(--transition);
}

.home-cat-view-all:hover { gap: 12px; color: var(--gold-dark); }
.home-cat-view-all svg { width: 14px; height: 14px; }

/* ── Carousel wrapper ── */
.home-cat-carousel-wrap {
  position: relative;
}

.home-cat-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;           /* Firefox */
  padding-bottom: 6px;             /* breathing room for shadow */
}

.home-cat-carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Cards inside carousel: fixed width, never shrink */
.home-cat-carousel .product-card {
  flex: 0 0 clamp(220px, 22vw, 290px);
  scroll-snap-align: start;
  min-width: 0;
}

/* Carousel arrow buttons */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--light-gray);
  color: var(--off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  flex-shrink: 0;
}

.car-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.car-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.car-prev { left: -20px; }
.car-next { right: -20px; }

/* Hide arrows when not needed (JS adds .hidden class) */
.car-btn.hidden { opacity: 0; pointer-events: none; }

/* Coming soon placeholder card */
.coming-soon-card {
  border: 1px dashed rgba(155,46,184,0.25);
  padding: 60px 40px;
  text-align: center;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.coming-soon-card .cs-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(155,46,184,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.coming-soon-card .cs-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.coming-soon-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--off-black);
}

.coming-soon-card p {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 300;
  max-width: 320px;
  line-height: 1.8;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-top: 4px;
}

/* ==========================================
   SERVICES PREVIEW SECTION
   ========================================== */
.services-section {
  background: var(--off-black);
  padding: var(--section-pad) 0;
}

.services-section .section-title { color: var(--white); }
.services-section .section-subtitle { color: rgba(255,255,255,0.45); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 60px;
}

.service-card {
  background: var(--off-black);
  padding: 50px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { background: rgba(155,46,184,0.05); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(155,46,184,0.08);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
}

.service-icon-wrap svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 26px;
}

.service-starting {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 24px;
  font-style: italic;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: all var(--transition);
}

.service-link:hover { color: var(--gold); gap: 14px; }
.service-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ==========================================
   EXPERIENCE SECTION
   ========================================== */
.experience-section {
  background: var(--cream);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/*
  EXPERIENCE IMAGES
  .exp-img-main: Main large photo — luxury salon interior or model with bundle hair
  .exp-img-accent: Smaller overlay photo — close-up of hair texture or styling
  Recommended sizes: main 700×800px, accent 380×460px
*/
.exp-images {
  position: relative;
  height: 620px;
}

.exp-img-main {
  width: 75%;
  height: 92%;
  background: linear-gradient(135deg, #C8B8A8 0%, #A89888 100%);
  overflow: hidden;
  position: relative;
}

.exp-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 55%;
  background: linear-gradient(135deg, #B8A898 0%, #988878 100%);
  border: 8px solid var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.exp-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-years-badge {
  position: absolute;
  top: 40px;
  right: 0;
  background: var(--gold);
  color: var(--white);
  padding: 22px 26px;
  text-align: center;
  min-width: 118px;
  box-shadow: var(--shadow-gold);
}

.exp-years-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.exp-years-label {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
}

.exp-content .section-title { margin-bottom: 22px; }

.exp-content p {
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.95;
  margin-bottom: 22px;
}

.exp-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}

.exp-check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-dot {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-dot svg { width: 10px; height: 10px; fill: none; stroke: var(--gold); stroke-width: 2.5; }

.exp-check-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.exp-check-item p strong {
  font-weight: 500;
  color: var(--off-black);
  font-family: var(--font-display);
}

/* ==========================================
   OWNER SECTION
   ========================================== */
.owner-section {
  background: var(--white);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/*
  OWNER PHOTO
  Replace .owner-photo background with:
  background-image: url('../images/jazmine-owner.jpg');
  Recommended: Professional headshot or branding photo of Jazmine
  Size: 680×850px. Elegant, luxury editorial style.
*/
.owner-photo-wrap {
  position: relative;
}

.owner-photo {
  width: 100%;
  padding-top: 128%;
  background: linear-gradient(155deg, #D4C4B4 0%, #B4A494 100%);
  position: relative;
  overflow: hidden;
}

.owner-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Decorative gold frame offset */
.owner-photo-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(155,46,184,0.35);
  pointer-events: none;
  z-index: -1;
}

.owner-content .eyebrow { display: block; margin-bottom: 14px; }
.owner-content .section-title { margin-bottom: 6px; }

.owner-role {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 30px;
  display: block;
}

.owner-content p {
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.95;
  margin-bottom: 20px;
}

.owner-signature {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--off-black);
  padding-top: 24px;
  border-top: 1px solid var(--light-gray);
  margin-top: 30px;
}

.owner-signature span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
  background: var(--off-black);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 28rem;
  color: rgba(155,46,184,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.4); }

.testimonials-wrap {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 40px;
}

.testimonial-body {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}

.testimonial-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/*
  TESTIMONIAL AVATARS
  Replace .t-avatar background with:
  background-image: url('../images/client-NAME.jpg');
  Or keep as gold initial circles — both look great.
*/
.t-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 400;
  overflow: hidden;
  border: 2px solid rgba(155,46,184,0.25);
  flex-shrink: 0;
}

.t-avatar img { width: 100%; height: 100%; object-fit: cover; }

.t-info { text-align: left; }

.t-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 3px;
}

.t-meta {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.36);
  letter-spacing: 0.08em;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
}

.t-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(155,46,184,0.35);
  color: var(--gold);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.t-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.t-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.t-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.t-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
}

.t-dot.active {
  width: 26px;
  background: var(--gold);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.insta-section {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.insta-header {
  text-align: center;
  margin-bottom: 48px;
}

.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-top: 12px;
  transition: color var(--transition);
}

.insta-handle:hover { color: var(--gold-dark); }
.insta-handle svg { width: 18px; height: 18px; fill: currentColor; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}

/*
  INSTAGRAM GRID
  Replace each .insta-item with:
  <a href="YOUR_INSTAGRAM_POST_URL" target="_blank" class="insta-item">
    <img src="../images/insta-1.jpg" alt="House of Hair Lounge Instagram">
    <div class="insta-overlay">...</div>
  </a>
  Recommended: 6 recent Instagram posts, 600×600px square crops.
*/
.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: linear-gradient(135deg, #D4C8BC 0%, #BEB2A6 100%);
}

.insta-item:nth-child(2) { background: linear-gradient(135deg, #C4BAB0 0%, #AEA498 100%); }
.insta-item:nth-child(3) { background: linear-gradient(135deg, #D8CEC4 0%, #C2B8AE 100%); }
.insta-item:nth-child(4) { background: linear-gradient(135deg, #B8AEA4 0%, #A8988C 100%); }
.insta-item:nth-child(5) { background: linear-gradient(135deg, #CCC4B8 0%, #B4AC9E 100%); }
.insta-item:nth-child(6) { background: linear-gradient(135deg, #D0C8BC 0%, #BCAD9C 100%); }

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.insta-item:hover img { transform: scale(1.08); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { width: 28px; height: 28px; fill: var(--white); }

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

/*
  CTA BANNER BACKGROUND
  Replace .cta-banner-bg background with:
  background-image: url('../images/cta-banner-bg.jpg');
  Ideal: Glamour shot of a model from behind, beautiful long flowing hair.
  Or an elegant interior shot of the salon.
*/
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0010 0%, #1e0828 50%, #0a0a0a 100%);
  background-size: cover;
  background-position: center;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.78);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-banner h2 em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 300;
}

.cta-banner p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 46px;
  line-height: 1.9;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #050505;
  padding: 88px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 54px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  display: block;
}

.footer-brand .logo-sub {
  font-size: 0.48rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 3px;
  margin-bottom: 22px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}

.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-socials svg { width: 15px; height: 15px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.footer-contact-item span {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.42);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold); }

/* Newsletter */
.newsletter-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.2); }
.newsletter-input:focus { border-color: rgba(155,46,184,0.5); }

.newsletter-btn {
  padding: 13px 20px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover { background: var(--gold-dark); }

/* Footer Bottom */
.footer-bottom {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--gold); }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 600;
  box-shadow: var(--shadow-gold);
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-4px); }
.back-to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; }

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  background: var(--off-black);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Subtle grid pattern on page heroes */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(155,46,184,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.breadcrumb a { color: rgba(255,255,255,0.28); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(155,46,184,0.4); }
.breadcrumb .current { color: var(--gold); }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ==========================================
   SHOP PAGE
   ========================================== */
.shop-filters {
  background: var(--cream);
  border-bottom: 1px solid rgba(155,46,184,0.14);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: top 0.4s ease;
}

.shop-filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 22px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover { color: var(--off-black); border-color: rgba(0,0,0,0.12); }
.filter-tab.active { background: var(--off-black); color: var(--white); border-color: var(--off-black); }

.filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  color: var(--gray);
}

.filter-select {
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--charcoal);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23888' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.shop-section { padding: 60px 0 var(--section-pad); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.services-page { padding: var(--section-pad) 0; background: var(--white); }

.services-category { margin-bottom: 80px; }
.services-category:last-child { margin-bottom: 0; }

.category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.category-header .line { flex: 1; height: 1px; background: var(--light-gray); }
.category-header .eyebrow { white-space: nowrap; }

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  border: 1px solid var(--light-gray);
  padding: 38px 32px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.svc-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.svc-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.5; }

.svc-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--off-black);
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 22px;
}

.svc-price {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--gold);
  margin-bottom: 22px;
  font-style: italic;
}

.svc-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-black);
  transition: all var(--transition);
}

.svc-book:hover { color: var(--gold); gap: 14px; }
.svc-book svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Services booking banner */
.services-booking-banner {
  background: var(--cream);
  padding: 60px;
  text-align: center;
  margin-top: 80px;
  border: 1px solid rgba(155,46,184,0.18);
}

.services-booking-banner h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.services-booking-banner p {
  font-size: 0.92rem;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-story {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-story-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.95;
  margin-bottom: 22px;
}

.about-values {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon-wrap svg { width: 30px; height: 30px; fill: none; stroke: var(--white); stroke-width: 1.5; }

.value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--off-black);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.85;
}

/* Timeline */
.about-timeline {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.timeline-wrap {
  position: relative;
  max-width: 820px;
  margin: 60px auto 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 64px;
  position: relative;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}

.tl-left { text-align: right; padding-right: 36px; }
.tl-right { padding-left: 36px; }

.tl-year {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 6px;
}

.tl-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--off-black);
  margin-bottom: 8px;
}

.tl-text {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.85;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--off-black);
  padding: 52px 44px;
  color: var(--white);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-info > p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(155,46,184,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 17px; height: 17px; fill: none; stroke: var(--gold); stroke-width: 1.7; }

.contact-detail-text strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.contact-detail-text a { transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--gold); }

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}

.contact-socials a:hover { border-color: var(--gold); color: var(--gold); }
.contact-socials svg { width: 15px; height: 15px; fill: currentColor; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 52px 48px;
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--off-black);
  margin-bottom: 10px;
}

.contact-form-wrap > p {
  font-size: 0.84rem;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 38px;
  line-height: 1.8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 9px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23888' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit { margin-top: 10px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; }

.form-note {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 300;
  text-align: center;
  margin-top: 14px;
}

/* ==========================================
   MAP PLACEHOLDER
   ========================================== */
.map-section {
  background: var(--white);
  padding: 0;
}

.map-placeholder {
  height: 420px;
  background: linear-gradient(135deg, #E0D8D0 0%, #C8C0B8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

/*
  MAP EMBED
  Replace this .map-placeholder div with a Google Maps embed:
  <iframe
    src="https://www.google.com/maps/embed?pb=YOUR_EMBED_PARAMS"
    width="100%" height="420" style="border:0;" allowfullscreen
    loading="lazy" referrerpolicy="no-referrer-when-downgrade">
  </iframe>
*/

.map-placeholder-text {
  text-align: center;
  color: rgba(100,80,60,0.5);
}

.map-placeholder-text p {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ==========================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================== */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .nav-bar { padding: 18px 24px; }
  .nav.scrolled .nav-bar { padding: 14px 24px; }
  .nav-left .nav-links,
  .nav-right .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right { gap: 0; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }

  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-top: 1px solid rgba(155,46,184,0.14); }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .experience-grid,
  .owner-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 50px; }

  .exp-images { height: 480px; }
  .owner-photo { padding-top: 75%; }
  .owner-photo-wrap { order: -1; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 44px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-badge { right: 24px; bottom: 100px; }

  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================== */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .hero .container { padding-top: 140px; padding-bottom: 100px; }
  .hero-title { font-size: 2.6rem; }
  .hero-badge { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(155,46,184,0.14); }
  .trust-item:last-child { border-bottom: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }

  .collection-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .exp-images { height: 360px; }
  .exp-img-main { width: 82%; }

  .footer-main { grid-template-columns: 1fr; gap: 38px; }

  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  .cta-banner-btns { flex-direction: column; align-items: center; }

  .contact-form-wrap { padding: 32px 24px; }
  .contact-info { padding: 40px 28px; }

  .timeline-line { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 10px; }
  .tl-dot { display: none; }
  .tl-left { text-align: left; padding-right: 0; }
  .tl-right { padding-left: 0; }

  .services-booking-banner { padding: 40px 24px; }

  .page-hero { padding: 140px 0 60px; }

  .footer-legal { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   CART ICON — all pages
   ========================================== */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  flex-shrink: 0;
}

.nav-cart:hover { color: var(--gold); }
.nav-cart svg { width: 21px; height: 21px; }

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

/* ==========================================
   CART PAGE
   ========================================== */
.cart-section {
  padding: 60px 0 var(--section-pad);
  min-height: 60vh;
  background: var(--white);
}

.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  color: var(--light-gray);
}

.cart-empty h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 36px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.cart-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}

.cart-col-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--off-black);
}

.cart-clear-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}

.cart-clear-btn:hover { color: var(--off-black); }

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--light-gray);
}

.cart-item-img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-placeholder {
  width: 90px;
  height: 90px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--off-black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-meta {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 14px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--light-gray);
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: background var(--transition), color var(--transition);
  font-family: var(--font-body);
}

.cart-qty-btn:hover { background: var(--off-black); color: var(--white); }

.cart-qty-num {
  width: 36px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--off-black);
  pointer-events: none;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cart-item-total {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--off-black);
}

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gray);
  transition: color var(--transition);
}

.cart-remove-btn:hover { color: var(--charcoal); }

.cart-summary {
  background: var(--cream);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.cart-summary-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(155,46,184,0.12);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.summary-line.total-line {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--off-black);
  margin-bottom: 0;
}

.summary-divider { height: 1px; background: var(--light-gray); margin: 16px 0; }

.summary-free-ship {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 16px 0 24px;
  display: block;
}

.cart-summary .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 0.7rem;
}

/* ==========================================
   CHECKOUT PAGE
   ========================================== */
.checkout-section {
  padding: 60px 0 var(--section-pad);
  min-height: 70vh;
  background: var(--white);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.checkout-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}

.checkout-step-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin: 28px 0 16px;
}

.checkout-step-label:first-child { margin-top: 0; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--off-black);
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  width: 100%;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }

.form-field textarea { resize: vertical; min-height: 90px; }

.checkout-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.75;
  margin: 24px 0 28px;
}

.checkout-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 0.72rem;
}

.checkout-summary {
  background: var(--cream);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.checkout-summary-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(155,46,184,0.12);
}

.checkout-order-items { margin-bottom: 20px; }

.checkout-order-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
}

.checkout-order-item:last-child { border-bottom: none; }

.checkout-thumb-wrap { position: relative; flex-shrink: 0; }

.checkout-thumb {
  width: 54px;
  height: 54px;
  background: var(--ivory);
  overflow: hidden;
}

.checkout-thumb img { width: 100%; height: 100%; object-fit: cover; }

.checkout-thumb-qty {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--off-black);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 600;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-order-info { flex: 1; min-width: 0; }

.checkout-order-name {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--off-black);
  line-height: 1.3;
}

.checkout-order-variant {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 300;
  margin-top: 2px;
}

.checkout-order-price {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--off-black);
  flex-shrink: 0;
}

.checkout-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.checkout-success-circle {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
}

.checkout-success h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 14px; }

.checkout-success p {
  color: var(--gray);
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto 32px;
}

/* ==========================================
   RESPONSIVE — Cart & Checkout
   ========================================== */
@media (max-width: 1024px) {
  .cart-layout,
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary,
  .checkout-summary { position: static; }
  .checkout-layout > .checkout-summary { order: -1; }
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }
  .cart-item-right {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .form-row-2 { grid-template-columns: 1fr; }
  .cart-summary,
  .checkout-summary { padding: 24px; }
}
