/* ═══════════════════════════════════════════════════════════
   BAKERINO'S BAKEHAUS — style.css
   Luxury Patisserie Design System
═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --cream: #FAF6F0;
  --dark-cream: #F2EAD9;
  --gold: #C9952A;
  --light-gold: #E8B84B;
  --brown: #5C3317;
  --dark-brown: #3B1F0A;
  --text: #2D1B0E;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(44,24,10,0.10);
  --shadow-md: 0 8px 40px rgba(44,24,10,0.14);
  --shadow-gold: 0 4px 20px rgba(201,149,42,0.28);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --transition: 0.3s ease;
  --nav-h: 76px;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }
address { font-style: normal; }

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TOAST ─────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark-brown);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
  pointer-events: none;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────── */
.hero::before,
.products-section::before,
.checkout-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ─── GOLD DIVIDER ──────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 40px;
  justify-content: center;
}
.gold-divider span { color: var(--gold); font-size: 0.85rem; }
.divider-line {
  height: 1px;
  width: 160px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 52px;
}
/* Gold shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover::after { left: 160%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  color: var(--dark-brown);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,42,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-sm {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all var(--transition);
  min-height: 44px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-sm:hover { background: var(--gold); color: var(--white); }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  border-color: var(--whatsapp);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ───────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 1rem;
  color: var(--brown);
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.85;
}

/* Section heading underline animation */
.section-header.visible .section-title::after {
  content: '';
  display: block;
  height: 3px;
  width: 70px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 2px;
  animation: drawLine 0.7s ease forwards;
}
@keyframes drawLine {
  from { width: 0; opacity: 0; }
  to   { width: 70px; opacity: 1; }
}

/* ─── SCROLL ANIMATION STATES ───────────────────────────── */
.observe-me {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.observe-me.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.observe-slide {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.observe-slide.visible {
  opacity: 1;
  transform: translateX(0);
}
.observe-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.observe-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-brown);
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark-brown);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-order-btn {
  background: linear-gradient(135deg, var(--gold), var(--light-gold)) !important;
  color: var(--dark-brown) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem !important;
}
.nav-order-btn::after { display: none; }
.nav-order-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark-brown);
  transition: all var(--transition);
  min-width: 48px;
}
.cart-btn:hover { background: var(--gold); color: var(--white); transform: scale(1.08); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--dark-brown);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  transition: transform 0.3s ease;
}
.cart-badge.wiggle {
  animation: wiggle 0.5s ease;
}
@keyframes wiggle {
  0%,100% { transform: rotate(0); }
  20%  { transform: rotate(-15deg) scale(1.3); }
  40%  { transform: rotate(15deg) scale(1.3); }
  60%  { transform: rotate(-10deg) scale(1.15); }
  80%  { transform: rotate(10deg) scale(1.1); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--dark-cream);
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-brown);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu — max-height technique, NO display:none */
.mobile-menu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(250,246,240,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,149,42,0.2);
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  padding: 15px 28px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--dark-brown);
  border-bottom: 1px solid rgba(201,149,42,0.1);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover { background: var(--dark-cream); color: var(--gold); padding-left: 36px; }
.mobile-order-btn {
  background: linear-gradient(135deg, var(--gold), var(--light-gold)) !important;
  color: var(--dark-brown) !important;
  margin: 14px 24px;
  border-radius: 50px;
  text-align: center;
  justify-content: center;
  border-bottom: none !important;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(242,234,217,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(201,149,42,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--cream) 0%, var(--dark-cream) 100%);
  position: relative;
  overflow: hidden;
}

/* ─── HERO BACKGROUND SLIDER ────────────────────────────── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06) translateZ(0);
  transition: opacity 1.8s ease, transform 5.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1) translateZ(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.55);
  pointer-events: none;
}

/* ─── HERO HOURS BADGE ──────────────────────────────────── */
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 32px;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: #ffffff;
background: rgba(0,0,0,0.45);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.hero-hours i { color: var(--gold); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.hero-content .hero-title,
.hero-content .hero-subtitle {
  text-shadow: 0 4px 18px rgba(0,0,0,.85);
}
.hero-content .hero-eyebrow,
.hero-content .hero-tagline {
  text-shadow: 0 2px 10px rgba(58,36,20,0.35), 0 1px 3px rgba(58,36,20,0.3);
}
.hero-logo-wrap { margin-bottom: 20px; }
.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(201,149,42,0.25);
  animation: heroPulse 4s ease-in-out infinite;
}
@keyframes heroPulse {
  0%,100% { box-shadow: 0 8px 40px rgba(201,149,42,0.25); }
  50%      { box-shadow: 0 12px 60px rgba(201,149,42,0.45); }
}
.hero-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #FFE08A;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #FFF4D0;
text-shadow: 0 4px 20px rgba(0,0,0,.8);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #FBE9C7;
text-shadow: 0 2px 10px rgba(0,0,0,.8);
  font-weight: 400;
  margin-bottom: 10px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #FFD966;
  font-weight: 600;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero reveal animations */
.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 0.75s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ─── FLOATING PARTICLES ─────────────────────────────────── */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  animation: floatUp linear infinite;
  will-change: transform, opacity;
}
.p1  { left: 10%; bottom: 10%; font-size: 0.8rem;  animation-duration: 7s;  animation-delay: 0s;   }
.p2  { left: 22%; bottom: 20%; font-size: 1.1rem;  animation-duration: 9s;  animation-delay: 1.2s; }
.p3  { left: 38%; bottom: 5%;  font-size: 0.7rem;  animation-duration: 8s;  animation-delay: 0.5s; }
.p4  { left: 55%; bottom: 15%; font-size: 1rem;    animation-duration: 10s; animation-delay: 2s;   }
.p5  { left: 70%; bottom: 8%;  font-size: 0.85rem; animation-duration: 7.5s;animation-delay: 0.8s; }
.p6  { left: 82%; bottom: 25%; font-size: 0.75rem; animation-duration: 9.5s;animation-delay: 1.5s; }
.p7  { left: 92%; bottom: 12%; font-size: 1.1rem;  animation-duration: 8.5s;animation-delay: 3s;   }
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-90vh) rotate(360deg); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT STRIP
════════════════════════════════════════════════════════════ */
.about-strip {
  padding: 72px 0;
  background: var(--dark-cream);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.about-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,149,42,0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  transition-delay: calc(var(--i, 0) * 0.12s);
}
.about-card:nth-child(1) { --i: 0; }
.about-card:nth-child(2) { --i: 1; }
.about-card:nth-child(3) { --i: 2; }
.about-card.visible { transition-delay: calc(var(--i, 0) * 0.12s); }
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.about-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 10px;
}
.about-card p { color: var(--brown); font-size: 0.95rem; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   PRODUCTS SECTION
════════════════════════════════════════════════════════════ */
.products-section {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  min-height: 44px;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--gold);
  color: var(--dark-brown);
}

/* ─── PRODUCT GRID — MANDATORY BREAKPOINTS ───────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── PRODUCT CARD ───────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  contain: content;
  position: relative;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-cream);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: auto;
  transition: transform 0.45s ease;
  image-rendering: auto;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Badges */
.badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-premium {
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  color: var(--dark-brown);
}
.badge-note {
  background: rgba(44,24,10,0.82);
  color: var(--cream);
}

.product-info {
  padding: 16px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 8px;
  line-height: 1.35;
}
.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.product-price span { font-size: 0.82rem; font-weight: 400; color: var(--brown); margin-left: 4px; }
.add-to-cart {
  width: 100%;
  padding: 10px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.add-to-cart::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.add-to-cart:hover::after { left: 160%; }
.add-to-cart:hover {
  background: linear-gradient(135deg, var(--dark-brown), var(--brown));
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ════════════════════════════════════════════════════════════
   PRODUCT MODAL
════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,24,10,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 80px rgba(44,24,10,0.35);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-brown);
  color: var(--cream);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition), transform var(--transition);
}
.modal-close:hover { background: var(--gold); transform: rotate(90deg); }
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.modal-img-wrap {
  border-radius: var(--radius) 0 0 0;
  overflow: hidden;
  aspect-ratio: 1;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
}
.modal-product-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.25;
}
.modal-note {
  font-size: 0.82rem;
  color: var(--brown);
  background: var(--dark-cream);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
}
.modal-note:empty { display: none; }
.modal-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.modal-desc {
  font-size: 0.92rem;
  color: var(--brown);
  line-height: 1.7;
  flex: 1;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-cream);
  color: var(--dark-brown);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
  min-width: 40px;
}
.qty-btn:hover { background: var(--gold); color: var(--dark-brown); }
.qty-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-brown);
  min-width: 32px;
  text-align: center;
}

/* Modal Suggestions */
.modal-suggestions {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(201,149,42,0.18);
}
.modal-suggestions h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 16px;
  font-weight: 600;
}
.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.suggestion-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(201,149,42,0.15);
  cursor: pointer;
  transition: all var(--transition);
}
.suggestion-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.suggestion-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.suggestion-card-info {
  padding: 8px 10px;
}
.suggestion-card-name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1.3;
  margin-bottom: 3px;
}
.suggestion-card-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   CART SIDEBAR
════════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,24,10,0.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(3px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: var(--cream);
  z-index: 1600;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 60px rgba(44,24,10,0.22);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(201,149,42,0.2);
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark-brown);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-cream);
  color: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.cart-close:hover { background: var(--dark-brown); color: var(--cream); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--brown);
}
.cart-empty-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.cart-empty p { font-size: 0.95rem; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,149,42,0.12);
  align-items: flex-start;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark-cream);
  color: var(--dark-brown);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
  min-width: 28px;
}
.cart-qty-btn:hover { background: var(--gold); }
.cart-item-qty { font-weight: 600; font-size: 0.95rem; min-width: 20px; text-align: center; }
.cart-remove {
  margin-left: auto;
  color: #c0392b;
  font-size: 1rem;
  padding: 6px;
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0.6;
}
.cart-remove:hover { opacity: 1; transform: scale(1.15); }

.cart-footer {
  padding: 20px 20px 24px;
  border-top: 1px solid rgba(201,149,42,0.2);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 16px;
}
.cart-subtotal strong { font-size: 1.3rem; color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   CHECKOUT SECTION
════════════════════════════════════════════════════════════ */
.checkout-section {
  padding: 80px 0;
  background: var(--dark-cream);
  position: relative;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-brown);
  letter-spacing: 0.02em;
}
.req { color: var(--gold); }
.optional { font-weight: 400; color: var(--brown); font-size: 0.82rem; }

input[type="text"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(92,51,23,0.2);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.15);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C3317' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea { resize: vertical; min-height: 90px; }
.file-input { padding: 10px 0; }

/* Radio */
.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  min-height: 44px;
}
.radio-label input[type="radio"] { display: none; }
.radio-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(92,51,23,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition);
}
.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--gold);
}
.radio-label input[type="radio"]:checked + .radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

/* Order Summary */
.order-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid rgba(201,149,42,0.2);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.summary-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.summary-items { margin-bottom: 20px; min-height: 60px; }
.summary-empty { font-size: 0.88rem; color: var(--brown); text-align: center; padding: 16px 0; opacity: 0.8; }
.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(92,51,23,0.15);
  color: var(--text);
  gap: 10px;
}
.summary-item span:first-child { flex: 1; }
.summary-item span:last-child { font-weight: 600; color: var(--gold); flex-shrink: 0; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-brown);
  border-top: 2px solid rgba(201,149,42,0.3);
  padding-top: 14px;
}
.summary-total strong { font-size: 1.4rem; color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   CUSTOM ORDER SECTION
════════════════════════════════════════════════════════════ */
.custom-section {
  padding: 80px 0;
  background: var(--cream);
}
.custom-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(201,149,42,0.15);
  max-width: 900px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark-brown);
  color: rgba(250,246,240,0.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(201,149,42,0.4);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--light-gold);
}
.footer-info h4, .footer-links h4, .footer-hours h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--light-gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-info address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.55;
}
.footer-info address i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.footer-info address a { color: rgba(250,246,240,0.85); transition: color var(--transition); }
.footer-info address a:hover { color: var(--light-gold); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(250,246,240,0.75);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--light-gold); padding-left: 6px; }
.footer-hours p { font-size: 0.9rem; margin-bottom: 6px; }
.hours-time { color: var(--light-gold); font-weight: 600; font-size: 1rem; }
.hours-note { font-size: 0.8rem; opacity: 0.7; font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(201,149,42,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — BREAKPOINTS
════════════════════════════════════════════════════════════ */

/* Tablet: 768px – 1023px → 3 columns */
@media (max-width: 1023px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .nav-links { gap: 20px; }
}

/* Tablet/Mobile: < 900px */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .about-card { padding: 28px 16px; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img-wrap { border-radius: var(--radius) var(--radius) 0 0; max-height: 300px; }
  .custom-form-wrap { padding: 28px 20px; }
}

/* Mobile: 480px – 767px → 2 columns */
@media (max-width: 767px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1.hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .suggestions-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Small mobile: < 480px → still 2 columns */
@media (max-width: 479px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px; }
  .product-name { font-size: 0.82rem; }
  .product-price { font-size: 1rem; }
  .add-to-cart { font-size: 0.72rem; min-height: 38px; padding: 8px 8px; }
  .hero h1.hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { padding: 13px 24px; font-size: 0.9rem; }
  .modal-box { margin: 10px; }
  .suggestions-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-tab { padding: 8px 16px; font-size: 0.82rem; }
}

/* Touch targets */
@media (hover: none) {
  .btn, .filter-tab, .add-to-cart, .cart-btn, .qty-btn { min-height: 44px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hero-title,
.hero-subtitle,
.hero-tagline,
.hero-eyebrow,
.hero-hours{
    filter: brightness(1.25);
    text-shadow:
        0 2px 8px rgba(255,255,255,.35),
        0 3px 12px rgba(0,0,0,.6);
}