/* ============================================================
   Anya's Bakery — styles
   Palette: warm cream + deep espresso + amber accent
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

:root {
  --cream: #FBF7F0;
  --cream-2: #F5EFE3;
  --cream-3: #EDE3D0;
  --espresso: #1F1410;
  --espresso-2: #3A241A;
  --brown: #7A4F35;
  --amber: #D97706;
  --amber-hover: #B45309;
  --gold: #F59E0B;
  --border: #E8DFD3;
  --muted: #8C7764;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(31, 20, 16, .06);
  --shadow-md: 0 10px 30px rgba(31, 20, 16, .08);
  --shadow-lg: 0 30px 60px rgba(31, 20, 16, .15);

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head__title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}
.section-head__sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}
.section-head--center .section-head__sub { margin-inline: auto; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 10px 25px -10px rgba(217, 119, 6, 0.6);
}
.btn--primary:hover {
  background: var(--amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(217, 119, 6, 0.7);
}
.btn--ghost {
  color: var(--espresso);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(31,20,16,0.1);
}
.btn--ghost:hover { background: #fff; }
.btn--full { width: 100%; }

/* ============ Announcement bar ============ */
.announcement {
  background: var(--espresso);
  color: var(--cream);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.01em;
}
.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announcement__icon { color: var(--gold); }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.is-stuck {
  border-bottom-color: var(--border);
  background: rgba(251, 247, 240, 0.95);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}
.logo__img {
  height: 54px;
  width: auto;
  max-width: 240px;
  display: block;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  transform-origin: left center;
  filter: drop-shadow(0 1px 2px rgba(31,20,16,0.08));
}
.logo:hover .logo__img { transform: scale(1.03) rotate(-1deg); }

/* Footer brand — keep Fraunces text treatment on dark bg */
.footer__brand .logo__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: block;
  margin-bottom: 12px;
}

.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--espresso-2);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--espresso); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: inline-flex;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--border);
}
.lang-switcher__btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: all .2s ease;
  letter-spacing: 0.05em;
}
.lang-switcher__btn.is-active {
  background: #fff;
  color: var(--espresso);
  box-shadow: var(--shadow-sm);
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all .2s ease;
}
.cart-btn:hover { background: #fff; transform: translateY(-1px); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-btn__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  transform: scale(0);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.cart-btn__count.is-visible { transform: scale(1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  background: var(--cream-2);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 78px - 42px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,20,16,0.3) 0%, rgba(31,20,16,0.5) 60%, rgba(31,20,16,0.85) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 860px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
}
.hero__title {
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: #fff;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero__lede {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 580px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__stat-value {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-num,
.hero__stat-suffix {
  font: inherit;
  color: inherit;
  display: inline-block;
  line-height: 1;
}
.hero__stat-num { font-variant-numeric: tabular-nums; }
.hero__stat-suffix {
  font-size: 0.72em;
  color: var(--gold);
  margin-left: 2px;
}
.hero__stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ============ Menu / Products ============ */
.menu {
  padding: 120px 0;
  background: var(--cream);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.25,.8,.25,1), box-shadow .35s ease, border-color .3s ease;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product__media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--espresso);
}

.product__body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__title {
  font-size: 26px;
  margin-bottom: 8px;
}
.product__desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.55;
}

.size-picker {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding: 4px;
  background: var(--cream-2);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.size-picker__btn {
  flex: 1;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: all .2s ease;
  text-align: center;
  line-height: 1.2;
}
.size-picker__btn strong {
  display: block;
  font-size: 11px;
  margin-bottom: 2px;
  font-weight: 700;
}
.size-picker__btn.is-active {
  background: #fff;
  color: var(--espresso);
  box-shadow: var(--shadow-sm);
}
.size-picker__btn.is-active strong { color: var(--amber); }

.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}
.product__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1;
}
.product__price sup { font-size: 16px; top: -0.7em; }

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: var(--espresso);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s ease;
}
.add-btn:hover {
  background: var(--amber);
  transform: translateY(-2px);
}
.add-btn svg { width: 16px; height: 16px; }

/* ============ About ============ */
.about {
  padding: 120px 0;
  background: var(--cream-2);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  right: -24px;
  bottom: 32px;
  background: var(--amber);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-width: 180px;
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}
.about__badge span {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 4px;
}
.about__content h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
}
.about__content p {
  font-size: 17px;
  color: var(--espresso-2);
  margin-bottom: 20px;
}
.about__pillars {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__pillars li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.about__pillar-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 14px;
}
.about__pillars strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.about__pillars span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ Pickup / Delivery ============ */
.pickup {
  padding: 120px 0;
  background: var(--cream);
}
.pickup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.pickup__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all .3s ease;
}
.pickup__card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pickup__card--primary {
  background: var(--espresso);
  color: #fff;
  border-color: var(--espresso);
}
.pickup__card--primary h3,
.pickup__card--primary dt { color: #fff; }
.pickup__card--primary p,
.pickup__card--primary dd { color: rgba(255,255,255,0.75); }
.pickup__icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.pickup__card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.pickup__card p {
  color: var(--muted);
  margin-bottom: 28px;
}
.pickup__info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.pickup__card--primary .pickup__info { border-top-color: rgba(255,255,255,0.15); }
.pickup__info dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted);
  padding-top: 3px;
}
.pickup__info dd { color: var(--espresso); font-weight: 500; }

/* ============ Reviews ============ */
.reviews {
  padding: 120px 0;
  background: var(--cream-2);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
}
.review__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review p {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.45;
  color: var(--espresso);
  margin-bottom: 20px;
  font-weight: 400;
}
.review footer {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ============ Contact ============ */
.contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}
.contact__grid > div > p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 440px;
}
.contact__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 32px;
}
.contact__list dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted);
  padding-top: 3px;
}
.contact__list dd {
  color: var(--espresso);
  font-weight: 500;
}
.contact__list a:hover { color: var(--amber); }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 460px;
  box-shadow: var(--shadow-md);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ Footer ============ */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .logo__brand {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.footer__brand p {
  color: rgba(255,255,255,0.6);
  max-width: 320px;
}
.footer__nav,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a,
.footer__social a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color .2s ease;
}
.footer__nav a:hover,
.footer__social a:hover { color: var(--gold); }
.footer__bottom {
  padding: 28px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ Cart drawer ============ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.drawer.is-open { pointer-events: auto; }
.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,20,16,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s ease;
}
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.8,.25,1);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.drawer__head h3 {
  font-size: 26px;
}
.drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  transition: all .2s ease;
}
.drawer__close:hover { background: var(--border); color: var(--espresso); }
.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}
.drawer__empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  color: var(--muted);
}
.drawer__empty > span:first-child {
  font-size: 64px;
  margin-bottom: 8px;
}
.drawer__empty p { max-width: 240px; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}
.cart-item__info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cart-item__info span {
  font-size: 12px;
  color: var(--muted);
}
.cart-item__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cart-item__price {
  font-weight: 700;
  color: var(--espresso);
  font-size: 15px;
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  background: var(--cream-2);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.cart-item__qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  transition: color .2s;
}
.cart-item__qty button:hover { color: var(--amber); }
.cart-item__qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
}

.drawer__foot {
  border-top: 1px solid var(--border);
  padding: 24px 32px 32px;
  background: #fff;
}
.drawer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}
.drawer__row--muted {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}
.drawer__row--total {
  font-size: 18px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.drawer__row strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

/* ============ Modal ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,20,16,0.6);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: modalIn .35s cubic-bezier(.25,.8,.25,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.modal__head {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.modal__head h3 { font-size: 24px; }
.modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
}
.modal__body {
  padding: 28px 32px;
  overflow-y: auto;
}
.modal__section { margin-bottom: 28px; }
.modal__section:last-child { margin-bottom: 0; }
.modal__section h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
  font-family: var(--font-body);
}
.modal__section--total {
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.modal__section--total .drawer__row { margin-bottom: 8px; }
.modal__section--total .drawer__row:last-child { margin-bottom: 0; }

.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.toggle-chip {
  display: block;
  cursor: pointer;
}
.toggle-chip input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-chip span {
  display: block;
  padding: 16px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 14px;
  transition: all .2s ease;
}
.toggle-chip input:checked + span {
  border-color: var(--amber);
  background: #FFF8EE;
  color: var(--amber-hover);
  box-shadow: 0 0 0 2px rgba(217,119,6,0.12);
}

.field { margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--espresso);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}
.field textarea { resize: vertical; min-height: 70px; }

.pay-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease;
  border: 1px solid transparent;
}
.pay-btn--card {
  background: var(--espresso);
  color: #fff;
}
.pay-btn--card:hover { background: var(--amber); }
.pay-btn--paypal {
  background: #FFC439;
  color: #003087;
}
.pay-btn--paypal:hover { background: #F7BA1E; }
.pay-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* ============ Mobile ============ */
@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 120px;
    left: 16px;
    right: 16px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all .25s ease;
  }
  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }

  .menu-toggle { display: flex; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__badge { right: 16px; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact__map { height: 340px; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .logo__img { height: 40px; max-width: 180px; }
  .lang-switcher { padding: 3px; }
  .lang-switcher__btn { padding: 5px 10px; font-size: 11px; }

  .hero {
    padding: 40px 0 32px;
    min-height: auto;
    align-items: flex-start;
  }
  .hero__inner { padding-top: 20px; }
  .hero__badge { margin-bottom: 20px; font-size: 12px; padding: 6px 12px; }
  .hero__title { margin-bottom: 18px; }
  .hero__lede { margin-bottom: 24px; font-size: 15px; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 32px;
    gap: 10px;
  }
  .hero__cta .btn { width: 100%; }
  .hero__stats {
    gap: 24px;
    padding-top: 20px;
    justify-content: space-between;
  }
  .hero__stat { flex: 1; min-width: 0; }
  .hero__stat-value { font-size: 28px; }
  .hero__stat-label { font-size: 10px; letter-spacing: 0.04em; }
  .hero__scroll { display: none; }

  .menu,
  .about,
  .pickup,
  .reviews,
  .contact { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }

  .products { grid-template-columns: 1fr; gap: 24px; }
  .product__body { padding: 24px; }

  .pickup__card { padding: 28px 24px; }

  .field-row { grid-template-columns: 1fr; }
  .drawer__panel { max-width: 100%; }
  .drawer__head, .drawer__body { padding-left: 24px; padding-right: 24px; }
  .drawer__foot { padding-left: 24px; padding-right: 24px; }
  .modal__head, .modal__body { padding-left: 24px; padding-right: 24px; }

  .footer { padding-top: 60px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATIONS LAYER
   ============================================================ */

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  box-shadow: 0 0 12px rgba(217, 119, 6, 0.5);
  transition: width .1s linear;
}

/* ---- Grain texture overlay ---- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px;
}

/* ---- Announcement marquee ---- */
.announcement { padding: 0; overflow: hidden; }
.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.marquee__dot {
  color: var(--gold);
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Hero enter animation ---- */
.hero__badge,
.hero__title-line,
.hero__lede,
.hero__cta,
.hero__stats {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__badge { animation-delay: .15s; }
.hero__title-line:nth-of-type(1) { animation-delay: .3s; }
.hero__title-line:nth-of-type(2) { animation-delay: .45s; }
.hero__lede { animation-delay: .65s; }
.hero__cta  { animation-delay: .8s; }
.hero__stats{ animation-delay: 1s; }
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

/* ---- Hero bg — ken burns + video layer ---- */
.hero__img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__video {
  position: absolute;
  inset: 0;
}
.hero__video[hidden] { display: none; }
@keyframes kenBurns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}

/* underline accent pulse on hero italic word */
.hero__title-line--accent {
  position: relative;
  display: inline-block;
}

/* Hero CTA subtle glow pulse */
.hero__cta .btn--primary {
  position: relative;
  overflow: hidden;
}
.hero__cta .btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4), transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 3.5s ease-in-out 2s infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}

/* ---- Scroll reveal base ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* Stagger children when container has data-reveal-stagger */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: .18s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: .31s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: .44s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: .57s; }

/* ---- Parallax layer ---- */
[data-parallax] { transition: transform .1s linear; will-change: transform; }

/* ---- Product 3D tilt ---- */
.product {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .3s ease;
}
.product.is-tilting { transition: none; }

/* Float subtle on badges */
.announcement__icon { display: inline-block; animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* Eyebrow shimmer on hover-in-view */
.eyebrow { position: relative; }

/* Pillar hover lift */
.about__pillars li {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.about__pillars li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--amber);
}

/* Review card slow rotate on hover */
.review {
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.review:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-md);
}

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--espresso);
  transition: all .2s ease;
}
.lang-dropdown__btn:hover {
  background: #fff;
  border-color: var(--amber);
}
.lang-dropdown__globe { width: 16px; height: 16px; color: var(--muted); }
.lang-dropdown__caret {
  width: 14px;
  height: 14px;
  color: var(--muted);
  transition: transform .25s ease;
}
.lang-dropdown.is-open .lang-dropdown__caret { transform: rotate(180deg); }

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s cubic-bezier(.2,.7,.2,1);
  z-index: 60;
}
.lang-dropdown.is-open .lang-dropdown__menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.lang-dropdown__menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: var(--espresso);
  transition: background .15s ease;
}
.lang-dropdown__menu button:hover { background: var(--cream-2); }
.lang-dropdown__menu button.is-active {
  background: var(--cream-3);
  color: var(--amber-hover);
}
.lang-dropdown__flag {
  font-size: 18px;
  width: 24px;
  text-align: center;
}
.lang-dropdown__code {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.lang-dropdown__menu button.is-active .lang-dropdown__code { color: var(--amber); }

/* i18n fade on switch */
.lang-fading [data-i18n],
.lang-fading .product__title,
.lang-fading .product__desc,
.lang-fading .product__tag {
  opacity: 0;
  transition: opacity .15s ease;
}

/* Hide the old class if still referenced */
.lang-switcher { display: none !important; }
