/* ============================================================
   ORION CANDLES — MAIN STYLESHEET
   Mobile-first | Natural & Vibrant | Premium Feel
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* ── PREMIUM PALETTE — Inspired by EKAM & Kimirica ──────────
     Warm ivory base, antique gold accents, deep chocolate text.
     Clean, luxurious, natural candle brand feel.
  ────────────────────────────────────────────────────────── */
  --saffron:    #B8892A;   /* antique gold — primary CTA buttons    */
  --terracotta: #96611A;   /* deep amber — hover, accents, badges   */
  --sage:       #7A9E6E;   /* muted olive — eco/natural tags        */
  --blush:      #EDE0CC;   /* warm sand — subtle highlights         */
  --cream:      #FAF7F2;   /* warm ivory — page background (EKAM)   */
  --parchment:  #F3EDE1;   /* slightly deeper ivory — alt sections  */
  --bark:       #2C1A0E;   /* deep espresso — headings & dark text  */
  --umber:      #4A3520;   /* warm dark brown — body text           */
  --mist:       #9A8878;   /* muted taupe — secondary/muted text    */
  --white:      #FFFFFF;

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad-mobile: 60px 20px;
  --section-pad:        80px 40px;

  /* Radii */
  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  40px;

  /* Shadows — softer, more premium */
  --shadow-soft: 0 2px 16px rgba(44,26,14,.07);
  --shadow-card: 0 6px 28px rgba(44,26,14,.11);
  --shadow-hover:0 14px 44px rgba(44,26,14,.17);

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

/* ── RESET ────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--umber);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--ff-body); }

/* ── LOADING SCREEN ───────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
}
.loader-flame {
  font-size: 3rem;
  animation: flicker 1.2s ease-in-out infinite alternate;
}
.loader-bar {
  width: 160px; height: 3px;
  background: rgba(59,42,26,.12); border-radius: 99px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--saffron), var(--terracotta));
  border-radius: 99px;
  animation: load 1.4s ease forwards;
}
.loader-text {
  font-family: var(--ff-display); font-size: .95rem;
  color: var(--bark); letter-spacing: .08em;
}
@keyframes flicker {
  from { transform: scaleY(1) rotate(-2deg); filter: brightness(1); }
  to   { transform: scaleY(1.06) rotate(2deg); filter: brightness(1.15); }
}
@keyframes load { to { width: 100%; } }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180,150,110,.2);
  transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(59,42,26,.1); }
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.15; gap: 2px;
}
.nav-logo-name {
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700;
  color: var(--bark); letter-spacing: .01em;
}
.nav-logo-tag {
  font-size: .52rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--saffron);
}
.nav-links {
  display: none;
  gap: 1.75rem; align-items: center;
}
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .03em;
  color: var(--umber); position: relative;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--terracotta);
  border-radius: 99px; transition: width var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--bark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
/* Contact button — clean bordered style, not a filled block */
.nav-cta-btn {
  background: transparent !important;
  color: var(--bark) !important;
  border: 1.5px solid var(--terracotta) !important;
  padding: .42rem 1.1rem;
  border-radius: var(--r-xl);
  font-weight: 600; font-size: .78rem; letter-spacing: .05em;
  transition: all var(--ease) !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: var(--terracotta) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column;
  gap: 5px; padding: 4px; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #221408; border-radius: 99px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid rgba(180,150,110,.15);
  padding: 1rem 20px 1.5rem;
  gap: .1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .75rem 0;
  font-size: 1rem; font-weight: 500; color: var(--bark);
  border-bottom: 1px solid rgba(180,150,110,.12);
  transition: color var(--ease);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: .5rem; }
.mobile-menu a:hover { color: var(--saffron); }
.mobile-menu .mob-cta {
  background: var(--saffron); color: var(--bark);
  text-align: center; border-radius: var(--r-xl);
  padding: .75rem; font-weight: 600; border-bottom: none !important;
}
.mobile-menu .mob-cta:hover { background: var(--terracotta); color: #fff; }

/* Desktop nav show */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ── PAGE OFFSET (fixed nav) ─────────────────────────────── */
body { padding-top: 60px; }

/* ── SHARED TYPOGRAPHY ───────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: .85rem;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--terracotta); border-radius: 99px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 700; color: var(--bark);
  line-height: 1.2; margin-bottom: .85rem;
}
.section-sub {
  font-size: .95rem; color: var(--mist);
  max-width: 520px; line-height: 1.8;
}
.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .8rem 1.75rem;
  border-radius: var(--r-xl); font-family: var(--ff-body);
  font-size: .88rem; font-weight: 600; letter-spacing: .04em;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--saffron); color: var(--bark);
  box-shadow: 0 4px 16px rgba(184,137,42,.3);
}
.btn-primary:hover {
  background: var(--terracotta); color: #fff;
  box-shadow: 0 6px 24px rgba(150,97,26,.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--bark);
  border-color: rgba(59,42,26,.3);
}
.btn-outline:hover {
  background: #221408; color: var(--cream);
  border-color: var(--bark); transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15); border-color: #fff;
}
.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover {
  background: #1da851; transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.btn-sm { padding: .6rem 1.25rem; font-size: .8rem; }
.btn-block { width: 100%; }

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ── BACK TO TOP ──────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 90px; right: 20px; z-index: 900;
  width: 42px; height: 42px; border-radius: 50%;
  background: #221408; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-card);
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  border: none;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { transform: translateY(-3px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100svh - 64px);
  background: linear-gradient(160deg, #FAF7F2 0%, #F3EDE1 55%, #EDE0CC 100%);
  display: flex; align-items: center;
  padding: 8px 20px 40px;
  position: relative; overflow: hidden;
}
/* Background candle image only on desktop where it renders reliably */
@media (min-width: 768px) {
  .hero {
    background:
      linear-gradient(160deg, rgba(250,247,242,.96) 0%, rgba(243,237,225,.92) 60%, rgba(184,137,42,.05) 100%),
      url('../images/candle-silk-white.jpg') center/cover no-repeat;
    padding: 80px 40px;
  }
}
.hero::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: min(480px, 80vw); height: min(480px, 80vw); border-radius: 50%;
  background: radial-gradient(circle, rgba(244,160,36,.18), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(184,137,42,.12); border: 1px solid rgba(184,137,42,.28);
  color: var(--terracotta); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: var(--r-xl); margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 6.5vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
  color: var(--bark); margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: italic; color: var(--terracotta);
  background: linear-gradient(135deg, var(--terracotta), var(--saffron));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem; color: var(--umber); line-height: 1.85;
  max-width: 480px; margin-bottom: 2rem; font-weight: 300;
}
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: var(--mist); font-weight: 400;
}
.hero-trust-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--blush);
}
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.hero-img-card {
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
  background: var(--parchment);
}
.hero-img-card:first-child { grid-row: span 2; }
.hero-img-card img {
  width: 100%; height: 100%;
  transition: transform .5s ease;
}
.hero-img-card:hover img { transform: scale(1.04); }
.hero-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem .75rem .6rem;
  background: linear-gradient(transparent, rgba(59,42,26,.7));
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(251,246,239,.9);
}
/* Hero desktop layout */
@media (min-width: 768px) {
  .hero { padding: 80px 40px; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-visual { display: grid; }
}
@media (max-width: 767px) {
  .hero-visual { display: none; }
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-section {
  background: var(--saffron); padding: .9rem 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 2.5rem;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bark); flex-shrink: 0;
}
.marquee-dot { color: rgba(59,42,26,.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-section { padding: var(--section-pad-mobile); background: var(--parchment); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
.why-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 1.5rem; box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid rgba(180,150,110,.12);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.why-icon { font-size: 2rem; margin-bottom: .75rem; }
.why-title {
  font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
  color: var(--bark); margin-bottom: .4rem;
}
.why-text { font-size: .82rem; color: var(--mist); line-height: 1.7; }

@media (min-width: 768px) {
  .why-section { padding: var(--section-pad); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── FEATURED PRODUCTS (home) ─────────────────────────────── */
.featured-section { padding: var(--section-pad-mobile); }
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
@media (min-width: 768px) {
  .featured-section { padding: var(--section-pad); }
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ── PRODUCT CARD ─────────────────────────────────────────── */
.product-card {
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-soft); overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid rgba(180,150,110,.1);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img-wrap {
  display: block;
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F3EDE1, #EDE0CC);
  flex-shrink: 0;
}
/* Show candle emoji when image fails */
.product-img-wrap::after {
  content: '🕯️';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; z-index: 0;
}
.product-img-wrap img { position: relative; z-index: 1; }
.product-img-wrap img {
  width: 100%; height: 100%;
  transition: transform .45s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .25rem .65rem;
  border-radius: var(--r-xl); color: #fff;
}
.badge-bestseller { background: var(--terracotta); }
.badge-new        { background: var(--sage); }
.badge-sale       { background: #9B59B6; }
.product-cat-tag {
  position: absolute; top: 10px; right: 10px;
  font-size: .58rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: .22rem .6rem;
  border-radius: var(--r-xl);
  background: rgba(251,246,239,.9); color: var(--umber);
  backdrop-filter: blur(4px);
}
.product-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.product-name-link { color: inherit; }
.product-name-link:hover .product-name { color: var(--terracotta); }
.product-name {
  font-family: var(--ff-display); font-size: 1rem; font-weight: 600;
  color: var(--bark); margin-bottom: .3rem;
  transition: color var(--ease);
}
.product-desc {
  font-size: .78rem; color: var(--mist); line-height: 1.65;
  margin-bottom: .85rem; flex: 1;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-top: auto;
}
.product-price {
  font-family: var(--ff-display); font-size: 1.15rem;
  font-weight: 700; color: var(--terracotta);
}
.product-enquire {
  background: var(--saffron); color: var(--bark);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  padding: .5rem 1rem; border-radius: var(--r-xl);
  border: none; transition: all var(--ease);
}
.product-enquire:hover { background: var(--terracotta); color: #fff; transform: scale(1.03); }

/* ── PRODUCTS PAGE ────────────────────────────────────────── */
.products-section { padding: var(--section-pad-mobile); }
@media (min-width: 768px) { .products-section { padding: var(--section-pad); } }

/* Filter bar */
.filter-bar {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.filter-btn {
  padding: .55rem 1.2rem; border-radius: var(--r-xl);
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  border: 2px solid rgba(180,150,110,.25);
  background: var(--white); color: var(--umber);
  transition: all var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: #221408; border-color: var(--bark); color: var(--cream);
}

/* Products grid */
.products-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── PAGE HERO BANNER ─────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--parchment), var(--blush) 60%, rgba(212,98,42,.12));
  padding: 50px 20px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(180,150,110,.15);
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900; color: var(--bark);
  margin-bottom: .5rem;
}
.page-hero-sub { font-size: .95rem; color: var(--mist); }
@media (min-width: 768px) { .page-hero { padding: 70px 40px 60px; } }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-section { padding: var(--section-pad-mobile); }
@media (min-width: 768px) { .gallery-section { padding: var(--section-pad); } }

/* Masonry grid */
.masonry-grid {
  columns: 2; column-gap: .75rem;
}
@media (min-width: 600px) { .masonry-grid { columns: 3; } }
@media (min-width: 900px) { .masonry-grid { columns: 4; column-gap: 1rem; } }

.masonry-item {
  break-inside: avoid; margin-bottom: .75rem;
  border-radius: var(--r-md); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
}
@media (min-width: 600px) { .masonry-item { margin-bottom: 1rem; } }
.masonry-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.masonry-item img { width: 100%; display: block; transition: transform .4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem .75rem .6rem;
  background: linear-gradient(transparent, rgba(59,42,26,.75));
  color: rgba(251,246,239,.95); font-size: .7rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--ease), transform var(--ease);
}
.masonry-item:hover .masonry-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,20,10,.92); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: min(90vw, 800px); max-height: 85svh;
  border-radius: var(--r-md); box-shadow: 0 24px 80px rgba(0,0,0,.5);
  object-fit: contain;
}
.lightbox-close {
  position: fixed; top: 16px; right: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 1.25rem; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-caption {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; background: rgba(0,0,0,.4);
  padding: .4rem 1rem; border-radius: var(--r-xl);
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-section { padding: var(--section-pad-mobile); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.about-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about-img img { width: 100%; aspect-ratio: 4/3; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-value-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 1.25rem; border: 1px solid rgba(180,150,110,.15);
  box-shadow: var(--shadow-soft);
}
.about-value-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.about-value-title {
  font-family: var(--ff-display); font-size: .95rem; font-weight: 700;
  color: var(--bark); margin-bottom: .3rem;
}
.about-value-text { font-size: .78rem; color: var(--mist); line-height: 1.6; }

/* Craft & sustainability */
.craft-section { padding: var(--section-pad-mobile); background: var(--parchment); }
.craft-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
.craft-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.craft-card img { width: 100%; aspect-ratio: 16/9; }
.craft-card-body { padding: 1.5rem; }
.craft-card-title {
  font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700;
  color: var(--bark); margin-bottom: .5rem;
}
.craft-card-text { font-size: .88rem; color: var(--umber); line-height: 1.75; }

@media (min-width: 768px) {
  .about-section { padding: var(--section-pad); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .craft-section { padding: var(--section-pad); }
  .craft-grid { grid-template-columns: 1fr 1fr; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { padding: var(--section-pad-mobile); background: var(--parchment); }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 1.5rem; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(180,150,110,.12);
  transition: transform var(--ease);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { color: var(--saffron); font-size: 1rem; margin-bottom: .75rem; }
.testimonial-text {
  font-size: .88rem; color: var(--umber); line-height: 1.8;
  font-style: italic; margin-bottom: 1rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff;
  font-family: var(--ff-display); flex-shrink: 0;
}
.testimonial-name { font-size: .85rem; font-weight: 600; color: var(--bark); }
.testimonial-city { font-size: .72rem; color: var(--mist); }

@media (min-width: 600px) {
  .testimonials-section { padding: var(--section-pad); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { padding: var(--section-pad-mobile); }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid rgba(180,150,110,.15);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; cursor: pointer;
  font-size: .9rem; font-weight: 600; color: var(--bark);
  transition: background var(--ease);
  user-select: none; gap: .75rem;
}
.faq-q:hover { background: rgba(184,137,42,.06); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--parchment); display: flex; align-items: center;
  justify-content: center; font-size: .9rem; flex-shrink: 0;
  transition: transform var(--ease), background var(--ease);
  color: var(--terracotta);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--terracotta); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding var(--ease);
  font-size: .85rem; color: var(--umber); line-height: 1.8;
  padding: 0 1.25rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.25rem 1.1rem; }
@media (min-width: 768px) { .faq-section { padding: var(--section-pad); } }

/* ── NEWSLETTER ───────────────────────────────────────────── */
.newsletter-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C1A0E, #4A2E14);
  text-align: center;
}
.newsletter-title {
  font-family: var(--ff-display); font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700; color: var(--cream); margin-bottom: .5rem;
}
.newsletter-sub { font-size: .9rem; color: rgba(251,246,239,.65); margin-bottom: 1.75rem; }
.newsletter-form {
  display: flex; gap: .5rem; max-width: 420px; margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1; min-width: 200px;
  padding: .85rem 1.2rem; border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1); color: #fff;
  font-family: var(--ff-body); font-size: .88rem;
  outline: none; transition: border-color var(--ease);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-input:focus { border-color: var(--saffron); }
@media (min-width: 768px) { .newsletter-section { padding: 80px 40px; } }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section { padding: var(--section-pad-mobile); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.contact-info-card {
  background: linear-gradient(145deg, var(--terracotta), #B8460E);
  border-radius: var(--r-lg); padding: 2rem;
  color: #fff;
}
.contact-info-card h3 {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: .75rem;
}
.contact-info-card p { opacity: .85; font-size: .9rem; line-height: 1.8; margin-bottom: 1.75rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1.1rem;
}
.contact-detail-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-detail-label { font-size: .62rem; opacity: .65; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.contact-detail-value { font-size: .9rem; font-weight: 500; margin-top: .15rem; }
.contact-wa-btn {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: .5rem;
  background: #25D366; color: #fff;
  padding: .75rem 1.5rem; border-radius: var(--r-xl);
  font-size: .85rem; font-weight: 600;
  transition: background var(--ease), transform var(--ease);
}
.contact-wa-btn:hover { background: #1da851; transform: translateY(-2px); }

/* Form card */
.form-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: var(--shadow-card);
}
.form-card h3 {
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700;
  color: var(--bark); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--bark); margin-bottom: .4rem; letter-spacing: .04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid rgba(180,150,110,.25);
  border-radius: var(--r-sm);
  font-family: var(--ff-body); font-size: .88rem; color: var(--bark);
  background: var(--cream); outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(244,160,36,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem; }
.form-actions .btn { flex: 1; min-width: 120px; }
.form-success {
  display: none; margin-top: 1rem;
  background: rgba(107,140,95,.12); border: 1.5px solid var(--sage);
  border-radius: var(--r-sm); padding: 1rem;
  color: #3D6B33; font-size: .88rem; font-weight: 500; text-align: center;
}
.form-error {
  display: none; margin-top: 1rem;
  background: rgba(212,98,42,.1); border: 1.5px solid var(--terracotta);
  border-radius: var(--r-sm); padding: 1rem;
  color: #A33B10; font-size: .88rem; font-weight: 500; text-align: center;
}

/* Map placeholder */
.map-placeholder {
  background: var(--parchment); border-radius: var(--r-lg);
  height: 240px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  border: 1.5px dashed rgba(180,150,110,.35); color: var(--mist);
  font-size: .85rem; text-align: center; padding: 1rem;
}
.map-placeholder .map-icon { font-size: 2.5rem; }

@media (min-width: 768px) {
  .contact-section { padding: var(--section-pad); }
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #221408; color: rgba(251,246,239,.8);
  padding: 60px 20px 30px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(251,246,239,.1);
}
.footer-brand { grid-column: span 2; }
.footer-logo-name {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700;
  color: var(--cream); margin-bottom: .3rem;
}
.footer-logo-tag {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: .85rem;
}
.footer-about-text { font-size: .82rem; line-height: 1.8; max-width: 320px; }
.footer-socials { display: flex; gap: .65rem; margin-top: 1.25rem; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: background var(--ease);
  border: 1px solid rgba(255,255,255,.12);
}
.footer-social-btn:hover { background: var(--saffron); }
.footer-col-title {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .82rem; color: rgba(251,246,239,.65);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex; gap: .5rem; font-size: .82rem;
  color: rgba(251,246,239,.65); margin-bottom: .6rem;
}
.footer-bottom {
  max-width: 1200px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-size: .72rem; color: rgba(251,246,239,.4);
}
@media (min-width: 768px) {
  .footer { padding: 80px 40px 40px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-brand { grid-column: span 1; }
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  padding: 60px 20px; text-align: center;
  background: linear-gradient(135deg, var(--terracotta), var(--saffron));
}
.cta-banner-title {
  font-family: var(--ff-display); font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 900; color: #fff; margin-bottom: .65rem;
}
.cta-banner-sub { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 1.75rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (min-width: 768px) { .cta-banner { padding: 80px 40px; } }

/* ── UTILITY ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }

/* ============================================================
   CART SYSTEM STYLES
   Added for: cart icon, cart drawer, toast, quantity controls.
   ============================================================ */

/* ── NAV RIGHT (cart + hamburger wrapper) ───────────────── */
.nav-right { display: flex; align-items: center; gap: .5rem; }

/* ── CART ICON BUTTON (nav) ──────────────────────────────── */
.cart-icon-btn {
  position: relative;
  background: none; border: none;
  font-size: 1.25rem; cursor: pointer;
  padding: 6px; line-height: 1;
  color: var(--bark);
}
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--terracotta); color: #fff;
  font-size: .6rem; font-weight: 700;
  min-width: 17px; height: 17px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  padding: 0 3px; line-height: 1;
}

/* ── CART TOAST ───────────────────────────────────────────── */
.cart-toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bark); color: var(--cream);
  padding: .65rem 1.4rem; border-radius: var(--r-xl);
  font-size: .82rem; font-weight: 500;
  box-shadow: var(--shadow-card);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1500; white-space: nowrap;
}
.cart-toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ── CART OVERLAY + DRAWER ───────────────────────────────── */
#cart-drawer-wrap {
  position: fixed; inset: 0; z-index: 2100;
  pointer-events: none;
}
#cart-drawer-wrap.open { pointer-events: all; }

.cart-overlay {
  position: absolute; inset: 0;
  background: rgba(44,26,14,.45);
  opacity: 0; transition: opacity .3s ease;
}
#cart-drawer-wrap.open .cart-overlay { opacity: 1; }

.cart-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 400px;
  background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(44,26,14,.2);
}
#cart-drawer-wrap.open .cart-drawer { transform: translateX(0); }

.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(180,150,110,.2);
}
.cart-drawer-head h3 {
  font-family: var(--ff-display); font-size: 1.25rem;
  font-weight: 700; color: var(--bark);
}
.cart-close-btn {
  background: rgba(44,26,14,.06); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; color: var(--bark);
}

.cart-items {
  flex: 1; overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex; flex-direction: column; gap: 1rem;
}

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: .85rem;
  text-align: center; color: var(--mist);
}
.cart-empty-icon { font-size: 2.5rem; }

.cart-item {
  display: flex; gap: .75rem; align-items: flex-start;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(180,150,110,.15);
}
.cart-item-img {
  width: 60px; height: 60px; border-radius: var(--r-sm);
  overflow: hidden; flex-shrink: 0;
  background: var(--parchment);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--ff-display); font-size: .9rem; font-weight: 600;
  color: var(--bark); margin-bottom: .15rem;
}
.cart-item-price { font-size: .72rem; color: var(--mist); margin-bottom: .5rem; }
.cart-item-qty { display: flex; align-items: center; gap: .5rem; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(180,150,110,.3); background: #fff;
  font-size: .9rem; cursor: pointer; color: var(--bark);
  display: flex; align-items: center; justify-content: center;
  line-height: 1; padding: 0;
}
.qty-btn:hover { background: var(--parchment); }
.qty-val { font-size: .85rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  font-size: .85rem; margin-left: .4rem; opacity: .6;
}
.cart-item-remove:hover { opacity: 1; }
.cart-item-total {
  font-family: var(--ff-display); font-weight: 700;
  color: var(--terracotta); font-size: .9rem; flex-shrink: 0;
}

.cart-drawer-foot {
  padding: 1.1rem 1.25rem 1.4rem;
  border-top: 1px solid rgba(180,150,110,.2);
  background: var(--parchment);
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700;
  color: var(--bark); margin-bottom: .85rem;
}
.cart-clear-link {
  display: block; width: 100%; text-align: center;
  background: none; border: none; margin-top: .6rem;
  font-size: .78rem; color: var(--mist); text-decoration: underline;
  cursor: pointer;
}
.cart-clear-link:hover { color: var(--terracotta); }

@media (max-width: 480px) {
  .cart-drawer { max-width: 100%; }
}
