@import url("fonts-generated.css");

:root {
  --ink: oklch(24% 0.012 50);
  --muted: oklch(48% 0.014 55);
  --border: oklch(85% 0.014 70);
  --surface: oklch(94% 0.012 80);
  --accent: oklch(52% 0.09 45);
  --accent-dark: oklch(38% 0.08 42);
  --bg: oklch(97.5% 0.006 85);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', -apple-system, Segoe UI, Arial, sans-serif;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
h1, h2, h3 { font-family: 'Poppins', -apple-system, Segoe UI, Arial, sans-serif; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1240px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.logo {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 24px;
  color: var(--ink); text-decoration: none; letter-spacing: 0.01em; margin-right: auto;
}
.nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav-link {
  font-size: 15px; color: var(--ink); text-decoration: none; cursor: pointer;
  padding: 8px 4px; border-bottom: 2px solid transparent; white-space: nowrap; background: none; border-top:none; border-left:none; border-right:none;
}
.nav-link.is-active { color: var(--accent); border-bottom: 2px solid var(--accent); }
.nav-link:hover { color: var(--accent); }
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border);
  border-radius: 6px; box-shadow: 0 12px 28px oklch(24% 0.012 50 / 0.12); padding: 8px; min-width: 220px;
  display: none; flex-direction: column; z-index: 60;
}
.dropdown.is-open .dropdown-panel,
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel { display: flex; }
.dropdown-item {
  padding: 10px 14px; font-size: 14px; color: var(--ink); text-decoration: none; border-radius: 4px;
}
.dropdown-item:hover { background: var(--surface); color: var(--ink); }
.cart-link {
  position: relative; font-size: 15px; font-weight: 600;
  color: #fff; background: var(--accent); padding: 10px 18px; border-radius: 999px; text-decoration: none;
}
.cart-link:hover { color: #fff; background: var(--accent-dark); }
.cart-badge {
  position: absolute; top: -8px; right: -8px; background: var(--ink); color: #fff; font-size: 11px;
  border-radius: 999px; min-width: 20px; height: 20px; display: none; align-items: center; justify-content: center; padding: 0 4px;
}
.cart-badge.is-visible { display: flex; }

/* ---------- Buttons / generic ---------- */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; text-decoration: none; font-family: 'Work Sans', sans-serif;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-secondary:hover { color: var(--accent-dark); border-color: var(--accent-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: 0.88; }
.btn-light { background: #fff; color: var(--accent-dark); }

/* ---------- Layout helpers ---------- */
.section { max-width: 1240px; margin: 0 auto; padding: 56px 28px; }
.section-alt { max-width: 1240px; margin: 0 auto; padding: 56px 28px; background: var(--surface); border-radius: 24px; }
.section-narrow { max-width: 780px; margin: 0 auto; padding: 56px 28px 24px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.eyebrow { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.eyebrow-light { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(90% 0.02 60); font-weight: 600; }
h1.h1, .h1 { font-family: 'Poppins', sans-serif; font-size: clamp(34px, 5vw, 56px); line-height: 1.08; margin: 0; font-weight: 600; }
.h1--sm { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; }
h2.h2, .h2 { font-family: 'Poppins', sans-serif; font-size: clamp(26px, 3.4vw, 36px); font-weight: 600; margin: 0 0 8px; }
.h2-light { font-family: 'Poppins', sans-serif; font-size: clamp(24px, 3vw, 34px); font-weight: 600; margin: 0; color: #fff; }
.lead { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 0; max-width: 480px; }
.lead-center { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; }
.lead-light { font-size: 15px; line-height: 1.6; color: oklch(92% 0.015 60); margin: 0; max-width: 440px; }
.section-lead { font-size: 15px; color: var(--muted); margin: 0; max-width: 520px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.text-link { color: var(--accent); font-weight: 600; font-size: 14px; text-decoration: none; }

/* ---------- Hero (home) ---------- */
.hero {
  max-width: 1240px; margin: 0 auto; padding: 56px 28px 72px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 18px; }
.hero-btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-img img, .img-ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.hero-img { min-width: 0; border-radius: 12px; overflow: hidden; min-height: 420px; }

/* Inner page hero (image + text) */
.hero-split {
  max-width: 1240px; margin: 0 auto; padding: 48px 28px 56px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; align-items: center;
}
.hero-split .hero-img { min-height: 320px; }

/* ---------- Trust bar ---------- */
.trust-bar { max-width: 1240px; margin: 0 auto; padding: 0 28px 56px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.trust-icon { font-size: 22px; }
.trust-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; }
.trust-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- Category grid ---------- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; margin-top: 28px; }
.category-card { text-decoration: none; display: flex; flex-direction: column; gap: 12px; color: var(--ink); }
.category-card img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; }
.category-label { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 18px; }

/* ---------- Product grid / card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 22px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.product-card img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; }
.product-sub { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.product-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; }
.product-desc { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.product-price-row { display: flex; gap: 10px; align-items: baseline; }
.price { font-weight: 700; font-size: 16px; }
.price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.add-btn { margin-top: 6px; background: var(--ink); color: #fff; border: none; border-radius: 999px; padding: 10px 16px; font-size: 14px; font-weight: 600; cursor: pointer; }
.add-btn:hover { background: var(--accent-dark); }

/* ---------- Filters ---------- */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--ink);
  font-size: 14px; cursor: pointer;
}
.filter-btn.is-active { border-color: var(--accent); background: var(--accent); color: #fff; }

/* ---------- Collection banner (home) ---------- */
.collection-banner {
  max-width: 1240px; margin: 56px auto; padding: 0 28px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 0; align-items: center; background: var(--accent-dark); border-radius: 24px; color: #fff; overflow: hidden;
}
.collection-banner-text { padding: 48px 8px 48px 40px; display: flex; flex-direction: column; gap: 16px; }
.collection-banner-img { padding: 40px 40px 40px 8px; min-width: 0; }
.collection-banner-img img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Magazine cards ---------- */
.mag-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; margin-top: 28px; }
.mag-card { text-decoration: none; display: flex; flex-direction: column; gap: 10px; color: var(--ink); }
.mag-card img { border-radius: 12px; aspect-ratio: 16/10; object-fit: cover; }
.mag-tag { font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.mag-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 17px; }

/* Magazine listing pages */
.article-grid { max-width: 1240px; margin: 0 auto; padding: 16px 28px 72px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.article-card img { border-radius: 10px; aspect-ratio: 16/10; object-fit: cover; }
.article-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 17px; }
.article-excerpt { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }
.article-read { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; margin-top: 28px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.stars { color: var(--accent); font-size: 14px; }
.quote { font-size: 15px; line-height: 1.6; margin: 0; }
.author { font-size: 13px; color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter { max-width: 900px; margin: 0 auto 72px; padding: 48px 28px; background: var(--surface); border-radius: 24px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 10px; width: 100%; }
.newsletter-input { padding: 14px 18px; border-radius: 999px; border: 1px solid var(--border); font-size: 14px; min-width: 260px; flex: 1 1 260px; max-width: 360px; font-family: 'Work Sans', sans-serif; }
.newsletter-btn { padding: 14px 24px; border-radius: 999px; border: none; background: var(--ink); color: #fff; font-weight: 600; font-size: 14px; cursor: pointer; }
.newsletter-btn:hover { background: var(--accent-dark); }
.subscribed-msg { color: var(--accent); font-size: 14px; font-weight: 600; }

/* ---------- Tips ---------- */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-bottom: 20px; }
.tip-card { background: var(--surface); border-radius: 14px; padding: 20px; }
.tip-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.tip-text { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ---------- Collections page ---------- */
.collections-wrap { max-width: 1240px; margin: 0 auto; padding: 32px 28px 72px; display: flex; flex-direction: column; gap: 56px; }
.collection-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; align-items: center; }
.collection-row.is-reverse .collection-row-img { order: 2; }
.collection-row.is-reverse .collection-row-text { order: 1; }
.collection-row-img img { border-radius: 14px; aspect-ratio: 4/3; object-fit: cover; }
.collection-row-text { display: flex; flex-direction: column; gap: 12px; }
.collection-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.collection-list li { font-size: 14px; padding-left: 18px; position: relative; }
.collection-list li::before { content: "\2022"; position: absolute; left: 0; color: var(--accent); }

/* ---------- Shop / cart ---------- */
.catalog-section { max-width: 1240px; margin: 0 auto; padding: 16px 28px 56px; }
.cart-section { max-width: 900px; margin: 0 auto; padding: 32px 28px 80px; }
.ordered-box { background: var(--surface); border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.ordered-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.ordered-text { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
.empty-text { font-size: 15px; color: var(--muted); }
.cart-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.cart-row { display: grid; grid-template-columns: 72px minmax(0,1fr) auto auto auto; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px; }
.cart-row img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; }
.cart-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; }
.cart-unit-price { font-size: 12px; color: var(--muted); }
.qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 26px; height: 26px; border-radius: 999px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 14px; line-height: 1; }
.qty-val { min-width: 18px; text-align: center; font-size: 14px; }
.line-total { font-weight: 700; font-size: 14px; white-space: nowrap; }
.remove-btn { border: none; background: transparent; color: var(--muted); font-size: 12px; text-decoration: underline; cursor: pointer; }
.summary-box { background: var(--surface); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.summary-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.summary-total-line { display: flex; justify-content: space-between; font-size: 17px; font-weight: 700; margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--border); }
.checkout-btn { margin-top: 10px; background: var(--accent); color: #fff; border: none; border-radius: 999px; padding: 14px 20px; font-weight: 600; font-size: 15px; cursor: pointer; width: 100%; }
.checkout-btn:hover { background: var(--accent-dark); }
.legal-note { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ---------- About page ---------- */
.stats-section { max-width: 1240px; margin: 0 auto; padding: 0 28px 56px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px; }
.stat-card { background: var(--surface); border-radius: 14px; padding: 22px; text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 30px; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.story-section { max-width: 860px; margin: 0 auto; padding: 0 28px 56px; display: flex; flex-direction: column; gap: 14px; }
.story-section p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; margin-top: 8px; }
.value-card { background: var(--surface); border-radius: 14px; padding: 20px; }
.value-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.value-text { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }
.cta-section { max-width: 1240px; margin: 0 auto 72px; padding: 48px 28px; background: var(--accent-dark); border-radius: 24px; text-align: center; display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ---------- Contact page ---------- */
.contact-grid { max-width: 1100px; margin: 0 auto; padding: 16px 28px 80px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.3fr); gap: 32px; }
.info-col { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.info-label { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; color: var(--accent); margin-bottom: 4px; }
.info-text { font-size: 14px; }
.map-wrap { margin-top: 4px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; }
.form-col { background: var(--surface); border-radius: 16px; padding: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px; border-radius: 8px; border: 1px solid var(--border); font-size: 14px; font-family: 'Work Sans', sans-serif; width: 100%;
}
.form-textarea { resize: vertical; }
.checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); }
.checkbox-row input { margin-top: 2px; }
.submit-btn { background: var(--accent); color: #fff; border: none; border-radius: 999px; padding: 13px 20px; font-weight: 600; font-size: 14px; cursor: pointer; }
.submit-btn:hover { background: var(--accent-dark); }
.sent-box { padding: 10px; }
.sent-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.sent-text { font-size: 14px; color: var(--muted); line-height: 1.55; }
.form-error { font-size: 13px; color: oklch(50% 0.18 25); margin: 0; }
[hidden] { display: none !important; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 56px 28px 80px; display: flex; flex-direction: column; gap: 6px; }
.legal-wrap.legal-wide { max-width: 900px; }
.legal-meta { font-size: 14px; color: var(--muted); margin: 0 0 20px; line-height: 1.6; }
.legal-wrap h2 { font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 600; margin: 18px 0 8px; }
.legal-wrap p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; }
.legal-wrap ul { margin: 0; padding: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: var(--muted); line-height: 1.6; }
.legal-wrap ul.no-bullets { list-style: none; padding-left: 0; }
.sample-box { background: var(--surface); border-radius: 12px; padding: 18px; margin: 8px 0; }
.sample-text { font-size: 14px; color: var(--ink); line-height: 1.6; margin: 0; font-style: italic; }
.cookie-table { display: flex; flex-direction: column; gap: 10px; margin: 8px 0; }
.cookie-row { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 10px; border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; background: #fff; }
.cookie-row-title { font-weight: 600; font-size: 14px; }
.cookie-row-desc, .cookie-row-duration { font-size: 13px; color: var(--muted); }
.shipping-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-bottom: 8px; }
.shipping-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.shipping-card-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; }
.shipping-card-text { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }
.shipping-card-price { font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); margin-top: 80px; }
.footer-top { max-width: 1240px; margin: 0 auto; padding: 56px 28px 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 36px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 22px; margin-bottom: 4px; }
.footer-head { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.footer-p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.footer-link { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 20px 28px 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--muted);
}

/* ---------- Cookie consent ---------- */
.cookie-bar {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 900px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px;
  box-shadow: 0 16px 40px oklch(24% 0.012 50 / 0.18); display: flex; gap: 18px; align-items: center;
  flex-wrap: wrap; z-index: 100;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar-text { font-size: 13px; line-height: 1.5; margin: 0; flex: 1 1 320px; }
.cookie-bar-text a { text-decoration: underline; }
.cookie-btn-row { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-reject { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--border); background: transparent; color: var(--ink); font-size: 13px; cursor: pointer; }
.cookie-accept { padding: 10px 18px; border-radius: 999px; border: none; background: var(--accent); color: #fff; font-size: 13px; font-weight: 600; cursor: pointer; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff;
  padding: 12px 22px; border-radius: 999px; font-size: 14px; z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Image placeholder (fallback if image missing) ---------- */
.img-ph { position: relative; overflow: hidden; background: var(--surface); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero, .hero-split, .collection-banner, .collection-row, .contact-grid { grid-template-columns: 1fr; }
  .collection-banner-text, .collection-banner-img { padding: 32px; }
  .collection-row.is-reverse .collection-row-img,
  .collection-row.is-reverse .collection-row-text { order: initial; }
  .cart-row { grid-template-columns: 56px 1fr; grid-template-areas: "img info" "img qty" "img total" "img remove"; }
  .cart-row img { width: 56px; height: 56px; }
}
@media (max-width: 560px) {
  .site-header__inner { padding: 14px 18px; gap: 16px; }
  .nav { gap: 14px; }
  .hero, .hero-split, .section, .section-alt, .catalog-section, .cart-section { padding-left: 18px; padding-right: 18px; }
}
