/* ============================================================
   GRACE HOME CANDLES — LUXURY DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --ivory:        #FAF8F4;
  --cream:        #F5F0E8;
  --cashmere:     #EDE5D8;
  --champagne:    #E8DCC8;
  --sand:         #D4C4A8;
  --gold:         #B8965A;
  --gold-light:   #D4AE72;
  --bronze:       #8B6B3D;
  --charcoal:     #2C2420;
  --espresso:     #1A1210;
  --muted:        #7A6E68;
  --border:       rgba(180,160,130,0.25);
  --border-dark:  rgba(44,36,32,0.12);
  --shadow-sm:    0 2px 20px rgba(44,36,32,0.06);
  --shadow-md:    0 8px 40px rgba(44,36,32,0.10);
  --shadow-lg:    0 24px 80px rgba(44,36,32,0.14);
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --transition:   0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: 0.22s cubic-bezier(0.25,0.46,0.45,0.94);
  --max-w:        1320px;
  --radius:       2px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  font-size: 16px; 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%; 
  scrollbar-width: none !important; 
  -ms-overflow-style: none !important; 
  overflow-x: hidden;
}
*::-webkit-scrollbar { display: none !important; }
* { scrollbar-width: none !important; -ms-overflow-style: none !important; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-sans); }

/* ── Utility ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.serif { font-family: var(--font-serif); }

/* ── Typography ── */
.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--espresso);
}
.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.display-md {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--espresso);
}
.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--espresso);
}
.overline {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 17px; font-weight: 300; line-height: 1.75; color: var(--muted); }
.body-md { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--muted); }
.body-sm { font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--muted); }

/* ── Divider ── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}
.divider-left { margin: 20px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
  border: 1px solid var(--espresso);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { border-color: var(--gold); color: var(--ivory); }

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}
.btn-outline:hover { background: var(--espresso); color: var(--ivory); }

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: none;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.btn-ghost::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  margin-top: 2px;
}
.btn-ghost:hover::after { transform: scaleX(1); }

.btn-gold {
  background: var(--gold);
  color: var(--ivory);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--bronze); border-color: var(--bronze); }

.btn-lg { padding: 20px 48px; font-size: 12px; }
.btn-sm { padding: 12px 24px; font-size: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header / Navigation ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 24px 0;
}
#site-header.scrolled {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--espresso);
}
.nav-logo span { color: var(--gold); }
.nav-left { display: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  display: none;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}
.nav-icon-btn:hover { color: var(--gold); }
.nav-icon-btn svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--ivory);
  font-size: 9px;
  font-weight: 500;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 1100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 24px;
  font-size: 24px;
  color: var(--charcoal);
  padding: 8px;
}
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--espresso);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}
.mobile-nav-link:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F5EFE6 0%, #EDE3D3 40%, #E8DBC8 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(184,150,90,0.08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}
.hero-text { padding-bottom: 40px; }
.hero-overline {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-headline { margin-bottom: 28px; }
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 48px;
}
.hero-cta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-image-wrap {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/4;
  background: var(--cashmere);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-image-wrap:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--ivory);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}
.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1;
}
.hero-badge-text { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 60px;
}
.hero-scroll::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

/* ── Section Header ── */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header .overline { margin-bottom: 16px; }
.section-header .display-lg { margin-bottom: 16px; }
.section-header .body-lg { max-width: 540px; }
.section-header.centered .body-lg { margin: 0 auto; }

/* ── Product Cards ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cashmere);
}
/* Specific ratio and fit for Bubble Candle Collage */
[data-product-id="bubble-pack"] .product-image-wrap {
  aspect-ratio: 1 / 1;
}
[data-product-id="bubble-pack"] .product-image-wrap img {
  object-fit: contain !important;
  padding: 12px;
}
.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover !important;
  object-position: center;
  transition: transform var(--transition) 0.05s;
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.badge {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
}
.badge-best-seller, .badge-bestseller { background: var(--espresso); color: var(--ivory); }
.badge-sale, .badge-bundle-deal { background: var(--rose); color: var(--ivory); }
.badge-new, .badge-new-arrival { background: var(--sage); color: var(--ivory); }
.badge-featured { background: var(--ink); color: var(--ivory); }
.badge-trending { background: var(--gold-light); color: var(--ivory); }
.badge-hand-crafted { background: var(--sand); color: var(--espresso); }
.badge-romantic { background: var(--rose); color: var(--ivory); }
.badge-home-decor { background: var(--charcoal); color: var(--ivory); }
.badge-artistic { background: var(--ink); color: var(--ivory); }
.badge-relaxing { background: var(--sage); color: var(--ivory); }
.badge-great-gift { background: var(--gold); color: var(--ivory); }

.product-quick-add {
  position: absolute;
  bottom: 16px;
  left: 16px; right: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.product-card:hover .product-quick-add { opacity: 1; transform: translateY(0); }
.product-body { padding: 20px 20px 24px; }
.product-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-notes {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.product-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-original {
  font-size: 13px;
  color: var(--sand);
  text-decoration: line-through;
  font-weight: 300;
}
.price-sale {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--espresso);
}
.price-savings {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Features / Why Us ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.feature-item {
  background: var(--ivory);
  padding: 52px 36px;
  text-align: center;
  transition: background var(--transition);
}
.feature-item:hover { background: var(--cream); }
.feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 24px;
  color: var(--gold);
}
.feature-icon svg { width: 48px; height: 48px; stroke-width: 1; }
.feature-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 12px;
}

/* ── Brand Story ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  position: relative;
}
.story-image-main {
  aspect-ratio: 4/5;
  background: var(--cashmere);
  overflow: hidden;
  border-radius: var(--radius);
}
.story-image-main img { width: 100%; height: 100%; object-fit: cover; }
.story-image-accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 40%;
  aspect-ratio: 1;
  background: var(--champagne);
  border: 6px solid var(--ivory);
  overflow: hidden;
  border-radius: var(--radius);
}
.story-image-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-text .overline { margin-bottom: 20px; }
.story-text .display-lg { margin-bottom: 24px; }
.story-text .body-lg { margin-bottom: 32px; }
.story-quote {
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
  margin-bottom: 36px;
}
.story-quote p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials-wrap {
  background: var(--espresso);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-item {
  padding: 52px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.testimonial-item:hover { background: rgba(255,255,255,0.06); }
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 4px; margin-bottom: 24px; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.testimonial-loc {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ── Gifting Section ── */
.gifting-section {
  background: var(--cream);
  padding: 100px 0;
}
.gifting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gifting-text .display-lg { margin-bottom: 24px; }
.gifting-text .body-lg { margin-bottom: 40px; }
.gifting-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.gifting-feature:last-child { border: none; margin: 0; padding: 0; }
.gifting-feat-icon {
  width: 36px; height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.gifting-feat-icon svg { width: 36px; height: 36px; stroke-width: 1.2; }
.gifting-feat-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 6px;
}
.gifting-image {
  aspect-ratio: 4/5;
  background: var(--cashmere);
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gifting-image img { width: 100%; height: 100%; object-fit: cover; }
.gifting-tag {
  position: absolute;
  top: 32px; left: -20px;
  background: var(--espresso);
  color: var(--ivory);
  padding: 20px 28px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ── Instagram Gallery ── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-item {
  aspect-ratio: 1;
  background: var(--cashmere);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,16,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-icon { color: white; width: 28px; height: 28px; }

/* ── Newsletter ── */
.newsletter-wrap {
  background: linear-gradient(135deg, var(--cashmere) 0%, var(--champagne) 100%);
  padding: 80px 0;
}
.newsletter-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--border-dark);
  background: var(--ivory);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 300;
  color: var(--espresso);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--sand); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background var(--transition-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold); }
.newsletter-note { font-size: 11px; color: var(--muted); margin-top: 14px; }

/* ── Footer ── */
.site-footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.6);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ivory);
  margin-bottom: 16px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-desc { font-size: 13px; line-height: 1.75; margin-bottom: 28px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; stroke-width: 1.5; }
.footer-heading {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-payment { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,16,0.5);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--ivory);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-title { font-family: var(--font-serif); font-size: 22px; font-weight: 300; color: var(--espresso); }
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color var(--transition-fast);
}
.cart-close:hover { color: var(--espresso); }
.cart-close svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cart-body { flex: 1; overflow-y: auto; padding: 24px 32px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; text-align: center; gap: 16px;
}
.cart-empty-icon { color: var(--sand); }
.cart-empty-icon svg { width: 52px; height: 52px; stroke-width: 1; }
.cart-empty h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 300; color: var(--espresso); }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-item-img {
  width: 70px; height: 70px;
  background: var(--cashmere);
  overflow: hidden;
  border-radius: var(--radius);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.cart-item-name { font-family: var(--font-serif); font-size: 16px; font-weight: 400; color: var(--espresso); margin-bottom: 4px; }
.cart-item-notes { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.cart-item-footer { display: flex; align-items: center; justify-content: space-between; }
.quantity-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--border-dark); }
.quantity-control button {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--charcoal);
  transition: background var(--transition-fast);
}
.quantity-control button:hover { background: var(--cream); }
.quantity-control span { width: 36px; text-align: center; font-size: 13px; color: var(--espresso); }
.cart-item-price { font-family: var(--font-serif); font-size: 17px; font-weight: 400; color: var(--espresso); }
.cart-item-remove {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  cursor: pointer;
  transition: color var(--transition-fast);
  margin-top: 6px;
  display: inline-block;
}
.cart-item-remove:hover { color: var(--espresso); }
.cart-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.cart-subtotal-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cart-subtotal-amount { font-family: var(--font-serif); font-size: 22px; font-weight: 300; color: var(--espresso); }
.cart-shipping-note { font-size: 11px; color: var(--muted); margin-bottom: 20px; text-align: center; }
.cart-actions { display: flex; flex-direction: column; gap: 12px; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--espresso);
  font-size: 14px;
  font-weight: 300;
  font-family: var(--font-sans);
  transition: border-color var(--transition-fast);
  border-radius: var(--radius);
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--sand); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Page Banner ── */
.page-banner {
  background: var(--cream);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(184,150,90,0.07) 0%, transparent 60%);
}
.page-banner .container { position: relative; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--sand); }

/* ── Product Detail ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0 120px;
}
.product-gallery { position: sticky; top: 100px; }
.product-main-image {
  aspect-ratio: 4 / 5;
  background: var(--cashmere);
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform var(--transition); }
.product-main-image:hover img { transform: scale(1.04); }
.product-thumbs { display: flex; gap: 12px; }
.product-thumb {
  width: 70px; height: 70px;
  background: var(--cashmere);
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
  flex-shrink: 0;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.product-thumb.active { border-color: var(--gold); }
.product-info { padding-top: 8px; }
.product-info .overline { margin-bottom: 12px; }
.product-info .display-md { margin-bottom: 8px; }
.product-info-notes { font-size: 12px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.product-pricing { display: flex; align-items: baseline; gap: 14px; margin-bottom: 32px; }
.product-pricing .price-sale { font-size: 32px; }
.product-desc { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }
.product-specs { margin-bottom: 36px; }
.spec-row {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.spec-label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; }
.spec-value { color: var(--espresso); font-weight: 400; }
.product-actions { display: flex; flex-direction: column; gap: 12px; }
.product-assurances {
  display: flex; gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.assurance-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--muted); letter-spacing: 0.08em;
}
.assurance-item svg { width: 18px; height: 18px; color: var(--gold); stroke-width: 1.5; flex-shrink: 0; }

/* ── Checkout ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  padding: 40px 0 100px;
}
.checkout-form-section { }
.checkout-summary {
  position: sticky;
  top: 100px;
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.checkout-step {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.checkout-section-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 28px;
}
.order-summary-items { border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.summary-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.summary-item-name { color: var(--espresso); font-weight: 300; }
.summary-item-price { font-family: var(--font-serif); font-size: 16px; color: var(--espresso); }
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.summary-total {
  display: flex; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
  margin-top: 8px;
}
.summary-total-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--espresso);
}
.summary-total-amount { font-family: var(--font-serif); font-size: 24px; font-weight: 300; color: var(--espresso); }
.razorpay-notice {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--muted);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.razorpay-notice svg { width: 16px; height: 16px; color: var(--gold); stroke-width: 1.5; }

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 2000;
  display: flex; flex-direction: column; gap: 12px;
}
.toast {
  background: var(--espresso);
  color: var(--ivory);
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform var(--transition);
  max-width: 320px;
  border-left: 3px solid var(--gold);
}
.toast.show { transform: translateX(0); }
.toast.success { border-left-color: #6B9E7A; }
.toast.error { border-left-color: #C0665A; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Policy Pages ── */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 0 120px;
}
.policy-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--espresso);
  margin: 40px 0 16px;
}
.policy-content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--espresso);
  margin: 24px 0 12px;
}
.policy-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.policy-content ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--espresso);
  gap: 20px;
}
.faq-icon { flex-shrink: 0; transition: transform var(--transition-fast); color: var(--gold); }
.faq-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.8; }

/* ── Order Success ── */
.success-page {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
}
.success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 32px;
  background: rgba(107,158,122,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #6B9E7A;
}
.success-icon svg { width: 36px; height: 36px; stroke-width: 1.5; }
.success-order-id { font-family: var(--font-serif); font-size: 15px; color: var(--gold); margin: 12px 0 32px; }

/* ── Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-family: var(--font-serif); font-size: 32px; font-weight: 300; color: var(--espresso); letter-spacing: 0.1em; }
.loader-logo span { color: var(--gold); }
.loader-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  animation: loaderBar 1.2s ease forwards;
}
@keyframes loaderBar { from { width: 0; } to { width: 100%; } }

/* ── Media Queries ── */
@media (max-width: 1200px) {
  .products-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .story-image { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gifting-grid { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-left, .nav-right > .nav-link { display: none; }
  .hamburger { display: flex; }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-right { gap: 8px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cart-drawer { width: 100vw; }
  .product-assurances { flex-wrap: wrap; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { padding: 14px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   2026 UI/UX POLISH LAYER
   ============================================================ */
:root {
  --ivory: #FBFAF6;
  --cream: #F2EFE7;
  --cashmere: #E7DFD1;
  --champagne: #E6D5BA;
  --sand: #BFAF95;
  --gold: #A87E3B;
  --gold-light: #D0A867;
  --bronze: #7C5A31;
  --charcoal: #262626;
  --espresso: #171312;
  --muted: #706963;
  --sage: #6F7F68;
  --rose: #A8615C;
  --ink: #202632;
  --border: rgba(32,38,50,0.11);
  --border-dark: rgba(23,19,18,0.14);
  --shadow-sm: 0 10px 30px rgba(32,38,50,0.07);
  --shadow-md: 0 18px 48px rgba(32,38,50,0.12);
  --shadow-lg: 0 26px 70px rgba(32,38,50,0.16);
  --radius: 8px;
}

html { scroll-padding-top: 112px; }
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background:
    linear-gradient(180deg, rgba(251,250,246,0.96), rgba(242,239,231,0.72) 58%, rgba(251,250,246,1)),
    var(--ivory);
}
*,
*::before,
*::after {
  min-width: 0;
}
body > *,
main,
section,
header,
footer,
nav,
.container {
  max-width: 100%;
}
.page-loader {
  display: none !important;
}
.reveal,
.reveal.revealed {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3,
.reveal-delay-4 {
  transition-delay: 0s !important;
}
.page-loader,
.cart-overlay {
  width: 100%;
  max-width: 100%;
}
.display-xl,
.display-lg { letter-spacing: 0; }
.container { padding-inline: clamp(18px, 4vw, 36px); }
.section-pad { padding: clamp(72px, 8vw, 116px) 0; }
.section-pad-sm { padding: clamp(48px, 6vw, 76px) 0; }

.testimonials-wrap,
[aria-labelledby="testimonials-title"],
#testimonials-title {
  display: none !important;
}

.btn,
.filter-btn,
.form-control,
.newsletter-form,
.shipping-badge,
.payment-icon {
  border-radius: 999px;
}
.btn {
  min-height: 46px;
  justify-content: center;
  box-shadow: none;
}
.btn-lg { min-height: 56px; }
.btn-primary,
.btn-outline:hover,
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--espresso), var(--ink));
}
.btn-primary:hover,
.newsletter-form button:hover {
  background: var(--sage);
  border-color: var(--sage);
}
.btn-ghost { border-radius: 0; }

#site-header {
  top: 16px;
  padding: 0;
  pointer-events: none;
}
#site-header .container {
  max-width: min(1180px, calc(100% - 24px));
  padding: 0;
}
.header-inner {
  min-height: 68px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 999px;
  background: rgba(251,250,246,0.78);
  box-shadow: 0 18px 60px rgba(32,38,50,0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}
#site-header.scrolled {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
#site-header.scrolled .header-inner {
  min-height: 60px;
  background: rgba(251,250,246,0.92);
}
.nav-left,
.nav-right { gap: clamp(16px, 2.4vw, 34px); }
.nav-logo {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  white-space: nowrap;
}
.nav-link {
  letter-spacing: 0.14em;
  padding: 12px 0;
}
.nav-icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,0.52);
}
.hamburger {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,0.52);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 2500;
  display: none;
  flex-direction: column;
  padding: 100px 40px;
  gap: 20px;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 24px;
  color: var(--espresso);
  z-index: 10;
}
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--espresso);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link.sub-link {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  border: none;
  padding: 5px 0;
  margin-top: 5px;
}

.hero {
  min-height: 70vh;
  align-items: center;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("../assets/heroghc.jpg") center/cover no-repeat;
  z-index: 0;
}
.hero-bg::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.4), transparent 50%);
  display: block; content: ''; position: absolute; inset: 0;
}
.hero-grid {
  min-height: calc(70vh - 130px);
  align-items: center;
  grid-template-columns: 1fr;
}
.hero-text {
  max-width: 620px;
  padding: 40px 0 56px;
}
.hero-headline { text-wrap: balance; }
.hero-sub {
  max-width: 480px;
  color: #4D4843;
}
.hero-image-wrap,
.story-image-main,
.story-image-accent,
.gifting-image,
.product-card,
.product-image-wrap,
.product-main-image,
.cart-item-img,
.checkout-summary {
  border-radius: var(--radius);
}
.hero-image-wrap {
  box-shadow: 0 28px 90px rgba(32,38,50,0.2);
}
.hero-badge,
.gifting-tag {
  border-radius: 999px;
}

.page-banner {
  padding: 172px 0 82px;
  background:
    linear-gradient(135deg, rgba(251,250,246,0.9), rgba(242,239,231,0.72)),
    url("https://images.unsplash.com/photo-1544148103-0773bf10d330?w=1600&q=82") center/cover;
}
.page-banner::before {
  background: linear-gradient(180deg, rgba(251,250,246,0.78), rgba(251,250,246,0.96));
}
.breadcrumb {
  justify-content: center;
  flex-wrap: wrap;
}

.products-grid,
.products-grid-4 {
  gap: clamp(18px, 2.5vw, 34px);
}
.product-card {
  background: rgba(255,255,255,0.54);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(32,38,50,0.05);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-image-wrap { aspect-ratio: 4/5; }
.product-body { padding: 18px 18px 22px; }
.product-name { font-size: clamp(18px, 2vw, 23px); }
.badge {
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.product-quick-add {
  opacity: 1;
  transform: translateY(0);
}
.product-quick-add .btn {
  background: rgba(23,19,18,0.9);
  backdrop-filter: blur(10px);
}

.features-grid {
  gap: 16px;
  background: transparent;
}
.feature-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.5);
  box-shadow: 0 10px 30px rgba(32,38,50,0.05);
}
.feature-item:nth-child(2) .feature-icon { color: var(--rose); }
.feature-item:nth-child(3) .feature-icon { color: var(--sage); }
.feature-item:nth-child(4) .feature-icon { color: var(--ink); }

.story-grid,
.gifting-grid,
.product-detail,
.checkout-layout {
  gap: clamp(32px, 6vw, 80px);
}
.story-quote,
.checkout-summary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.58);
  box-shadow: var(--shadow-sm);
}
.gifting-section {
  background:
    linear-gradient(135deg, rgba(111,127,104,0.14), rgba(168,97,92,0.08)),
    var(--cream);
}
.gifting-feature {
  border-color: rgba(32,38,50,0.1);
}
.newsletter-wrap {
  background:
    linear-gradient(135deg, rgba(111,127,104,0.18), rgba(168,97,92,0.14)),
    var(--cream);
}
.newsletter-form {
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.newsletter-form button {
  border-radius: 999px;
}

.cart-drawer {
  width: min(460px, 100%);
  max-width: 100%;
  border-left: 1px solid var(--border);
  box-shadow: -26px 0 90px rgba(32,38,50,0.18);
}
.cart-header,
.cart-footer {
  background: rgba(255,255,255,0.45);
}
.quantity-control {
  border-radius: 999px;
  overflow: hidden;
}
.toast { border-radius: var(--radius); }

.form-control {
  background: rgba(255,255,255,0.62);
  min-height: 50px;
}
textarea.form-control { border-radius: 18px; }
select.form-control { appearance: auto; }
.checkout-summary {
  top: 112px;
}
.summary-item {
  gap: 16px;
}
.summary-item-name {
  line-height: 1.35;
}

.instagram-grid {
  gap: 8px;
  padding-inline: clamp(8px, 2vw, 18px);
}
.insta-item {
  border-radius: var(--radius);
}

.site-footer {
  background:
    linear-gradient(135deg, var(--espresso), #202632);
}
.footer-social a {
  border-radius: 50%;
}

@media (min-width: 1025px) {
  .hero-visual { transform: translateY(28px); }
  .products-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 82vh;
    align-items: flex-end;
  }
  .hero-bg::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  }
  .hero-grid {
    min-height: auto;
  }
  .hero-visual {
    display: block;
    max-width: 420px;
    margin: 0 auto;
    order: -1;
  }
  .hero-image-wrap {
    aspect-ratio: 5/4;
  }
  .story-image {
    display: block;
    max-width: 620px;
    margin: 0 auto;
  }
  .story-image-accent { display: none; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 92px; }
  #site-header { top: 10px; }
  #site-header .container { max-width: calc(100% - 20px); }
  .header-inner {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    padding: 0 8px 0 16px;
  }
  .nav-logo {
    text-align: left;
    font-size: 20px;
  }
  .nav-icon-btn,
  .hamburger {
    width: 42px;
    height: 42px;
  }
  .hero {
    min-height: auto;
    padding: 96px 0 34px;
  }
  .hero-text {
    padding: 20px 0 0;
  }
  .hero-scroll { display: none; }
  .display-xl { font-size: clamp(48px, 16vw, 76px); }
  .display-lg { font-size: clamp(34px, 11vw, 54px); }
  .body-lg { font-size: 16px; }
  .hero-cta,
  .product-actions {
    gap: 12px;
  }
  .hero-cta .btn,
  .product-actions .btn,
  .newsletter-form button {
    width: 100%;
  }
  .products-grid,
  .products-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .product-body { padding: 14px; }
  .product-notes {
    min-height: 34px;
    font-size: 10px;
  }
  .product-quick-add {
    position: static;
    padding: 12px 14px 0;
  }
  .product-quick-add .btn {
    min-height: 40px;
    padding: 10px 12px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    padding: 32px 22px;
  }
  .gifting-feature {
    gap: 14px;
  }
  .cart-body,
  .cart-header,
  .cart-footer {
    padding-inline: 20px;
  }
  .cart-drawer {
    width: 100%;
    border-left: 0;
  }
  .cart-item {
    grid-template-columns: 72px 1fr;
  }
  .cart-item-img {
    width: 72px;
    height: 90px;
  }
  .page-banner {
    padding: 128px 0 58px;
  }
  .breadcrumb { justify-content: flex-start; }
  .checkout-layout {
    padding: 24px 0 72px;
  }
  .checkout-summary {
    padding: 24px 18px;
  }
  .footer-bottom-links,
  .footer-payment {
    justify-content: center;
    flex-wrap: wrap;
  }
  .section-pad .container > div[style*="grid-template-columns:1fr 1fr"],
  .section-pad .container > div[style*="grid-template-columns:repeat(3,1fr)"],
  section .container > div[style*="grid-template-columns:1fr 1fr"],
  section .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  section[style*="min-height:70vh"] {
    min-height: auto !important;
    padding-top: 104px !important;
  }
  section[style*="min-height:70vh"] .container {
    padding-bottom: 54px !important;
  }
  div[style*="background:var(--espresso);padding:80px 60px"] {
    padding: 46px 22px !important;
  }
  div[style*="background:var(--espresso);padding:48px 0"] .container {
    align-items: flex-start !important;
  }
}

@media (max-width: 520px) {
  .container { padding-inline: 16px; }
  .products-grid,
  .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-card {
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
  }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-nav {
    inset: 10px;
    border-radius: 26px;
  }
  .mobile-nav-link {
    min-height: 54px;
  }
  .form-row { gap: 0; }
  .newsletter-form input {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .nav-logo { font-size: 17px; }
  .btn {
    padding-inline: 22px;
    letter-spacing: 0.12em;
  }
  .display-xl { font-size: 44px; }
}

/* Mobile overflow hardening */
@media (max-width: 768px) {
  html,
  body {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }
  @supports not (overflow-x: clip) {
    html,
    body {
      overflow-x: hidden;
    }
  }
  .hero,
  #site-header,
  .header-inner,
  .container,
  .page-banner,
  .gifting-section,
  .newsletter-wrap,
  .site-footer,
  .instagram-grid,
  .products-grid,
  .products-grid-4,
  .features-grid,
  .story-grid,
  .gifting-grid,
  .checkout-layout,
  .product-detail {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  body > *,
  main > *,
  section > *,
  .container > *,
  [style*="display:flex"],
  [style*="display:grid"] {
    max-width: 100% !important;
  }
  [style*="white-space:nowrap"] {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  [style*="grid-template-columns:repeat"] {
    grid-template-columns: 1fr !important;
  }
  [style*="width:200px"],
  [style*="width:120px"] {
    max-width: 100% !important;
  }
  .btn,
  button,
  input,
  select,
  textarea {
    max-width: 100%;
  }
  .hero-image-wrap,
  .story-image-main,
  .gifting-image,
  .product-main-image,
  .product-image-wrap,
  img {
    max-width: 100%;
  }
  .hero-badge {
    right: 12px;
    bottom: 16px;
    max-width: calc(100% - 24px);
  }
  .gifting-tag {
    left: 14px;
    max-height: calc(100% - 28px);
  }
  .story-image-accent {
    display: none !important;
  }
  .cart-drawer,
  .mobile-nav {
    box-sizing: border-box;
    max-width: 100%;
    contain: layout paint;
  }
  .toast-container {
    right: 12px;
    left: 12px;
    bottom: 18px;
    max-width: none;
    overflow: hidden;
  }
  .toast {
    max-width: 100%;
    transform: translateY(120%);
  }
  .toast.show {
    transform: translateY(0);
  }
}

/* ── Customize Your Candle Suite ── */
.custom-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column now */
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.custom-form-wrap {
  background: rgba(255,255,255,0.6);
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.custom-field { margin-bottom: 28px; }

.custom-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.size-selector { display: flex; gap: 12px; }
.size-card { flex: 1; position: relative; cursor: pointer; }
.size-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.size-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--border-dark);
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.25s var(--transition-fast);
  background: var(--ivory);
  border-radius: 6px;
  color: var(--muted);
}
.size-card input:checked + span {
  border-color: var(--gold);
  background: var(--espresso);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}

.color-selector { display: flex; flex-wrap: wrap; gap: 12px; }
.swatch {
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  transition: all 0.2s var(--transition-fast);
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { border-color: var(--gold); transform: scale(1.15); box-shadow: var(--shadow-sm); }

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-dark);
  border-radius: 99px;
  background: var(--ivory);
  overflow: hidden;
}
.qty-selector button {
  width: 44px; height: 44px;
  background: transparent;
  font-size: 20px;
  color: var(--espresso);
  transition: background 0.2s;
}
.qty-selector button:hover { background: var(--cream); }
.qty-selector input {
  width: 50px; height: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: var(--espresso);
}

.custom-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
  background-color: #128c7e;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.recommendation-row { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
.rec-card { flex: 0 0 260px; background: white; padding: 32px 24px; border: 1px solid var(--border); transition: var(--transition); scroll-snap-align: start; }
.rec-card:hover { border-color: var(--gold); }
.rec-icon { font-size: 24px; display: block; margin-bottom: 16px; }
.rec-card h3 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 8px; }
.rec-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.perfect-tag { padding: 6px 16px; background: var(--cream); border: 1px solid var(--border); font-size: 11px; letter-spacing: 0.05em; color: var(--muted); border-radius: 99px; }

/* ── Policy Notice Box ── */
.policy-notice-box {
  background: #fff8f0;
  border: 1px solid #e8dcc8;
  padding: 20px;
  border-radius: var(--radius);
  margin: 20px 0;
}
.policy-notice-box h4 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 10px; color: var(--espresso); }
.policy-notice-box p, .policy-notice-box li { font-size: 13px; color: var(--muted); line-height: 1.6; }
.policy-notice-box ul { padding-left: 18px; margin: 10px 0; }
.policy-notice-box strong { color: var(--espresso); }
