/* ==========================================================================
   Lakshya Sweets & Bakery — Heritage Luxury Design System
   Mobile-first. Speed-optimized. Accessible (WCAG AA).
   ========================================================================== */

/* --- Design Tokens -------------------------------------------------------- */
:root {
  /* Palette — heritage gold + maroon + cream */
  --c-cream: #FBF6EC;
  --c-cream-2: #F5EDDD;
  --c-ivory: #FFFBF3;
  --c-gold: #C9A43A;
  --c-gold-deep: #A8811F;
  --c-gold-soft: #E6C977;
  --c-maroon: #6E1E26;
  --c-maroon-deep: #4A1119;
  --c-ink: #2B1C12;
  --c-ink-soft: #5A4A3C;
  --c-muted: #8A7766;
  --c-line: #E6D9BF;
  --c-line-soft: #EFE5CF;
  --c-white: #ffffff;
  --c-leaf: #4F6A3B;

  /* Type */
  --ff-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ff-script: "Cormorant Garamond", Georgia, serif;

  /* Scale */
  --fs-xxxl: clamp(2.4rem, 6vw, 4.2rem);
  --fs-xxl: clamp(2rem, 4.5vw, 3rem);
  --fs-xl: clamp(1.6rem, 3.3vw, 2.1rem);
  --fs-l: clamp(1.2rem, 2vw, 1.35rem);
  --fs-m: 1rem;
  --fs-s: 0.9rem;
  --fs-xs: 0.78rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 840px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(74, 17, 25, 0.06);
  --shadow-md: 0 10px 30px rgba(74, 17, 25, 0.08);
  --shadow-lg: 0 20px 60px rgba(74, 17, 25, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.35s;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: var(--fs-m);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { color: var(--c-maroon); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--c-gold-deep); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 600; line-height: 1.15; color: var(--c-ink); margin: 0 0 var(--sp-4); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-xxxl); }
h2 { font-size: var(--fs-xxl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-l); font-family: var(--ff-sans); letter-spacing: 0.02em; text-transform: uppercase; font-weight: 600; }
p { margin: 0 0 var(--sp-4); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }

/* Focus states — accessibility */
:focus-visible {
  outline: 2px solid var(--c-gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-maroon);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  z-index: 999;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }

/* --- Container & utility ------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding: var(--sp-8) 0; }
@media (min-width: 768px) { .section { padding: var(--sp-9) 0; } }
.section-cream { background: var(--c-cream); }
.section-ivory { background: var(--c-ivory); }
.section-maroon { background: var(--c-maroon); color: var(--c-cream); }
.section-maroon h1, .section-maroon h2, .section-maroon h3 { color: var(--c-cream); }
.text-center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Eyebrow label (heritage accent) ------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: var(--sp-4);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-gold-soft);
}
.eyebrow.eyebrow-left::after { display: none; }
.eyebrow.eyebrow-left::before { display: none; }
.eyebrow.eyebrow-left { padding-left: 0; }

/* Section header block */
.section-head { text-align: center; max-width: 680px; margin: 0 auto var(--sp-7); }
.section-head h2 { margin-bottom: var(--sp-3); }
.section-head p { color: var(--c-ink-soft); font-size: var(--fs-l); line-height: 1.55; }

/* Decorative divider */
.divider-ornament {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-3);
  color: var(--c-gold-deep); margin: var(--sp-5) auto; max-width: 240px;
}
.divider-ornament::before, .divider-ornament::after {
  content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--c-gold-soft), transparent);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.75rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-s);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-maroon); color: var(--c-cream); }
.btn-primary:hover { background: var(--c-maroon-deep); color: var(--c-cream); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--c-gold); color: #fff; }
.btn-gold:hover { background: var(--c-gold-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--c-maroon); border-color: var(--c-maroon); }
.btn-outline:hover { background: var(--c-maroon); color: var(--c-cream); }
.btn-outline-light { background: transparent; color: var(--c-cream); border-color: var(--c-gold-soft); }
.btn-outline-light:hover { background: var(--c-gold); color: #fff; border-color: var(--c-gold); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb954; color: #fff; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: var(--fs-xs); }

/* Defensive: any inline SVG inside a button or nav auto-sizes to 1.1em so it
   can never blow out layout even if markup forgets width/height attributes. */
.btn svg, .nav-toggle svg, .primary-nav svg, .topbar svg, .footer-socials svg,
.topbar-socials svg, .floating-wa svg, .product-order svg, .arrow svg {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}
.floating-wa svg { width: 28px; height: 28px; }
.nav-toggle svg { width: 22px; height: 22px; }

/* --- Top utility bar ---------------------------------------------------- */
.topbar {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 0.5rem 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.topbar-inner > div:first-child {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}
.topbar a { color: var(--c-cream); }
.topbar a:hover { color: var(--c-gold-soft); }
.topbar-socials { display: flex; gap: var(--sp-3); flex-shrink: 0; }
@media (max-width: 640px) {
  .topbar-inner > div:first-child { display: none; }
  .topbar-inner { justify-content: flex-end; gap: var(--sp-5); }
}
.topbar-socials a { display: inline-flex; align-items: center; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-line-soft);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.brand { min-width: 0; flex-shrink: 0; display: inline-flex; align-items: center; }
.brand img { flex-shrink: 0; max-height: 64px; width: auto; }
.nav-cta { display: none; }
@media (min-width: 1280px) { .nav-cta { display: flex; } }
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}
.brand img { height: 64px; width: auto; }
.brand-text { display: none; }
@media (min-width: 1280px) { .brand-text { display: block; line-height: 1; } }
.brand-name { font-family: var(--ff-serif); font-size: 1.35rem; color: var(--c-maroon); letter-spacing: 0.02em; }
.brand-tag { font-size: var(--fs-xs); letter-spacing: 0.28em; text-transform: uppercase; color: var(--c-gold-deep); }

/* Nav */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--c-maroon);
  border: 1px solid var(--c-line);
  border-radius: 4px;
}
@media (min-width: 1280px) { .nav-toggle { display: none; } }

.primary-nav {
  position: fixed;
  inset: 0;
  background: var(--c-ivory);
  padding: var(--sp-8) var(--sp-5) var(--sp-6);
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  overflow-y: auto;
  z-index: 95;
}
.primary-nav.is-open { transform: translateX(0); }
.primary-nav .nav-close {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 44px; height: 44px; border: 1px solid var(--c-line); border-radius: 4px;
  color: var(--c-maroon);
  display: inline-flex; align-items: center; justify-content: center;
}
.primary-nav ul { list-style: none; padding: 0; margin: var(--sp-5) 0; }
.primary-nav > ul > li { border-bottom: 1px solid var(--c-line-soft); }
.primary-nav a {
  display: block;
  padding: var(--sp-4) 0;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--c-ink);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--c-maroon); }
.primary-nav .has-submenu > span { display: block; padding: var(--sp-4) 0; font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 600; color: var(--c-maroon); }
.primary-nav .submenu { padding-left: var(--sp-4); margin: 0 0 var(--sp-4); border-left: 2px solid var(--c-gold-soft); }
.primary-nav .submenu a { font-family: var(--ff-sans); font-size: var(--fs-m); padding: var(--sp-2) var(--sp-3); text-transform: none; }
.primary-nav .nav-cta { margin-top: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }

@media (min-width: 1280px) {
  .primary-nav {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    overflow: visible;
    flex-wrap: nowrap;
  }
  .primary-nav .nav-close { display: none; }
  .primary-nav > ul {
    display: flex;
    gap: 2px;
    margin: 0;
    flex-wrap: nowrap;
  }
  .primary-nav > ul > li { border: 0; position: relative; white-space: nowrap; }
  .primary-nav > ul > li > a,
  .primary-nav > ul > li > span {
    padding: var(--sp-3) 0.65rem;
    font-family: var(--ff-sans);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-ink);
    cursor: pointer;
    white-space: nowrap;
  }
  .primary-nav > ul > li > a[aria-current="page"] { color: var(--c-maroon); }
  .primary-nav > ul > li > a::after,
  .primary-nav > ul > li.has-submenu > span::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: var(--c-gold);
    transition: width var(--dur) var(--ease);
    margin-top: 4px;
  }
  .primary-nav > ul > li > a:hover::after,
  .primary-nav > ul > li:hover > span::after,
  .primary-nav > ul > li > a[aria-current="page"]::after { width: 100%; }

  .submenu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 240px;
    background: var(--c-ivory);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--c-gold);
    padding: var(--sp-3) 0 !important;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
    border-left: 0 !important;
  }
  .has-submenu:hover > .submenu, .has-submenu:focus-within > .submenu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .submenu li a {
    padding: var(--sp-2) var(--sp-5) !important;
    font-family: var(--ff-sans);
    font-size: var(--fs-s);
    letter-spacing: 0.05em;
    color: var(--c-ink-soft);
  }
  .submenu li a:hover { background: var(--c-cream); color: var(--c-maroon); }
  .nav-cta { margin: 0 !important; margin-left: var(--sp-3) !important; flex-direction: row !important; gap: var(--sp-2) !important; flex-shrink: 0; white-space: nowrap; }
  .nav-cta .btn { padding: 0.55rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.06em; }
  .header-inner { gap: var(--sp-3); flex-wrap: nowrap; }
  .brand { flex-shrink: 0; }
  .brand img { height: 58px; }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-maroon-deep) 0%, var(--c-maroon) 60%, #7b2430 100%);
  color: var(--c-cream);
  padding: var(--sp-9) 0 var(--sp-9);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
  z-index: 0;
  mix-blend-mode: screen;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, transparent 20%, rgba(74,17,25,0.65) 80%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(201, 164, 58, 0.22), transparent 45%),
                    radial-gradient(circle at 80% 80%, rgba(201, 164, 58, 0.18), transparent 40%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='none' stroke='%23C9A43A' stroke-opacity='0.12' stroke-width='1'><path d='M40 5 L50 30 L75 35 L55 55 L60 78 L40 65 L20 78 L25 55 L5 35 L30 30 Z'/></g></svg>");
  background-size: 160px 160px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto; }
.hero h1 { color: var(--c-cream); font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.05; margin-bottom: var(--sp-5); }
.hero h1 .highlight { color: var(--c-gold-soft); font-style: italic; font-weight: 400; }
.hero-sub { font-size: var(--fs-l); color: rgba(251, 246, 236, 0.88); max-width: 640px; margin: 0 auto var(--sp-6); }
.hero-cta { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }
.hero-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-5); margin-top: var(--sp-7); font-size: var(--fs-s); color: rgba(251, 246, 236, 0.8); }
.hero-meta span { display: inline-flex; align-items: center; gap: var(--sp-2); }

/* Page hero (for non-home) */
.page-hero {
  background: linear-gradient(135deg, var(--c-maroon) 0%, var(--c-maroon-deep) 100%);
  color: var(--c-cream);
  padding: var(--sp-8) 0 var(--sp-7);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.28;
  mix-blend-mode: screen;
  z-index: 0;
}
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,17,25,0.55), rgba(74,17,25,0.85));
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='%23C9A43A' fill-opacity='0.07'><circle cx='40' cy='40' r='4'/></g></svg>");
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero h1 { color: var(--c-cream); margin-bottom: var(--sp-3); }
.page-hero p { color: rgba(251, 246, 236, 0.85); font-size: var(--fs-l); margin: 0 auto; max-width: 560px; }

/* Breadcrumb */
.breadcrumb {
  background: var(--c-cream);
  padding: var(--sp-3) 0;
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--c-line-soft);
}
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }
.breadcrumb li + li::before { content: "/"; margin-right: var(--sp-2); color: var(--c-muted); }
.breadcrumb a { color: var(--c-ink-soft); }
.breadcrumb li[aria-current="page"] { color: var(--c-maroon); font-weight: 600; }

/* --- Category Tiles ----------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 560px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-cream);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  aspect-ratio: 4 / 5;
  isolation: isolate;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
  z-index: 0;
}
.cat-card:hover .cat-card-img { transform: scale(1.05); }
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 17, 25, 0) 40%, rgba(74, 17, 25, 0.82) 100%);
  z-index: 1;
}
.cat-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--sp-5);
  color: var(--c-cream);
  z-index: 2;
}
.cat-card-body h3 { color: var(--c-cream); margin-bottom: var(--sp-2); font-size: 1.6rem; }
.cat-card-body p { color: rgba(251, 246, 236, 0.85); margin: 0; font-size: var(--fs-s); }
.cat-card-body .arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--c-gold-soft); margin-top: var(--sp-3);
}

/* --- Signature / Featured card ----------------------------------------- */
.feature-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 820px) { .feature-strip { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
.feature-strip.is-reverse > :first-child { order: 2; }
@media (max-width: 819px) { .feature-strip.is-reverse > :first-child { order: 0; } }
.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: var(--c-cream-2);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media .media-frame {
  position: absolute; inset: 10px; border: 1px solid rgba(251, 246, 236, 0.6); pointer-events: none;
}

/* --- Product grid (category pages) ------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card {
  background: #fff;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-gold-soft); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c-cream-2);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-media.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-cream), var(--c-cream-2));
  color: var(--c-gold-deep);
  font-family: var(--ff-serif); font-size: 2rem;
}
.product-tag {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  background: var(--c-maroon); color: var(--c-cream);
  padding: 2px 10px; font-size: var(--fs-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px;
}
.product-body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.product-body h3 { font-family: var(--ff-serif); font-size: 1.15rem; margin: 0; color: var(--c-ink); }
.product-body p { font-size: var(--fs-s); color: var(--c-ink-soft); margin: 0; }
.product-order {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-maroon); font-weight: 600;
  padding-top: var(--sp-2); margin-top: auto;
}

/* --- Brand story block -------------------------------------------------- */
.story-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.story-block p { font-size: var(--fs-l); color: var(--c-ink-soft); line-height: 1.7; }
.story-block .founder-mark {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--c-gold-deep);
  font-size: 1.1rem;
}

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (min-width: 740px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: var(--sp-4); border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-ivory); }
.stat-num { font-family: var(--ff-serif); font-size: 2.4rem; color: var(--c-maroon); display: block; line-height: 1; margin-bottom: var(--sp-2); }
.stat-label { font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ink-soft); }

/* --- Testimonials ------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--c-ivory);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  padding: var(--sp-5);
  position: relative;
}
.testimonial .stars {
  color: var(--c-gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-3);
}
.testimonial blockquote {
  margin: 0 0 var(--sp-4);
  font-size: 1.02rem;
  color: var(--c-ink);
  font-style: italic;
  line-height: 1.6;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--c-maroon);
  font-size: var(--fs-s);
}
.testimonial cite small {
  display: block; font-weight: 400; color: var(--c-muted); margin-top: 2px;
}

/* --- Bulk / CTA band ---------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--c-maroon-deep), var(--c-maroon));
  color: var(--c-cream);
  padding: var(--sp-8) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(201,164,58,0.2), transparent 30%), radial-gradient(circle at 85% 50%, rgba(201,164,58,0.2), transparent 30%);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--c-cream); margin-bottom: var(--sp-4); }
.cta-band p { color: rgba(251, 246, 236, 0.88); font-size: var(--fs-l); max-width: 620px; margin: 0 auto var(--sp-5); }
.cta-band-actions { display: inline-flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* --- Form -------------------------------------------------------------- */
.form-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) { .form-card { padding: var(--sp-7); } }
.form-row {
  display: grid; gap: var(--sp-4);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-4);
}
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--c-ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 0.85rem 0.95rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  color: var(--c-ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 58, 0.18);
  outline: none;
}
.field-note { font-size: var(--fs-xs); color: var(--c-muted); }

/* --- Map + contact strip ------------------------------------------------ */
.contact-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }
.contact-card {
  background: var(--c-cream);
  padding: var(--sp-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
}
.contact-card h3 { margin-bottom: var(--sp-3); color: var(--c-maroon); font-size: 1.3rem; }
.contact-card ul { list-style: none; padding: 0; margin: 0; }
.contact-card li { display: flex; gap: var(--sp-3); padding: var(--sp-2) 0; font-size: var(--fs-s); color: var(--c-ink-soft); }
.contact-card li strong { color: var(--c-ink); display: block; }
.contact-card .icon { color: var(--c-gold-deep); flex: 0 0 auto; width: 20px; }
.map-wrap { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  padding: var(--sp-8) 0 var(--sp-5);
}
.footer-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; } }
.site-footer h4 {
  color: var(--c-gold-soft);
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.site-footer a { color: rgba(251, 246, 236, 0.88); }
.site-footer a:hover { color: var(--c-gold-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 3px 0; font-size: var(--fs-s); }
.footer-brand img {
  height: 74px;
  width: auto;
  margin-bottom: var(--sp-3);
  padding: 0.45rem 0.7rem;
  border-radius: 18px;
  background: rgba(255, 251, 243, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}
.footer-brand p { font-size: var(--fs-s); color: rgba(251, 246, 236, 0.82); line-height: 1.6; max-width: 340px; }
.footer-socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(230, 201, 119, 0.4);
  border-radius: 50%;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.footer-socials a:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }
.footer-bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(230, 201, 119, 0.2);
  font-size: var(--fs-xs);
  color: rgba(251, 246, 236, 0.65);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-3);
  letter-spacing: 0.05em;
}

/* --- Floating WhatsApp -------------------------------------------------- */
.floating-wa {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 80;
  transition: transform var(--dur) var(--ease);
}
.floating-wa:hover { transform: scale(1.05); color: #fff; }
.floating-wa svg { width: 28px; height: 28px; }

/* --- About page sections ------------------------------------------------ */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 720px) { .about-pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  padding: var(--sp-5);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-ivory);
}
.pillar .pillar-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-gold-deep);
  background: var(--c-cream);
  border-radius: 50%;
  margin-bottom: var(--sp-3);
}
.pillar h3 { font-size: 1.25rem; margin-bottom: var(--sp-2); }
.pillar p { color: var(--c-ink-soft); font-size: var(--fs-s); margin: 0; }

/* --- FAQ --------------------------------------------------------------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--c-line);
}
.faq summary {
  padding: var(--sp-4) 0;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--c-gold-deep);
  font-size: 1.6rem;
  line-height: 1;
  margin-left: var(--sp-3);
  transition: transform var(--dur) var(--ease);
}
.faq[open] summary::after { content: "−"; }
.faq-body { padding: 0 0 var(--sp-4); color: var(--c-ink-soft); font-size: var(--fs-s); line-height: 1.6; }

/* --- Lazy-load skeleton ------------------------------------------------ */
img[loading="lazy"] { background: var(--c-cream-2); }

/* --- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* --- Print ------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .floating-wa, .topbar, .hero { background: #fff !important; color: #000 !important; }
  .btn, .nav-toggle { display: none !important; }
}

/* --------------------------------------------------------------------------
   Premium polish pass
   Tightens the revamped site into a calmer, more crafted luxury storefront.
   -------------------------------------------------------------------------- */
:root {
  --c-ruby: #7F202C;
  --c-ruby-dark: #3D0D14;
  --c-saffron: #D8A936;
  --c-champagne: #FFF6E5;
  --c-card: rgba(255, 251, 243, 0.92);
  --radius-xl: 28px;
  --shadow-sm: 0 8px 22px rgba(61, 13, 20, 0.07);
  --shadow-md: 0 18px 48px rgba(61, 13, 20, 0.11);
  --shadow-lg: 0 28px 80px rgba(61, 13, 20, 0.16);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 169, 54, 0.13), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(110, 30, 38, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--c-ivory) 0%, #fbf0de 100%);
}

::selection {
  background: rgba(216, 169, 54, 0.35);
  color: var(--c-ruby-dark);
}

.container {
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.section {
  position: relative;
}

.section-cream,
.section-ivory {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--c-cream);
}

.section-ivory {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 169, 54, 0.09), transparent 30rem),
    var(--c-ivory);
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.story-block h2,
.feature-strip h2,
.cta-band h2 {
  letter-spacing: -0.035em;
}

.section-head p,
.feature-strip p,
.story-block p {
  color: rgba(43, 28, 18, 0.72);
}

.eyebrow {
  color: var(--c-ruby);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.eyebrow::before,
.eyebrow::after {
  background: linear-gradient(90deg, transparent, var(--c-saffron), transparent);
}

.btn {
  min-height: 46px;
  border-radius: 999px;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-ruby), var(--c-ruby-dark));
}

.btn-gold {
  color: var(--c-ruby-dark);
  background: linear-gradient(135deg, #f2d98c, var(--c-saffron));
  box-shadow: 0 14px 28px rgba(168, 129, 31, 0.24);
}

.btn-gold:hover {
  color: var(--c-ruby-dark);
  background: linear-gradient(135deg, #ffe7a3, #c99621);
}

.btn-outline,
.btn-outline-light {
  backdrop-filter: blur(12px);
}

.topbar {
  background: linear-gradient(90deg, var(--c-ruby-dark), #56141d, var(--c-ruby-dark));
}

.site-header {
  background: rgba(255, 251, 243, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(201, 164, 58, 0.18);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(61, 13, 20, 0.09);
}

.header-inner {
  padding: 0.72rem 0;
}

.brand img {
  max-height: 68px;
  filter: drop-shadow(0 8px 16px rgba(61, 13, 20, 0.1));
}

.nav-toggle,
.primary-nav .nav-close {
  border-radius: 999px;
  background: rgba(255, 246, 229, 0.8);
}

@media (min-width: 1280px) {
  .primary-nav > ul {
    gap: 0.18rem;
    align-items: center;
  }

  .primary-nav > ul > li > a,
  .primary-nav > ul > li > span,
  .primary-nav > ul > li.has-submenu > span {
    border-radius: 999px;
    padding: 0.78rem 0.9rem;
    font-family: var(--ff-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1;
    color: var(--c-ink);
    text-transform: uppercase;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  }

  .primary-nav > ul > li > a:hover,
  .primary-nav > ul > li > span:hover,
  .primary-nav > ul > li > a[aria-current="page"] {
    background: rgba(216, 169, 54, 0.14);
  }

  .primary-nav > ul > li > a::after,
  .primary-nav > ul > li.has-submenu > span::after {
    display: none;
  }

  .submenu {
    border: 1px solid rgba(201, 164, 58, 0.28) !important;
    border-top: 0 !important;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 251, 243, 0.97);
    backdrop-filter: blur(18px);
  }
}

.primary-nav .nav-cta .btn-primary,
.primary-nav .nav-cta .btn-whatsapp,
.primary-nav .nav-cta .btn-outline-light {
  color: #fff;
}

.primary-nav .nav-cta .btn-gold {
  color: var(--c-ruby-dark);
}

.hero {
  min-height: clamp(620px, 78vh, 860px);
  display: flex;
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    linear-gradient(135deg, rgba(61, 13, 20, 0.98), rgba(110, 30, 38, 0.92) 52%, rgba(34, 14, 9, 0.94));
}

.hero-bg {
  opacity: 0.52;
  mix-blend-mode: soft-light;
  transform: scale(1.02);
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(61, 13, 20, 0.86), rgba(61, 13, 20, 0.42), rgba(61, 13, 20, 0.88)),
    radial-gradient(circle at 50% 58%, transparent 12%, rgba(61, 13, 20, 0.72) 78%);
}

.hero::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 217, 140, 0.27), transparent 24rem),
    radial-gradient(circle at 86% 76%, rgba(242, 217, 140, 0.18), transparent 26rem);
}

.hero-inner {
  max-width: 930px;
}

.hero h1 {
  text-wrap: balance;
  letter-spacing: -0.055em;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero h1 .highlight {
  color: #f4d982;
}

.hero-sub {
  max-width: 720px;
  color: rgba(255, 246, 229, 0.9);
}

.hero-meta {
  gap: 0.75rem;
}

.hero-meta span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(242, 217, 140, 0.26);
  border-radius: 999px;
  background: rgba(255, 246, 229, 0.08);
  backdrop-filter: blur(10px);
}

.page-hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(135deg, var(--c-ruby-dark), var(--c-ruby));
}

.page-hero h1 {
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.breadcrumb {
  background: rgba(255, 246, 229, 0.76);
  backdrop-filter: blur(10px);
}

.cat-grid,
.testimonial-grid,
.about-pillars {
  gap: clamp(1.1rem, 2.4vw, 2rem);
}

.cat-card,
.product-card,
.testimonial,
.pillar,
.form-card,
.contact-card,
.feature-media {
  border-radius: var(--radius-xl);
}

.cat-card {
  box-shadow: var(--shadow-md);
}

.cat-card::before {
  background:
    linear-gradient(180deg, rgba(61, 13, 20, 0.02) 20%, rgba(61, 13, 20, 0.88) 100%),
    linear-gradient(135deg, rgba(216, 169, 54, 0.18), transparent 42%);
}

.cat-card-body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.cat-card-body h3 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.feature-media,
.product-card,
.testimonial,
.pillar,
.form-card,
.contact-card {
  border: 1px solid rgba(201, 164, 58, 0.22);
  background: var(--c-card);
  box-shadow: var(--shadow-sm);
}

.feature-media::after,
.product-media::after,
.cat-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 246, 229, 0.62);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.product-card {
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.product-body h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.32rem);
  letter-spacing: -0.015em;
}

.product-order {
  color: var(--c-ruby);
}

.testimonial {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.55rem;
  right: 1.15rem;
  font-family: var(--ff-serif);
  font-size: 4rem;
  line-height: 1;
  color: rgba(216, 169, 54, 0.18);
}

.stars {
  color: var(--c-saffron);
}

.cta-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 217, 140, 0.22), transparent 22rem),
    radial-gradient(circle at 85% 80%, rgba(242, 217, 140, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--c-ruby-dark), var(--c-ruby));
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 169, 54, 0.12), transparent 20rem),
    linear-gradient(180deg, #481018, var(--c-ruby-dark));
}

.floating-wa {
  width: 60px;
  height: 60px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.36);
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.25rem, 13vw, 3.4rem);
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 680px;
    text-align: center;
  }

  .hero-cta,
  .cta-band-actions {
    display: grid;
    width: min(100%, 340px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta {
    display: grid;
    gap: 0.65rem;
  }

  .hero-meta span {
    justify-content: center;
  }

  .primary-nav {
    background:
      radial-gradient(circle at 12% 0%, rgba(216, 169, 54, 0.15), transparent 18rem),
      var(--c-ivory);
  }

  .primary-nav a,
  .primary-nav .has-submenu > span {
    font-size: 1.28rem;
  }

  .cat-card {
    aspect-ratio: 1 / 1.12;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
