/* Fidgets by Marcus — public site, bento-grid edition */

:root {
  --bg: #f4f4f6;
  --surface: #ffffff;
  --surface-2: #fafafc;
  --ink: #0a0a0c;
  --ink-2: #2a2a30;
  --ink-3: #5a5a64;
  --muted: #8a8a94;
  --line: #e8e8ec;
  --line-2: #f0f0f4;
  --accent: #1a5fe0;
  --accent-hover: #1348b8;
  --accent-soft: #e8efff;
  --pink: #ff6b9d;
  --orange: #ff9558;
  --yellow: #ffc857;
  --mint: #4ad295;
  --lavender: #9b8dff;
  --danger: #dc2626;
  --shadow-1: 0 1px 2px rgba(10, 10, 14, .04);
  --shadow-2: 0 4px 16px rgba(10, 10, 14, .06);
  --shadow-3: 0 12px 40px rgba(10, 10, 14, .10);
  --radius-card: 22px;
  --radius-card-lg: 28px;
  --radius-btn: 12px;
  --radius-pill: 999px;
  --t-fast: 180ms cubic-bezier(.2, .8, .2, 1);
  --t-med: 280ms cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 15% 8%, rgba(255, 107, 157, .06), transparent 40%),
    radial-gradient(circle at 85% 92%, rgba(74, 210, 149, .06), transparent 40%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }
h1 { font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-weight: 800; font-size: 1.15rem; }
h4 { font-weight: 700; font-size: .98rem; }
em { font-style: normal; color: var(--accent); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 11px;
  border-radius: var(--radius-pill);
}
.eyebrow::before { content: '●'; font-size: .55rem; line-height: 1; }

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

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 20px;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-1); }
.btn-accent:hover { background: var(--accent-hover); box-shadow: var(--shadow-2); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-2); }
.btn-sm { padding: 8px 14px; font-size: .82rem; }
.btn-lg { padding: 14px 26px; font-size: .98rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(244, 244, 246, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-1);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 1rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand em { color: var(--accent); }
.brand-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--accent), var(--mint), var(--yellow), var(--pink), var(--accent));
  box-shadow: 0 0 0 3px var(--accent-soft);
  flex-shrink: 0;
}
.brand-center { display: inline-flex; justify-content: center; margin: 0 auto 24px; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-3);
  font-weight: 600;
  font-size: .9rem;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--ink); }
.nav-mobile-only { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  transition: background var(--t-fast);
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Bento Grid Foundation ──────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
  margin: 32px 0;
}
.cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); }

.cell-x12 { grid-column: span 12; }
.cell-x8  { grid-column: span 8; }
.cell-x6  { grid-column: span 6; }
.cell-x5  { grid-column: span 5; }
.cell-x4  { grid-column: span 4; }
.cell-x3  { grid-column: span 3; }
.cell-y2  { grid-row: span 2; }

/* ── Hero card ──────────────────────────────────────────────── */
.cell-hero {
  background: linear-gradient(135deg, #ffffff 0%, #fbfbfd 100%);
  padding: 48px 44px;
  min-height: 380px;
  justify-content: space-between;
  position: relative;
}
.cell-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 95, 224, .12), transparent 70%);
  pointer-events: none;
}
.hero-tag { color: var(--ink-3); font-size: .82rem; font-weight: 700; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px; }
.hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.cell-hero h1 { margin-bottom: 18px; max-width: 18ch; }
.cell-hero p { color: var(--ink-3); font-size: 1.05rem; margin-bottom: 28px; max-width: 36ch; }
.cell-hero .hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Trust card (4 mini-stats stacked) ──────────────────────── */
.cell-trust {
  background: var(--ink);
  color: #fff;
  padding: 28px;
  justify-content: space-between;
}
.cell-trust h4 { color: #fff; opacity: .65; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; font-family: 'Nunito', sans-serif; font-weight: 700; margin-bottom: 18px; }
.trust-list { display: flex; flex-direction: column; gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .92rem; font-weight: 600; }
.trust-item-icon { font-size: 1.2rem; line-height: 1; }

/* ── About snippet card ─────────────────────────────────────── */
.cell-about { background: var(--accent-soft); border-color: transparent; }
.cell-about .eyebrow { background: rgba(255, 255, 255, .8); }
.cell-about h3 { margin: 16px 0 8px; font-size: 1.5rem; }
.cell-about p { color: var(--ink-2); font-size: .94rem; line-height: 1.6; }
.cell-about .age-pill { display: inline-block; background: var(--ink); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; margin-top: 14px; }

/* ── Product cards (bento) ──────────────────────────────────── */
.cell-product { padding: 0; overflow: hidden; }
.cell-product .photo {
  flex: 1;
  min-height: 0;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cell-product .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}
.cell-product:hover .photo img { transform: scale(1.06); }
.cell-product .photo-empty {
  font-size: 3.2rem;
  opacity: .25;
}
.cell-product .body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
}
.cell-product .pname {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--ink);
}
.cell-product .pdesc {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cell-product .pfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}
.cell-product .pprice {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.2rem;
}
.cell-product .pprice em { color: var(--ink); }
.cell-product .pprice small { font-family: 'Nunito', sans-serif; font-weight: 600; font-size: .68em; color: var(--muted); margin-left: 2px; }

/* Featured product card (xl) */
.cell-product.cell-y2 .body { padding: 22px 28px 26px; }
.cell-product.cell-y2 .pname { font-size: 1.5rem; }
.cell-product.cell-y2 .pdesc { font-size: .92rem; -webkit-line-clamp: 3; }
.cell-product.cell-y2 .pprice { font-size: 1.6rem; }

/* Color-tinted product placeholders */
.cell-product:nth-child(7n+1) .photo:not(:has(img)) { background: linear-gradient(135deg, #fff5f8, #ffe5ed); }
.cell-product:nth-child(7n+2) .photo:not(:has(img)) { background: linear-gradient(135deg, #f3fef8, #d8f8e7); }
.cell-product:nth-child(7n+3) .photo:not(:has(img)) { background: linear-gradient(135deg, #fff9eb, #ffeec5); }
.cell-product:nth-child(7n+4) .photo:not(:has(img)) { background: linear-gradient(135deg, #f4f0ff, #e8dffd); }
.cell-product:nth-child(7n+5) .photo:not(:has(img)) { background: linear-gradient(135deg, #eaf2ff, #d4e4ff); }
.cell-product:nth-child(7n+6) .photo:not(:has(img)) { background: linear-gradient(135deg, #fff0e8, #ffd9c0); }
.cell-product:nth-child(7n+7) .photo:not(:has(img)) { background: linear-gradient(135deg, #fdfdf8, #ececdd); }

/* ── How-to-order card ──────────────────────────────────────── */
.cell-steps { background: linear-gradient(135deg, #fff8e9, #fff3d4); border-color: transparent; }
.cell-steps h3 { margin: 8px 0 16px; font-size: 1.4rem; }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.step {
  background: rgba(255, 255, 255, .7);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
}
.step h4 { font-size: .9rem; margin-bottom: 2px; }
.step p { color: var(--ink-3); font-size: .8rem; line-height: 1.4; }

/* ── CTA card ───────────────────────────────────────────────── */
.cell-cta {
  background: linear-gradient(135deg, var(--ink) 0%, #1c1c22 100%);
  color: #fff;
  border-color: transparent;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 36px;
  position: relative;
}
.cell-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(26, 95, 224, .35), transparent 60%);
  pointer-events: none;
}
.cell-cta h3 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; max-width: 16ch; position: relative; }
.cell-cta p { color: rgba(255, 255, 255, .65); font-size: .9rem; margin-bottom: 18px; max-width: 30ch; position: relative; }
.cell-cta .btn { position: relative; }

/* ── News section ───────────────────────────────────────────── */
.news-section { margin: 40px 0 16px; }
.news-head { text-align: center; margin-bottom: 24px; }
.news-head h2 { margin-top: 10px; }
.news-bento { margin-top: 0; }
.cell-news {
  background: linear-gradient(135deg, #fff, #fafafc);
  padding: 24px;
}
.cell-news .news-photo {
  margin: -24px -24px 16px;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
}
.cell-news .news-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med);
}
.cell-news:hover .news-photo img { transform: scale(1.04); }
.cell-news .news-meta { color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.cell-news .news-title { font-size: 1.2rem; margin-bottom: 8px; }
.cell-news.cell-x6 .news-title { font-size: 1.45rem; }
.cell-news .news-body {
  color: var(--ink-3);
  font-size: .92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Newsletter card ────────────────────────────────────────── */
.cell-newsletter {
  background: linear-gradient(135deg, #fff5f8 0%, #ffe5ed 50%, #f4f0ff 100%);
  border-color: transparent;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.cell-newsletter::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 157, .25), transparent 70%);
  pointer-events: none;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  position: relative;
}
.newsletter-text h3 { font-size: 1.6rem; margin: 12px 0 8px; max-width: 14ch; }
.newsletter-text p { font-size: .94rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-fields {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 8px;
}
.newsletter-fields input {
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .85);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.newsletter-fields input:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.newsletter-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .78rem;
  color: var(--ink-3);
  line-height: 1.45;
  cursor: pointer;
}
.newsletter-consent input { flex-shrink: 0; margin-top: 3px; cursor: pointer; }
.newsletter-success {
  background: #dcfce7;
  border: 1px solid #16a34a;
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  text-align: center;
}

/* ── Social FAB (Messenger / Facebook) ──────────────────────── */
.social-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
  pointer-events: none;
}
.fab {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 24px rgba(10, 10, 14, .18), 0 2px 6px rgba(10, 10, 14, .12);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}
.fab svg { flex-shrink: 0; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10, 10, 14, .24), 0 4px 8px rgba(10, 10, 14, .14); }
.fab-messenger { background: linear-gradient(135deg, #0078ff, #0064d8); }
.fab-facebook { background: #1877f2; }
.fab-facebook:hover { background: #166fe0; }
.fab-write { background: var(--ink); padding: 12px; }
.fab-write:hover { background: var(--accent); }

/* ── Contact section ────────────────────────────────────────── */
.contact-section {
  margin: 48px 0;
}
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card-lg);
  padding: 44px;
  box-shadow: var(--shadow-1);
}
.contact-text h2 { margin: 16px 0 12px; }
.contact-text p { color: var(--muted); font-size: .98rem; max-width: 36ch; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-weight: 600; font-size: .85rem; color: var(--ink-2); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: .96rem;
  padding: 11px 14px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-row textarea { resize: vertical; min-height: 88px; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  margin-top: 40px;
  padding: 32px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-links a { color: var(--muted); font-size: .9rem; transition: color var(--t-fast); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { color: var(--muted); font-size: .82rem; width: 100%; text-align: center; padding-top: 16px; border-top: 1px solid var(--line-2); margin-top: 8px; }

/* ── Reveal animation ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: .94rem;
  box-shadow: var(--shadow-3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 1000;
}
.toast.show { opacity: 1; transform: translateX(-50%); pointer-events: auto; }
.toast.toast-error { background: var(--danger); }

/* ── Feedback page ──────────────────────────────────────────── */
.feedback-page { background: var(--bg); min-height: 100vh; }
.feedback-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 32px 20px; }
.feedback-card {
  background: var(--surface);
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  padding: 48px 36px;
  width: 100%;
  max-width: 520px;
  text-align: center;
}
.feedback-state { display: flex; flex-direction: column; gap: 18px; }
.feedback-icon { font-size: 3.6rem; }
.feedback-state h1 { font-size: 1.8rem; }
.stars { display: inline-flex; gap: 6px; justify-content: center; font-size: 2.6rem; margin: 4px 0 8px; }
.star { background: none; border: none; color: #d4d4d8; cursor: pointer; padding: 0 6px; transition: color var(--t-fast), transform var(--t-fast); font-size: inherit; line-height: 1; }
.star:hover { transform: scale(1.12); }
.star.active { color: var(--yellow); }
.feedback-page .form-row { text-align: left; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(8, 1fr); }
  .cell-x8 { grid-column: span 8; }
  .cell-x6 { grid-column: span 8; }
  .cell-x5 { grid-column: span 4; }
  .cell-x4 { grid-column: span 4; }
  .cell-x3 { grid-column: span 4; }
  .contact-shell { grid-template-columns: 1fr; padding: 32px; }
}
@media (max-width: 700px) {
  .shell { padding: 0 14px; }
  .nav { padding: 10px 0; }
  .nav-shell { padding: 6px 8px 6px 14px; height: 50px; gap: 8px; }
  .brand span:not(.brand-dot) { font-size: .9rem; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Mobile dropdown panel */
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    margin: 0 14px;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-3);
    padding: 8px;
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity var(--t-fast), transform var(--t-fast);
    z-index: 60;
  }
  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--ink-2);
    transition: background var(--t-fast), color var(--t-fast);
  }
  .nav-links a:hover { background: var(--bg); color: var(--ink); }
  .nav-mobile-only { display: block; }

  .bento { grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 18px 0; }
  .cell { padding: 16px; border-radius: 18px; }
  .cell-x12, .cell-x8, .cell-x6, .cell-x5, .cell-x4, .cell-x3 { grid-column: span 2; }
  .cell-y2 { grid-row: span 1; }

  .cell-hero { padding: 28px 22px; min-height: auto; }
  .cell-hero h1 { font-size: 2rem; }
  .cell-hero p { font-size: .96rem; margin-bottom: 20px; }
  .cell-hero .hero-ctas { flex-direction: column; align-items: stretch; }
  .cell-hero .btn-lg { width: 100%; }

  .cell-trust { padding: 22px; }
  .cell-trust h4 { margin-bottom: 14px; }
  .trust-item { font-size: .88rem; }

  .cell-about h3 { font-size: 1.3rem; }
  .cell-about p { font-size: .92rem; }

  .cell-product { grid-column: span 1 !important; }
  .cell-product .photo { aspect-ratio: 1 / 1; }
  .cell-product .body { padding: 14px 16px 16px; }
  .cell-product .pname { font-size: .95rem; }
  .cell-product .pdesc { font-size: .76rem; -webkit-line-clamp: 2; }
  .cell-product .pprice { font-size: 1rem; }
  .cell-product.cell-y2 .pname { font-size: 1.1rem; }
  .cell-product.cell-y2 .pprice { font-size: 1.2rem; }
  .cell-product .pfoot { margin-top: 8px; }
  .cell-product .btn-sm { padding: 6px 12px; font-size: .76rem; }

  .cell-steps { grid-column: span 2 !important; }
  .steps-grid { grid-template-columns: 1fr; gap: 10px; }
  .step { padding: 12px 14px; }

  .cell-cta { grid-column: span 2 !important; padding: 26px 22px; }
  .cell-cta h3 { font-size: 1.3rem; }

  .cell-newsletter { grid-column: span 2 !important; padding: 26px 20px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 18px; }
  .newsletter-fields { grid-template-columns: 1fr; }
  .newsletter-text h3 { font-size: 1.4rem; max-width: none; }

  .news-section { margin: 24px 0 8px; }
  .news-head h2 { font-size: 1.6rem; }
  .cell-news { grid-column: span 2 !important; padding: 18px; }
  .cell-news .news-photo { margin: -18px -18px 12px; aspect-ratio: 16 / 10; }
  .cell-news .news-title, .cell-news.cell-x6 .news-title { font-size: 1.1rem; }
  .cell-news .news-body { font-size: .85rem; -webkit-line-clamp: 3; }

  .contact-section { margin: 28px 0; }
  .contact-shell { padding: 22px 18px; gap: 16px; }
  .contact-text h2 { font-size: 1.6rem; }

  .footer-inner { flex-direction: column; gap: 12px; padding: 0 18px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* Social FAB on mobile: keep labels visible, just slightly smaller */
  .social-fab { right: 12px; bottom: 12px; gap: 8px; }
  .fab { padding: 10px 16px 10px 12px; font-size: .82rem; gap: 8px; }
  .fab svg { width: 20px; height: 20px; }
  .fab-write { padding: 10px; }      /* pencil button stays icon-only (no label) */
  .fab-facebook { padding: 10px 14px 10px 11px; }
}

@media (max-width: 380px) {
  .cell-hero h1 { font-size: 1.7rem; }
  .nav-shell .btn-sm { display: none; }
}
