/* ============================================================
   CRISTINA'S BAKERY — Shared Design System
   ============================================================ */

:root {
  --rose:        #c4687f;
  --rose-dark:   #a3536a;
  --rose-xdark:  #8b4159;
  --rose-light:  #fdeef3;
  --rose-pale:   #fff5f7;
  --cream:       #fefcfa;
  --ink:         #2c1a1a;
  --ink-mid:     #4a3030;
  --muted:       #7d6b6b;
  --line:        #f0e8e8;
  --white:       #ffffff;
  --stripe1:     #fff5f7;
  --stripe2:     #fdeef3;

  --font-serif:  'Playfair Display', serif;
  --font-sans:   'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --announce-h: 40px;
  --nav-h:      72px;
  --header-h:   calc(var(--announce-h) + var(--nav-h));
  --page-pad:   56px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;

  --shadow-xs:   0 2px 8px rgba(44,26,26,.05);
  --shadow-sm:   0 4px 20px rgba(44,26,26,.07);
  --shadow-md:   0 8px 40px rgba(44,26,26,.10);
  --shadow-lg:   0 20px 60px rgba(44,26,26,.14);
  --shadow-rose: 0 8px 32px rgba(196,104,127,.22);

  --t: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--ink); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */

.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--announce-h);
  background: var(--ink);
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2px;
  z-index: 1001;
  padding: 0 16px;
}

.announce-bar a {
  color: var(--rose-light);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.3);
}

.announce-close {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--t);
}
.announce-close:hover { color: white; }

/* ============================================================
   NAVIGATION
   ============================================================ */

#navbar {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(254,252,250,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 var(--page-pad);
  gap: 20px;
  z-index: 1000;
  transition: box-shadow var(--t);
}

#navbar.scrolled { box-shadow: 0 4px 28px rgba(44,26,26,.08); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand { font-family: var(--font-script); font-size: 1.3rem; color: var(--rose); }
.nav-sub { font-size: .68rem; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  display: block;
  padding: 7px 11px;
  border-radius: var(--r-sm);
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose);
  background: var(--rose-pale);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 8px 16px 8px 12px;
  font-size: .84rem;
  font-weight: 700;
  transition: background var(--t), box-shadow var(--t);
  cursor: pointer;
}

.nav-cart-btn:hover {
  background: var(--rose-dark);
  box-shadow: var(--shadow-rose);
}

.nav-cart-btn svg { width: 17px; height: 17px; }

.cart-badge {
  display: none;
  position: absolute;
  top: -7px; right: -7px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  width: 19px; height: 19px;
  font-size: .68rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}
.cart-badge.show { display: flex; }

.lang-toggle {
  display: flex;
  background: var(--line);
  border-radius: 40px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  border: none;
  background: transparent;
  border-radius: 40px;
  padding: 4px 10px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--muted);
  transition: background var(--t), color var(--t);
}

.lang-btn.active { background: var(--rose); color: white; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  padding: 13px 30px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .3px;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-rose {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}
.btn-rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); box-shadow: var(--shadow-rose); }

.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover { background: var(--rose-pale); }

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }

.btn-ink {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.btn-ink:hover { background: var(--ink-mid); }

.btn-sm { padding: 9px 20px; font-size: .82rem; }

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 7px 14px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--rose-dark); transform: translateY(-1px); }
.add-to-cart-btn svg { width: 13px; height: 13px; }

/* ============================================================
   PAGE HERO (striped)
   ============================================================ */

.page-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  text-align: center;
  background-image: repeating-linear-gradient(
    90deg,
    var(--stripe1) 0, var(--stripe1) 22px,
    var(--stripe2) 22px, var(--stripe2) 44px
  );
  border-bottom: 2px solid var(--line);
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}

.page-hero h1 em { font-style: italic; color: var(--rose); }

.page-hero p {
  font-size: 15px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px var(--page-pad);
}

.section-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title em { font-style: italic; color: var(--rose); }

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

.section-divider {
  width: 44px; height: 3px;
  background: var(--rose);
  border-radius: 2px;
  margin: 14px 0 28px;
}

.center { text-align: center; }
.center .section-divider { margin-left: auto; margin-right: auto; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   PRODUCT CARDS — GRID VIEW
   ============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-rose);
  border-color: var(--rose-light);
}

.product-card-img {
  height: 190px;
  background: linear-gradient(135deg, var(--stripe1) 0%, var(--rose-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  filter: brightness(1.06) contrast(1.08) saturate(1.25);
  transition: transform .35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-card-note {
  font-size: .77rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--rose);
}

/* ============================================================
   PRODUCT ROWS — LIST VIEW
   ============================================================ */

.products-list { display: flex; flex-direction: column; gap: 8px; }

.product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}

.product-row:hover {
  box-shadow: 0 4px 20px rgba(196,104,127,.1);
  border-color: var(--rose-light);
  transform: translateX(4px);
}

.product-row-emoji {
  font-size: 1.8rem;
  width: 46px; height: 46px;
  background: var(--stripe1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-row-info { flex: 1; min-width: 0; }

.product-row-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 2px;
}

.product-row-note { font-size: .77rem; color: var(--muted); }

.product-row-price {
  font-weight: 800;
  color: var(--rose);
  font-size: 1rem;
  min-width: 64px;
  text-align: right;
  flex-shrink: 0;
}

/* ============================================================
   MENU TOOLBAR
   ============================================================ */

.menu-toolbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px var(--page-pad) 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cat-tabs { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }

.cat-tab {
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: .81rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}
.cat-tab:hover { border-color: var(--rose); color: var(--rose); }
.cat-tab.active { background: var(--rose); border-color: var(--rose); color: white; }

.view-toggle {
  display: flex;
  background: var(--line);
  border-radius: var(--r-sm);
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}

.view-btn {
  border: none;
  background: transparent;
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--t), color var(--t);
  display: flex;
  align-items: center;
}
.view-btn.active { background: white; color: var(--rose); box-shadow: var(--shadow-xs); }
.view-btn svg { width: 16px; height: 16px; }

.menu-section-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 28px 0 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */

.cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(44,26,26,.45);
  z-index: 1100;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed;
  top: 0; right: -440px;
  width: min(440px, 100vw);
  height: 100%;
  background: var(--cream);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right .35s cubic-bezier(.22,.61,.36,1);
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.cart-close-btn {
  background: var(--line);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background var(--t);
}
.cart-close-btn:hover { background: var(--rose-light); color: var(--rose); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 16px; opacity: .25; }
.cart-empty p { font-size: .9rem; margin-bottom: 4px; }
.cart-empty-sub { font-size: .8rem; opacity: .7; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-emoji {
  font-size: 1.5rem;
  width: 40px; height: 40px;
  background: var(--stripe1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price { font-size: .8rem; color: var(--rose); font-weight: 700; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.qty-btn:hover { border-color: var(--rose); background: var(--rose-pale); color: var(--rose); }
.qty-num { font-size: .88rem; font-weight: 700; width: 20px; text-align: center; }

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--t);
  display: flex;
}
.cart-remove-btn:hover { color: var(--rose); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cart-subtotal-label { font-size: .85rem; color: var(--muted); }
.cart-subtotal-amount { font-size: 1.4rem; font-weight: 800; color: var(--ink); }

.cart-note { font-size: .75rem; color: var(--muted); margin-bottom: 14px; }

.cart-checkout-btn {
  display: block;
  width: 100%;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t), box-shadow var(--t);
  text-align: center;
}
.cart-checkout-btn:hover { background: var(--rose-dark); box-shadow: var(--shadow-rose); }

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-size: .86rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  transform: translateY(80px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .3s;
  z-index: 2000;
  pointer-events: none;
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--ink);
  padding: 64px var(--page-pad) 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand-name {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--rose-light);
  margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: .84rem;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--t), color var(--t);
  font-size: 1rem;
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn:hover { background: var(--rose); color: white; }

.product-card-coming-soon {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44,26,26,.65);
  color: rgba(255,255,255,.9);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 40px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--rose-light); }

.footer-col p {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  color: rgba(255,255,255,.25);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--ink-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: .92rem;
  font-family: var(--font-sans);
  color: var(--ink);
  background: white;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,104,127,.1);
}
.form-control::placeholder { color: var(--muted); }

textarea.form-control { resize: vertical; min-height: 110px; line-height: 1.6; }

select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-item-icon { font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1050px) {
  :root { --page-pad: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links a { padding: 7px 9px; font-size: .82rem; }
}

@media (max-width: 900px) {
  #navbar { padding: 0 20px; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: .95rem; }

  .nav-right .lang-toggle { display: none; }
}

@media (max-width: 700px) {
  :root { --page-pad: 20px; }
  .page-hero { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 2.5rem; }
  .section { padding: 56px var(--page-pad); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; }
  .menu-toolbar { flex-direction: column; align-items: flex-start; }
  .product-row { padding: 12px 14px; }
  .product-row .add-to-cart-btn .btn-label { display: none; }
}
