/* =====================================================
   DolceCandela — Premium Handcrafted Candles
   Elegant · Feminine · Minimal Luxury
   ===================================================== */

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

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --cream:        #faf6f1;
  --ivory:        #f5ede0;
  --nude:         #e8d5c0;
  --warm-white:   #fefcf8;
  --gold:         #c9a96e;
  --gold-light:   #e8d49a;
  --gold-dark:    #a07840;
  --brown-soft:   #8b6b4a;
  --taupe:        #b8a090;
  --text-dark:    #2c2218;
  --text-mid:     #5c4a38;
  --text-light:   #8b7460;
  --border:       #e5d8c8;
  --shadow:       rgba(180,140,100,0.12);
  --shadow-md:    rgba(140,100,60,0.18);

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', sans-serif;

  --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:       12px;
  --radius-lg:    20px;
}

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

.serif         { font-family: var(--font-serif); }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 0.5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

/* ─── Layout Utilities ───────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.section--alt {
  background-color: var(--cream);
}
.text-center { text-align: center; }
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.45);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--text-dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--text-mid);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* ─── Navigation ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: rgba(254,252,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 0.85rem 0;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  line-height: 1;
}
.nav-logo-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: var(--text-light);
  transition: var(--transition);
  background: transparent;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.lang-sep { color: var(--border); font-size: 0.8rem; }
.nav-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-mid);
  transition: var(--transition);
  background: transparent;
}
.nav-cart-btn:hover {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  background: transparent;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

/* ─── Mobile Menu ────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 1100;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px var(--shadow-md);
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,34,24,0.4);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-mid);
  font-size: 1.1rem;
  transition: var(--transition);
}
.mobile-close:hover { background: var(--nude); }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-lang {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

/* ─── Hero Section ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #faf0e4 0%, #f5e8d5 40%, #ede0cc 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 70%);
}
.hero-bg-circle-1 {
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
}
.hero-bg-circle-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(232,213,192,0.4), transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-top: 5rem;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}
.hero-badge span { font-size: 1rem; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-dark);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(140,100,60,0.25);
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(160deg, #f0dcc0 0%, #e0c8a8 100%);
}

/* Candle SVG Illustration replacement */
.hero-candle-art {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f9eed9 0%, #f0dcc0 50%, #e4caa4 100%);
  box-shadow: 0 30px 80px rgba(140,100,60,0.25), inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.candle-scene {
  width: 80%;
  height: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero-float-card {
  position: absolute;
  background: rgba(254,252,248,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: 0 8px 30px var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.8);
}
.hero-float-1 {
  top: 15%;
  left: -8%;
  min-width: 140px;
}
.hero-float-2 {
  bottom: 18%;
  right: -6%;
  min-width: 130px;
}
.float-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.float-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.float-value {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 0.15rem;
}

/* ─── Marquee Strip ──────────────────────────────────── */
.marquee-strip {
  background: var(--text-dark);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 24s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Featured Collections ───────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
  transition: var(--transition);
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-md);
}
.collection-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.collection-art {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.collection-art-1 { background: linear-gradient(145deg, #f9e8d0, #e8cfa8); }
.collection-art-2 { background: linear-gradient(145deg, #f5e4e4, #e8c8c8); }
.collection-art-3 { background: linear-gradient(145deg, #e8f0e8, #c8dfc8); }
.collection-art-4 { background: linear-gradient(145deg, #f0e8f5, #d8c0e8); }
.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44,34,24,0.85) 0%, transparent 60%);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(20px);
  transition: var(--transition);
}
.collection-card:hover .collection-overlay { transform: translateY(0); }
.collection-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.collection-count {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* ─── Product Grid ───────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-md);
  border-color: transparent;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  transition: transform 0.5s ease;
}
.product-card:hover .product-art { transform: scale(1.08); }
.product-art-1 { background: linear-gradient(145deg, #fdf3e5, #f0dcc0); }
.product-art-2 { background: linear-gradient(145deg, #faeae8, #f0c8c4); }
.product-art-3 { background: linear-gradient(145deg, #eef3e8, #d5e8cc); }
.product-art-4 { background: linear-gradient(145deg, #f3e8f5, #dec8e8); }
.product-art-5 { background: linear-gradient(145deg, #f5f0e0, #ece0b8); }
.product-art-6 { background: linear-gradient(145deg, #e8f0f5, #bcd4e8); }
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.7rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
}
.product-badge.new    { background: var(--text-dark); }
.product-badge.sale   { background: #d44; }
.product-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254,252,248,0.9);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(-4px);
  box-shadow: 0 2px 10px var(--shadow);
}
.product-card:hover .product-wishlist {
  opacity: 1;
  transform: translateY(0);
}
.product-wishlist:hover { color: #e44; background: #fff; }
.product-info {
  padding: 1.3rem;
}
.product-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}
.product-price-old {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 0.5rem;
  font-family: var(--font-serif);
}
.product-add-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(201,169,110,0.4);
}
.product-add-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.1);
}
.product-stars {
  display: flex;
  gap: 2px;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

/* ─── Shop Filter Bar ────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ─── About Section (Preview on Home) ───────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-main-art {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f9eed9 0%, #f0dcc0 50%, #e4caa4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 20px 60px var(--shadow-md);
}
.about-accent-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--text-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 160px;
  box-shadow: 0 10px 30px rgba(44,34,24,0.3);
}
.accent-card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.accent-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
  line-height: 1.4;
}
.about-content { padding: 1rem 0; }
.about-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.values-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.value-text h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.value-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ─── Process Steps ──────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-num {
  width: 60px;
  height: 60px;
  background: var(--warm-white);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--cream);
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Reviews / Testimonials ─────────────────────────── */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: 0 10px 30px var(--shadow);
  border-color: transparent;
}
.review-stars {
  display: flex;
  gap: 3px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.review-avatar-1 { background: linear-gradient(135deg, #f5e0d0, #e8c8a8); }
.review-avatar-2 { background: linear-gradient(135deg, #e8e0f5, #c8b8e8); }
.review-avatar-3 { background: linear-gradient(135deg, #e0f0e0, #b8d8b8); }
.review-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
}
.review-location {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}

/* ─── Instagram Grid ─────────────────────────────────── */
.instagram-section {
  padding: 5rem 0 0;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.4s ease;
}
.insta-item:hover .insta-art { transform: scale(1.1); }
.insta-art-1 { background: linear-gradient(135deg, #fdf3e5, #f0dcc0); }
.insta-art-2 { background: linear-gradient(135deg, #faeae8, #f0c8c4); }
.insta-art-3 { background: linear-gradient(135deg, #eef3e8, #d5e8cc); }
.insta-art-4 { background: linear-gradient(135deg, #f3e8f5, #dec8e8); }
.insta-art-5 { background: linear-gradient(135deg, #f5f0e0, #ece0b8); }
.insta-art-6 { background: linear-gradient(135deg, #e8f0f5, #bcd4e8); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,34,24,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  font-size: 1.3rem;
}

/* ─── Newsletter ─────────────────────────────────────── */
.newsletter-section {
  background: var(--text-dark);
  padding: 5rem 0;
  text-align: center;
}
.newsletter-section .section-title { color: #fff; }
.newsletter-section .section-subtitle { color: rgba(255,255,255,0.6); }
.newsletter-section .section-label { color: var(--gold-light); }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 2.5rem auto 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-submit {
  padding: 0.9rem 1.8rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.newsletter-submit:hover { background: var(--gold-dark); }

/* ─── About Page ─────────────────────────────────────── */
.about-hero {
  background: linear-gradient(145deg, #faf0e4, #f0dcc0);
  padding: 10rem 0 6rem;
  text-align: center;
}
.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--text-dark);
}
.about-hero-title em { font-style: italic; color: var(--gold-dark); }
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 6rem 0;
}
.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}
.team-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}
.team-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #f0dcc0, #e4caa4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px var(--shadow-md);
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: 0 8px 25px var(--shadow);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.value-emoji { font-size: 2.2rem; margin-bottom: 0.8rem; }
.value-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Custom Order Page ──────────────────────────────── */
.custom-hero {
  background: linear-gradient(145deg, #f9eed9, #f0dcc0);
  padding: 10rem 0 5rem;
  text-align: center;
}
.custom-form-section {
  padding: 5rem 0;
}
.custom-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}
.order-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.color-selector {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: 2.5px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.color-swatch:hover, .color-swatch.selected {
  border-color: var(--gold);
  transform: scale(1.15);
}
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}
.upload-area:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.upload-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.upload-text { font-size: 0.85rem; color: var(--text-light); }
.upload-text strong { color: var(--gold); }
.custom-sidebar {}
.custom-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.custom-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.custom-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.custom-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.custom-info-item span:first-child { flex-shrink: 0; }
.whatsapp-card {
  background: #25D366;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.whatsapp-card h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.whatsapp-card p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
.btn-whatsapp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn-whatsapp-full:hover {
  background: rgba(255,255,255,0.35);
  border-color: #fff;
}

/* ─── Gallery Page ───────────────────────────────────── */
.gallery-hero {
  background: linear-gradient(145deg, #faf0e4, #f0dcc0);
  padding: 10rem 0 5rem;
  text-align: center;
}
.gallery-masonry {
  columns: 3;
  gap: 1.2rem;
  margin-top: 3rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-art {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-art { transform: scale(1.05); }
.gallery-art-sm { aspect-ratio: 4/3; }
.gallery-art-md { aspect-ratio: 1; }
.gallery-art-lg { aspect-ratio: 3/4; }
.gallery-art-1 { background: linear-gradient(145deg, #fdf3e5, #f0dcc0); }
.gallery-art-2 { background: linear-gradient(145deg, #faeae8, #f0c8c4); }
.gallery-art-3 { background: linear-gradient(145deg, #eef3e8, #d5e8cc); }
.gallery-art-4 { background: linear-gradient(145deg, #f3e8f5, #dec8e8); }
.gallery-art-5 { background: linear-gradient(145deg, #f5f0e0, #ece0b8); }
.gallery-art-6 { background: linear-gradient(145deg, #e8f0f5, #bcd4e8); }
.gallery-art-7 { background: linear-gradient(145deg, #fde8d8, #f0b8a0); }
.gallery-art-8 { background: linear-gradient(145deg, #e8f5f0, #b8e0d0); }
.gallery-art-9 { background: linear-gradient(145deg, #f8f0e8, #e8d0b0); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,34,24,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  font-size: 1.5rem;
}

/* ─── Contact Page ───────────────────────────────────── */
.contact-hero {
  background: linear-gradient(145deg, #faf0e4, #f0dcc0);
  padding: 10rem 0 5rem;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 0;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover {
  box-shadow: 0 4px 16px var(--shadow);
  transform: translateX(4px);
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon.whatsapp { background: #25D366; }
.contact-info-text h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: var(--transition);
}
.contact-info-text a:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}
.social-link {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-mid);
}
.social-link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-3px);
}
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #f0e8d8, #e4d4b8);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  border: 1px solid var(--border);
  gap: 0.5rem;
}
.map-placeholder span:first-child { font-size: 2.5rem; }
.map-placeholder p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ─── Page Hero (Generic) ────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, #faf0e4 0%, #f5e8d5 50%, #ede0cc 100%);
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.12), transparent 70%);
  border-radius: 50%;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-top: 1rem;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ─── Promo Banner ───────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3d2d1e 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '✦';
  position: absolute;
  font-size: 15rem;
  color: rgba(201,169,110,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.promo-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.promo-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.8rem;
}
.promo-title em { color: var(--gold-light); font-style: italic; }
.promo-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.promo-countdown {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.countdown-unit {
  text-align: center;
  min-width: 70px;
}
.countdown-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 10px;
  padding: 0.5rem 1rem;
}
.countdown-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.4rem;
}

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.2rem;
}
.footer-brand-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-link:hover { color: var(--gold); transform: translateX(3px); }
.footer-bottom {
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-link {
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-link:hover { color: var(--gold); }

/* ─── Notification Toast ─────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text-dark);
  color: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 300px;
}
.toast.show { transform: translateX(0); }

/* ─── Cart Drawer ─────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(420px, 95vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0,0,0,0.15);
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-light);
  gap: 1rem;
  font-size: 3.5rem;
}
.cart-empty p { font-family: var(--font-serif); font-size: 1.1rem; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-art {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 500;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--nude); }
.qty-num { font-size: 0.85rem; font-weight: 500; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.cart-total-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.cart-total-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
}

/* ─── Section Decorations ────────────────────────────── */
.sparkle {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
  font-size: 1rem;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.5; transform: scale(1.2) rotate(15deg); }
}

/* ─── Scroll To Top ──────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  z-index: 900;
  border: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* ─── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes flame {
  0%, 100% { transform: scaleX(1) scaleY(1) rotate(-2deg); }
  25%       { transform: scaleX(0.85) scaleY(1.1) rotate(2deg); }
  75%       { transform: scaleX(1.1) scaleY(0.9) rotate(-1deg); }
}

.animate-fadeUp  { animation: fadeUp  0.6s ease both; }
.animate-fadeIn  { animation: fadeIn  0.6s ease both; }
.animate-scaleIn { animation: scaleIn 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .about-split, .about-full-grid, .custom-form-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-accent-card { position: static; margin-top: 1rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .reviews-slider { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .gallery-masonry { columns: 2; }
  .promo-countdown { gap: 0.8rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 4rem 0; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .hero-cta { flex-direction: column; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-input { border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-submit { border-radius: 0 0 var(--radius) var(--radius); }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .promo-countdown { gap: 0.5rem; }
  .countdown-num { font-size: 1.8rem; padding: 0.4rem 0.7rem; }
}
