/* Amina Chaka — péče o packy. Design system CSS. */

:root {
  --font-head: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --bg: #FAF6EF;
  --bg-alt: #F2EDE3;
  --card: #ffffff;
  --border: #E4DCCC;
  --border-light: #F0EADD;

  --green: #4F7D63;
  --green-dark: #35594A;
  --green-pale: #DCE9E1;
  --green-pale-2: #CFE0D5;

  --sand: #EFE6D6;
  --sand-dark: #E7DCC8;

  --blue: #7FA8BE;
  --blue-pale: #DDE9EF;
  --blue-pale-2: #D3E1E9;

  --ink: #22302B;
  --text: #4A5A53;
  --text-2: #3F5449;
  --text-3: #3F4F47;
  --muted: #7C8A82;
  --muted-2: #6B7A72;

  --gold: #E0A85C;
  --red: #9B4B36;
  --red-bg: #F6E2DC;

  --footer-bg: #22302B;
  --footer-text: #D8E0DA;
  --footer-muted: #A9B6AE;
  --footer-muted-2: #8D9B93;
  --footer-border: #35443C;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-drawer: -20px 0 60px rgba(34,48,43,.18);
  --shadow-banner: 0 18px 50px rgba(34,48,43,.16);

  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--font-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
input, textarea, select, button { font-family: var(--font-body); }
button { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

@keyframes acFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes acSlide { from { transform: translateX(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.animate-in { animation: acFade .35s ease; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-article { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-legal { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-green { background: var(--green-pale); }
.section-blue { background: var(--blue-pale); }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--green-dark);
  color: var(--sand);
  font: 500 14px/1.5 var(--font-body);
  text-align: center;
  padding: 10px 16px;
  letter-spacing: .01em;
}
.promo-bar a { color: inherit; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,246,239,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font: 800 17px var(--font-head);
  flex: 0 0 auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font: 800 18px var(--font-head); letter-spacing: -.01em; color: var(--ink); }
.brand-tag { font: 500 11px var(--font-body); color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link {
  font: 600 15px var(--font-body);
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
}
.nav-link:hover { color: var(--green); text-decoration: none; }
.nav-link.is-active { color: var(--green-dark); }

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font: 700 14px var(--font-body);
  color: var(--green-dark);
  cursor: pointer;
}
.cart-btn:hover { background: var(--sand-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 16px 30px;
  font: 700 16px var(--font-body);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; text-decoration: none; }
.btn-outline { background: transparent; color: var(--green-dark); border: 1.5px solid #C9D7CD; }
.btn-outline:hover { background: var(--sand); text-decoration: none; }
.btn-dark { background: var(--green-dark); color: #fff; }
.btn-dark:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn-sm { padding: 12px 22px; font-size: 14px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* ---------- Eyebrow / badges / chips ---------- */
.eyebrow {
  font: 700 12px var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.pill-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font: 700 12px var(--font-body);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.chip {
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font: 600 14px var(--font-body);
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}
.chip.is-active { border-color: var(--green); background: var(--green); color: #fff; }
.tag-sand { background: var(--sand); border-radius: var(--radius-pill); padding: 6px 12px; font: 600 12px var(--font-body); color: #6B5C41; }
.tag-green { background: var(--green-pale); border-radius: var(--radius-pill); padding: 6px 12px; font: 600 12px var(--font-body); color: var(--green-dark); }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font: 800 56px/1.08 var(--font-head); letter-spacing: -.025em; margin: 20px 0 18px; color: var(--ink); }
.hero p.lede { font: 400 18px/1.7 var(--font-body); color: var(--text); margin: 0 0 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 38px; flex-wrap: wrap; }
.hero-stat-num { font: 800 26px var(--font-head); color: var(--green); }
.hero-stat-label { font: 500 14px var(--font-body); color: var(--muted); }
.hero-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 6 / 7;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.page-head { padding: 64px 0 40px; }
.page-head h1 { font: 800 46px/1.12 var(--font-head); letter-spacing: -.02em; margin: 12px 0 16px; }
.page-head p.lede { font: 400 18px/1.7 var(--font-body); color: var(--text); max-width: 720px; margin: 0; }

/* ---------- Feature strip ---------- */
.feature-strip { padding: 28px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); margin-top: 7px; flex: 0 0 auto; }
.feature-title { font: 700 15px var(--font-body); color: var(--ink); }
.feature-text { font: 400 14px/1.5 var(--font-body); color: var(--muted-2); }

/* ---------- Section head with link ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head h2 { font: 800 40px/1.15 var(--font-head); letter-spacing: -.02em; margin: 10px 0 0; }
.section-link { font: 700 15px var(--font-body); color: var(--green); cursor: pointer; }
.section-link:hover { color: var(--green-dark); }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.card:hover { border-color: var(--green); }
.card-icon { width: 44px; height: 44px; border-radius: 14px; margin-bottom: 18px; }
.card h3 { font: 800 20px var(--font-head); margin: 0 0 10px; }
.card p { font: 400 15px/1.65 var(--font-body); color: var(--text); margin: 0 0 16px; }
.card-price { font: 700 16px var(--font-body); color: var(--green-dark); }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.steps-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 9 / 10; }
.steps-media img { width: 100%; height: 100%; object-fit: cover; }
.steps-list { display: flex; flex-direction: column; gap: 18px; }
.step-item { display: flex; gap: 16px; }
.step-num {
  width: 32px; height: 32px; border-radius: 10px; background: #fff;
  color: var(--green-dark); font: 800 15px var(--font-head);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.step-title { font: 700 16px var(--font-body); color: var(--ink); }
.step-text { font: 400 15px/1.6 var(--font-body); color: var(--text-2); }

/* ---------- Booking widget ---------- */
.booking-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: center;
}
.booking-card h2 { font: 800 30px/1.2 var(--font-head); margin: 0 0 12px; }
.booking-card p { font: 400 16px/1.7 var(--font-body); color: var(--text); margin: 0; }
.slots-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.slot {
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
}
.slot-day { font: 700 13px var(--font-body); }
.slot-time { font: 500 12px var(--font-body); opacity: .7; }

/* ---------- Testimonials ---------- */
.stars { color: var(--gold); font: 700 15px var(--font-body); margin-bottom: 12px; }
.testimonial-quote { font: 400 15px/1.7 var(--font-body); color: var(--text); margin: 0 0 16px; }
.testimonial-name { font: 700 14px var(--font-body); color: var(--ink); }
.testimonial-loc { color: var(--muted); font-weight: 500; }

/* ---------- Blog / article cards ---------- */
.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.article-card:hover { text-decoration: none; border-color: var(--green); }
.article-thumb { height: 150px; overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 22px; }
.article-card-body h3 { font: 800 19px/1.3 var(--font-head); margin: 8px 0 8px; color: var(--ink); }
.article-card-body p { font: 400 14px/1.6 var(--font-body); color: var(--muted-2); margin: 0; }

.blog-grid .article-thumb { height: 180px; }
.blog-grid .article-card-body h2 { font: 800 24px/1.28 var(--font-head); margin: 10px 0 10px; color: var(--ink); }
.blog-grid .article-card-body p { font: 400 15px/1.65 var(--font-body); }

.tip-box { background: var(--green-pale); border-radius: var(--radius-lg); padding: 34px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tip-box-title { font: 800 18px var(--font-head); margin-bottom: 8px; color: var(--ink); }
.tip-box p { font: 400 15px/1.65 var(--font-body); color: var(--text-2); margin: 0; }

/* ---------- Article page ---------- */
.article { padding: 56px 0 80px; }
.article-back { font: 600 14px var(--font-body); color: var(--green); cursor: pointer; }
.article h1 { font: 800 42px/1.15 var(--font-head); letter-spacing: -.02em; margin: 18px 0 14px; }
.article-meta { font: 500 14px var(--font-body); color: var(--muted); margin-bottom: 26px; }
.article-hero { border-radius: 20px; overflow: hidden; margin-bottom: 32px; aspect-ratio: 7/4; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article p.lede { font: 400 18px/1.8 var(--font-body); color: var(--text-3); margin: 0 0 20px; }
.article h2 { font: 800 26px var(--font-head); margin: 34px 0 12px; }
.article p { font: 400 17px/1.8 var(--font-body); color: var(--text); margin: 0 0 18px; }
.article-callout { background: var(--blue-pale); border-radius: 18px; padding: 24px; margin: 28px 0; }
.article-callout.sand { background: var(--sand); }
.article-callout.green { background: var(--green-pale); }
.article-callout-title { font: 700 16px var(--font-body); margin-bottom: 8px; color: var(--ink); }
.article-callout p { font: 400 16px/1.7 var(--font-body); color: var(--text-2); margin: 0; }
.article-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* ---------- Pricing ---------- */
.price-table { background: var(--card); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border-light);
}
.price-row:last-child { border-bottom: none; }
.price-row-name { font: 700 16px var(--font-body); color: var(--ink); }
.price-row-note { font: 400 14px var(--font-body); color: var(--muted); }
.price-row-value { font: 700 16px var(--font-body); color: var(--green-dark); white-space: nowrap; }

.discount-box { background: var(--sand); border-radius: 20px; padding: 24px; margin-top: 26px; }
.discount-box-title { font: 700 16px var(--font-body); margin-bottom: 8px; }
.discount-box p { font: 400 15px/1.7 var(--font-body); color: var(--text); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; cursor: pointer; }
.faq-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-q { font: 700 16px var(--font-body); color: var(--ink); }
.faq-sign { font: 700 20px var(--font-body); color: var(--green); flex: 0 0 auto; }
.faq-a { font: 400 15px/1.7 var(--font-body); color: var(--text); margin: 12px 0 0; display: none; }
.faq-item.is-open .faq-a { display: block; }

/* ---------- Shop ---------- */
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; }
.product-thumb { height: 190px; position: relative; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: #fff; border-radius: var(--radius-pill);
  padding: 5px 11px; font: 700 11px var(--font-body); letter-spacing: .04em;
}
.product-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 { font: 800 18px/1.3 var(--font-head); margin: 0; }
.product-body p { font: 400 14px/1.6 var(--font-body); color: var(--muted-2); margin: 0; }
.product-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; }
.product-price { font: 800 20px var(--font-head); color: var(--green-dark); }
.product-add { background: var(--green); color: #fff; border: none; border-radius: var(--radius-pill); padding: 11px 20px; font: 700 14px var(--font-body); cursor: pointer; }
.product-add:hover { background: var(--green-dark); }
.product-add.is-added { background: var(--green-dark); }

.shop-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.shop-info-title { font: 700 17px var(--font-body); margin-bottom: 6px; color: var(--ink); }
.shop-info-grid p { font: 400 15px/1.65 var(--font-body); color: var(--text); margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  padding: 60px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
}
.cta-banner h2 { font: 800 30px var(--font-head); margin: 0 0 8px; }
.cta-banner p { font: 400 16px/1.6 var(--font-body); color: var(--text-2); margin: 0; }

/* ---------- About ---------- */
.about-hero { padding: 64px 0 40px; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.about-grid h1 { font: 800 44px/1.14 var(--font-head); letter-spacing: -.02em; margin: 0 0 18px; }
.about-grid p { font: 400 17px/1.8 var(--font-body); color: var(--text); margin: 0 0 16px; }
.about-media { border-radius: 26px; overflow: hidden; aspect-ratio: 5/6; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.principles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.principle-card { background: #fff; border-radius: 18px; padding: 24px; }
.principle-title { font: 800 17px var(--font-head); margin-bottom: 8px; }
.principle-card p { font: 400 14px/1.6 var(--font-body); color: var(--text); margin: 0; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.team-photo { height: 210px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 22px; }
.team-name { font: 800 18px var(--font-head); color: var(--ink); }
.team-role { font: 600 13px var(--font-body); color: var(--blue); margin: 4px 0 10px; }
.team-body p { font: 400 14px/1.6 var(--font-body); color: var(--muted-2); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-grid h1 { font: 800 44px/1.14 var(--font-head); letter-spacing: -.02em; margin: 0 0 14px; }
.contact-grid > div > p.lede { font: 400 17px/1.7 var(--font-body); color: var(--text); margin: 0 0 28px; }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 26px; margin-bottom: 18px; }
.info-card-title { font: 800 18px var(--font-head); margin-bottom: 14px; }
.info-card p, .info-card div.body { font: 400 16px/1.9 var(--font-body); color: var(--text); }
.map-box { border-radius: 20px; overflow: hidden; aspect-ratio: 16/9; }
.map-box img { width: 100%; height: 100%; object-fit: cover; }

.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 32px; }
.form-card h2 { font: 800 26px var(--font-head); margin: 0 0 6px; }
.form-card .form-hint { font: 400 15px/1.6 var(--font-body); color: var(--muted); margin: 0 0 22px; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font: 600 13px var(--font-body); color: var(--text); display: block; margin-bottom: 6px; }
.field input[type=text], .field input[type=tel], .field input[type=email], .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: 12px;
  font-size: 15px; background: var(--bg); outline: none; color: var(--ink);
}
.field input:focus, .field textarea:focus { border-color: var(--green); }
.field textarea { resize: vertical; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font: 400 13px/1.55 var(--font-body); color: var(--muted-2); cursor: pointer; }
.consent-row input { margin-top: 3px; }
.consent-row .link-strong { color: var(--green); font-weight: 700; cursor: pointer; }
.form-alert { border-radius: 14px; padding: 16px; font: 600 15px/1.5 var(--font-body); }
.form-alert.success { background: var(--green-pale); color: var(--green-dark); }
.form-alert.error { background: var(--red-bg); color: var(--red); }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.billing-box { background: var(--sand); border-radius: 20px; padding: 24px; margin-top: 18px; }
.billing-box-title { font: 700 16px var(--font-body); margin-bottom: 8px; }
.billing-box p { font: 400 15px/1.7 var(--font-body); color: var(--text); margin: 0; }

/* ---------- Legal pages ---------- */
.legal { padding: 60px 0 80px; }
.legal h1 { font: 800 40px/1.15 var(--font-head); letter-spacing: -.02em; margin: 0 0 10px; }
.legal .eff-date { font: 500 14px var(--font-body); color: var(--muted); margin: 0 0 30px; }
.legal h2 { font: 800 22px var(--font-head); margin: 28px 0 10px; }
.legal p { font: 400 16px/1.8 var(--font-body); color: var(--text); margin: 0 0 14px; }
.legal-table { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; margin-bottom: 20px; }
.legal-table-row { padding: 20px 24px; border-bottom: 1px solid var(--border-light); }
.legal-table-row:last-child { border-bottom: none; }
.legal-table-row .row-title { font: 700 16px var(--font-body); margin-bottom: 2px; }
.legal-table-row .row-body { font: 400 15px/1.7 var(--font-body); color: var(--text); }
.legal-ship-row { display: flex; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border-light); }
.legal-ship-row:last-child { border-bottom: none; }
.legal-ship-name { font: 700 16px var(--font-body); }
.legal-ship-note { font: 400 14px var(--font-body); color: var(--muted); }
.legal-ship-price { font: 700 16px var(--font-body); color: var(--green-dark); }
.legal-address-box { background: var(--sand); border-radius: 18px; padding: 24px; margin-bottom: 20px; }
.legal-address-box p { margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-name { font: 800 18px var(--font-head); color: var(--bg); }
.footer-about { font: 400 15px/1.7 var(--font-body); color: var(--footer-muted); margin: 0 0 16px; max-width: 300px; }
.footer-legal-text { font: 400 14px/1.7 var(--font-body); color: var(--footer-muted-2); margin: 0; }
.footer-heading { font: 700 14px var(--font-body); color: var(--bg); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a, .footer-links span { font: 400 15px var(--font-body); color: var(--footer-muted); cursor: pointer; }
.footer-links a:hover, .footer-links span:hover { color: #fff; text-decoration: none; }
.footer-contact { margin-top: 18px; font: 400 15px/1.7 var(--font-body); color: var(--footer-muted); }
.footer-contact a { color: var(--footer-muted); }
.footer-bottom {
  max-width: 1180px; margin: 40px auto 0; padding: 20px 24px 0;
  border-top: 1px solid var(--footer-border);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom span { font: 400 13px var(--font-body); color: var(--footer-muted-2); }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end;
}
.cart-overlay.is-open { display: flex; }
.cart-scrim { position: absolute; inset: 0; background: rgba(34,48,43,.4); border: none; padding: 0; cursor: pointer; }
.cart-panel {
  position: relative; width: 430px; max-width: 92vw; height: 100%;
  background: var(--bg); box-shadow: var(--shadow-drawer);
  display: flex; flex-direction: column; animation: acSlide .25s ease;
}
.cart-head { padding: 24px 26px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head-title { font: 800 22px var(--font-head); }
.cart-close { font: 600 22px var(--font-body); color: var(--muted); cursor: pointer; background: none; border: none; line-height: 1; }
.cart-body { flex: 1; overflow: auto; padding: 20px 26px; }
.cart-empty { text-align: center; padding: 50px 10px; }
.cart-empty p { font: 400 16px/1.6 var(--font-body); color: var(--muted); margin: 0 0 20px; }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid #EDE6D9; }
.cart-line-thumb { width: 64px; height: 64px; border-radius: 14px; flex: 0 0 auto; overflow: hidden; background: var(--sand); }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; }
.cart-line-name { font: 700 15px/1.4 var(--font-body); margin-bottom: 4px; }
.cart-line-price { font: 500 14px var(--font-body); color: var(--muted); margin-bottom: 10px; }
.cart-line-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 9px; border: 1px solid var(--border); background: #fff; font-size: 16px; cursor: pointer; line-height: 1; }
.qty-val { font: 700 15px var(--font-body); min-width: 18px; text-align: center; }
.cart-remove { font: 600 13px var(--font-body); color: var(--red); cursor: pointer; margin-left: 8px; background: none; border: none; }
.cart-line-total { font: 700 15px var(--font-body); color: var(--green-dark); white-space: nowrap; }
.cart-foot { padding: 22px 26px; border-top: 1px solid var(--border); background: #fff; }
.cart-sum-row { display: flex; justify-content: space-between; font: 500 15px var(--font-body); color: var(--text); margin-bottom: 8px; }
.cart-ship-hint { font: 500 13px var(--font-body); color: var(--blue); margin-bottom: 12px; }
.cart-total-row { display: flex; justify-content: space-between; font: 800 20px var(--font-head); margin-bottom: 16px; }
.cart-terms-note { font: 400 12px/1.6 var(--font-body); color: var(--footer-muted-2); margin-top: 12px; text-align: center; }
.cart-terms-note .link-strong { color: var(--green); cursor: pointer; font-weight: 700; }

.checkout-form { display: none; flex-direction: column; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--border); }
.checkout-form.is-open { display: flex; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 70; display: none; justify-content: center;
}
.cookie-banner.is-open { display: flex; }
.cookie-card {
  max-width: 900px; width: 100%; background: #fff; border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow-banner); padding: 24px 26px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.cookie-title { font: 800 17px var(--font-head); margin-bottom: 6px; }
.cookie-card p { font: 400 14px/1.65 var(--font-body); color: var(--text); margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 0 0 10px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .steps-grid, .about-grid, .contact-grid, .booking-card { grid-template-columns: 1fr; }
  .steps-media, .hero-media, .about-media { order: -1; }
  .grid-3, .grid-2, .feature-grid, .principles-grid, .shop-info-grid, .tip-box, .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 44px; }
  .page-head h1 { font-size: 36px; }
}
@media (max-width: 720px) {
  .main-nav { position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 24px; gap: 18px; overflow: auto; transform: translateX(100%); transition: transform .25s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .cart-btn, .main-nav .btn-primary { width: 100%; justify-content: center; }
  .grid-3, .grid-2, .grid-4, .feature-grid, .principles-grid, .shop-info-grid, .tip-box, .footer-grid, .form-row-2 { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2,1fr); }
  .hero h1 { font-size: 34px; }
  .hero p.lede { font-size: 16px; }
  .page-head h1 { font-size: 30px; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 28px; }
  .cta-banner, .legal-ship-row { flex-direction: column; align-items: flex-start; }
  .cookie-card { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-start; }
  .cart-panel { width: 100%; max-width: 100%; }
}
