/* ==========================================================================
   Jaimes Recipes - "Tide Table" design system
   Ocean navy + coral + seafoam. Young Serif display, Onest text.
   ========================================================================== */

:root {
  --ink: #0e2a3b;
  --ink-2: #1c4257;
  --ink-soft: #4b6474;
  --foam: #eef5f2;
  --foam-2: #e0ece7;
  --shell: #ffffff;
  --sand: #f7ead6;
  --sand-2: #efdcc0;
  --coral: #f0614a;
  --coral-dark: #d4492f;
  --coral-ink: #b83a22;
  --kelp: #1d7563;
  --kelp-soft: #d3ebe3;
  --sun: #f5b83d;
  --line: #cddfd7;
  --line-2: #b9cfc6;
  --f-display: "Young Serif", Georgia, "Times New Roman", serif;
  --f-body: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --top-h: 74px;
  --r-lg: 32px;
  --r-md: 22px;
  --r-sm: 14px;
  --shadow: 0 18px 40px -22px rgba(14, 42, 59, .45);
  --shadow-sm: 0 8px 20px -12px rgba(14, 42, 59, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--top-h) + 16px); }
body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
  /* Column layout keeps the footer at the bottom on short pages; the dock's
     clearance lives inside the footer so no strip of page shows under it. */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body > main { flex: 1 0 auto; }
body > footer { flex: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.12; margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(38px, 5.4vw, 72px); }
h2 { font-size: clamp(30px, 3.6vw, 46px); }
h3 { font-size: 24px; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 999px; z-index: 100; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tight { padding: 40px 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--kelp);
}
.kicker .ico { color: var(--coral); }
.lead { font-size: 19px; color: var(--ink-soft); max-width: 58ch; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.section-head h2 { margin: 6px 0 0; }
.section-head p { margin: 8px 0 0; color: var(--ink-soft); max-width: 52ch; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--coral); padding-bottom: 2px; }
.link-arrow:hover { color: var(--coral-ink); }

/* ---------- buttons & forms ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 15px; line-height: 1.2; text-decoration: none; cursor: pointer;
  white-space: nowrap; transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); }
.btn-ink { background: var(--ink); color: var(--foam); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--foam); }
.btn-light { background: var(--foam); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label, .label { font-size: 13.5px; font-weight: 600; }
.input, .select, .textarea {
  width: 100%; background: var(--shell); border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  padding: 12px 14px; font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
.textarea { min-height: 150px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(240, 97, 74, .22); }
.input.is-invalid { border-color: var(--coral-ink); }
.field-error { color: var(--coral-ink); font-size: 13px; font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; }
.select {
  appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat;
}
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.check input { width: 18px; height: 18px; accent-color: var(--coral); margin-top: 3px; }
.alert { padding: 14px 18px; border-radius: var(--r-sm); margin-bottom: 18px; font-size: 15px; display: flex; gap: 10px; align-items: flex-start; }
.alert-error { background: #fde5df; color: #7d2414; }
.alert-ok { background: var(--kelp-soft); color: #0f4a3d; }
.alert-info { background: var(--sand); color: var(--ink); }

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40; height: var(--top-h);
  background: rgba(238, 245, 242, .94); border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: saturate(140%) blur(10px); backdrop-filter: saturate(140%) blur(10px);
}
.topbar__in { height: 100%; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--f-display); font-size: 27px; letter-spacing: -.02em; }
.brand__sub { font-size: 10.5px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--coral-ink); margin-top: 5px; }
.searchpill { position: relative; max-width: 560px; width: 100%; justify-self: center; }
.searchpill .ico { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); pointer-events: none; }
.searchpill input {
  width: 100%; height: 48px; border-radius: 999px; border: 1.5px solid var(--line-2); background: var(--shell);
  padding: 0 110px 0 48px; font-size: 15.5px;
}
.searchpill input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(240, 97, 74, .2); }
.searchpill button { position: absolute; right: 5px; top: 5px; height: 38px; padding: 0 18px; }
.tools { display: flex; align-items: center; gap: 8px; }
.tool {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; min-width: 46px; padding: 0 12px; border-radius: 999px; background: transparent; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; font-weight: 600; font-size: 14.5px;
}
.tool:hover { background: var(--foam-2); }
.tool--cart { background: var(--ink); color: var(--foam); padding: 0 16px 0 14px; }
.tool--cart:hover { background: var(--ink-2); }
.cart-count {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--coral); color: #fff;
  font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
}
.tool--menu { display: none; }
.member-flag { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--sun); color: var(--ink); padding: 3px 8px; border-radius: 999px; }

/* ---------- floating dock (primary nav) ---------- */
.dock {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 45;
  display: flex; gap: 2px; padding: 6px; border-radius: 999px; background: var(--ink);
  box-shadow: 0 24px 50px -18px rgba(14, 42, 59, .7), 0 0 0 1px rgba(255, 255, 255, .06) inset;
  transition: transform .35s var(--ease), opacity .3s;
}
.dock.is-tucked { transform: translate(-50%, 130%); opacity: 0; }
.dock__item {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 999px;
  color: rgba(238, 245, 242, .78); text-decoration: none; font-size: 14.5px; font-weight: 500; white-space: nowrap;
  transition: background .2s, color .2s;
}
.dock__item:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.dock__item.is-active { background: var(--coral); color: #fff; }

/* ---------- mobile sheet ---------- */
.sheet {
  position: fixed; inset: 0; z-index: 60; background: var(--ink); color: var(--foam);
  display: flex; flex-direction: column; padding: 18px 22px 30px;
  transform: translateY(100%); transition: transform .45s var(--ease); visibility: hidden;
}
.sheet.is-open { transform: translateY(0); visibility: visible; }
.sheet__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.sheet__close { background: rgba(255, 255, 255, .1); border: 0; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.sheet nav a {
  display: flex; justify-content: space-between; align-items: center; padding: 13px 0;
  font-family: var(--f-display); font-size: 31px; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.sheet nav a .ico { color: var(--coral); }
.sheet__foot { margin-top: auto; font-size: 14px; color: rgba(238, 245, 242, .7); padding-top: 20px; }
.sheet__foot a { color: #fff; }
.sheet .searchpill { margin: 6px 0 12px; max-width: none; }

/* ---------- notices ---------- */
.flash { margin: 18px auto 0; }
.flash .alert { margin: 0; }

/* ---------- cookie notice ---------- */
.cookie {
  position: fixed; left: 18px; bottom: 96px; z-index: 50; width: min(390px, calc(100vw - 36px));
  background: var(--shell); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow);
  padding: 16px 16px 16px 18px; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center;
}
.cookie p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.cookie p a { color: var(--ink); font-weight: 600; }
.cookie__btn { white-space: nowrap; flex: none; }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 96px; transform: translate(-50%, 20px); opacity: 0; z-index: 70;
  background: var(--kelp); color: #fff; padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  display: flex; align-items: center; gap: 10px; pointer-events: none; transition: all .3s var(--ease); white-space: nowrap;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- breadcrumbs ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 18px; list-style: none; padding: 0; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--coral-ink); text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-2); }

/* ==========================================================================
   HOME
   ========================================================================== */
.tide-hero { padding: 54px 0 20px; position: relative; }
.tide-hero__head { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: end; }
.tide-hero h1 { margin: 16px 0 0; }
.tide-hero h1 em { font-style: normal; color: var(--coral-ink); }
.weekpill { display: inline-flex; align-items: center; gap: 10px; background: var(--shell); border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px 7px 8px; font-size: 14px; font-weight: 600; }
.weekpill b { background: var(--sun); border-radius: 999px; padding: 3px 10px; font-size: 12.5px; }
.tide-hero__side .lead { margin-bottom: 20px; }
.bigsearch { display: flex; gap: 8px; background: var(--shell); border: 1.5px solid var(--ink); border-radius: 999px; padding: 6px 6px 6px 20px; }
.bigsearch input { flex: 1; min-width: 0; width: 100%; border: 0; background: transparent; font-size: 17px; }
.tide-hero__head > *, .porthole-head > *, .shop-head > *, .about-hero > *, .member-band > *, .pdp > *, .cart-grid > *, .contact-grid > *, .account > *, .legal > *, .faq-grid > * { min-width: 0; }
.bigsearch input:focus { outline: none; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 999px;
  border: 1.5px solid var(--line-2); background: transparent; font-size: 14px; font-weight: 500; text-decoration: none; cursor: pointer; white-space: nowrap;
}
.chip:hover, .chip.is-on { background: var(--ink); color: var(--foam); border-color: var(--ink); }

.week { position: relative; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 16px; margin-top: 48px; padding-top: 4px; }
.week::before {
  content: ""; position: absolute; left: -24px; right: -24px; top: calc(28px + 7vw); height: 0;
  border-top: 2px dashed var(--line-2); z-index: 0;
}
.day { position: relative; z-index: 1; text-align: center; text-decoration: none; display: flex; flex-direction: column; align-items: center; }
.day__label { display: flex; align-items: baseline; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); height: 24px; }
.day__label b { font-family: var(--f-display); font-size: 20px; font-weight: 400; letter-spacing: 0; color: var(--ink); }
.day__plate {
  position: relative; width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin: 8px 0 14px;
  border: 7px solid var(--shell); box-shadow: 0 16px 30px -16px rgba(14, 42, 59, .55); background: var(--foam-2);
  transition: transform .5s var(--ease), border-color .3s;
}
.day__plate img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.day:hover .day__plate { transform: translateY(-6px) rotate(-5deg); }
.day:hover .day__plate img { transform: scale(1.08); }
.day.is-today .day__plate { border-color: var(--coral); }
.day__today { position: absolute; top: 26px; right: -4px; z-index: 2; background: var(--coral); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.day__title { font-family: var(--f-display); font-size: 16.5px; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.day__meta { font-size: 13px; color: var(--ink-soft); margin-top: 4px; display: inline-flex; gap: 6px; align-items: center; }

/* index table */
.itable { background: var(--shell); border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; }
.itable__row {
  position: relative; display: grid; grid-template-columns: 64px minmax(0, 2.6fr) minmax(0, 1.2fr) 100px 150px 130px;
  align-items: center; gap: 18px; padding: 12px 24px 12px 16px; border-top: 1px solid var(--line);
}
.itable__row:first-child { border-top: 0; }
.itable__head { background: var(--ink); color: var(--foam); padding-top: 14px; padding-bottom: 14px; }
.itable__head button { background: none; border: 0; padding: 0; cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: inherit; display: inline-flex; gap: 6px; align-items: center; text-align: left; }
.itable__head button[aria-sort="ascending"]::after { content: "\2191"; color: var(--coral); }
.itable__head button[aria-sort="descending"]::after { content: "\2193"; color: var(--coral); }
.itable__body .itable__row { transition: background .15s; }
.itable__body .itable__row:hover { background: var(--foam); }
.itable__thumb { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: var(--foam-2); }
.itable__thumb img { width: 100%; height: 100%; object-fit: cover; }
.itable__title { font-family: var(--f-display); font-size: 18px; line-height: 1.25; text-decoration: none; }
.itable__title::after { content: ""; position: absolute; inset: 0; }
.itable__title:hover { color: var(--coral-ink); }
.itable__cat { font-size: 14px; color: var(--ink-soft); }
.itable__cell { font-size: 14.5px; display: flex; align-items: center; gap: 6px; }
.tag-lock, .tag-free {
  display: inline-flex; align-items: center; gap: 5px; vertical-align: middle; margin-left: 8px;
  font-family: var(--f-body); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px;
}
.tag-lock { background: var(--ink); color: var(--sun); }
.tag-free { background: var(--kelp-soft); color: var(--kelp); }

.stars { position: relative; display: inline-block; width: 80px; height: 15px; vertical-align: middle;
  background: linear-gradient(90deg, var(--line-2), var(--line-2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 15'%3E%3Cpath d='m8 0 2.4 4.9 5.4.8-3.9 3.8.9 5.4L8 12.3 3.2 14.9l.9-5.4L.2 5.7l5.4-.8z'/%3E%3C/svg%3E") 0 0/16px 15px repeat-x;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 15'%3E%3Cpath d='m8 0 2.4 4.9 5.4.8-3.9 3.8.9 5.4L8 12.3 3.2 14.9l.9-5.4L.2 5.7l5.4-.8z'/%3E%3C/svg%3E") 0 0/16px 15px repeat-x; }
.stars__fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--sun); }
.level { display: inline-flex; align-items: center; gap: 3px; font-size: 14px; }
.level i { width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid var(--ink); display: inline-block; }
.level i.on { background: var(--ink); }
.level span { margin-left: 5px; }

/* category pools (stadium tiles) */
.pools { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pool {
  position: relative; display: flex; align-items: center; gap: 16px; padding: 9px 18px 9px 9px; border-radius: 999px;
  background: var(--shell); border: 1px solid var(--line); text-decoration: none; transition: border-color .2s, transform .3s var(--ease), box-shadow .3s;
}
.pool:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pool__img { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; flex: none; }
.pool__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pool:hover .pool__img img { transform: scale(1.1); }
.pool__txt { flex: 1; min-width: 0; }
.pool__name { font-family: var(--f-display); font-size: 20px; line-height: 1.15; display: block; }
.pool__count { font-size: 13.5px; color: var(--ink-soft); }
.pool__go { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; flex: none; transition: all .2s; }
.pool:hover .pool__go { background: var(--coral); border-color: var(--coral); color: #fff; }

/* product shelf (arch frames) */
.shelf-band { background: var(--sand); border-radius: var(--r-lg); padding: 56px 48px 40px; position: relative; overflow: hidden; }
.shelf { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 34px 26px; }
.pcard { position: relative; display: flex; flex-direction: column; }
.pcard__arch {
  position: relative; aspect-ratio: 4 / 5; border-radius: 999px 999px 22px 22px; overflow: hidden; background: var(--shell);
  box-shadow: 0 0 0 6px var(--shell), var(--shadow-sm);
}
.pcard__arch img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pcard:hover .pcard__arch img { transform: scale(1.06); }
.pcard__sale { position: absolute; top: 18%; left: 0; background: var(--coral); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px 4px 12px; border-radius: 0 999px 999px 0; }
.pcard__body { padding: 16px 4px 0; display: grid; grid-template-columns: 1fr; gap: 4px; align-items: start; }
.pcard__cat { grid-column: 1 / -1; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--kelp); }
.pcard__name { font-family: var(--f-display); font-size: 18.5px; line-height: 1.22; text-decoration: none; }
.pcard__name::after { content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 60px; }
.pcard__name:hover { color: var(--coral-ink); }
.pcard__price { font-weight: 700; font-size: 16px; white-space: nowrap; color: var(--coral-ink); }
.pcard__price s { font-weight: 400; color: var(--ink-soft); font-size: 13.5px; margin-right: 4px; }
.pcard__foot { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.addbtn {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 16px 0 12px;
  border-radius: 999px; border: 1.5px solid var(--ink); background: transparent; cursor: pointer; font-weight: 600; font-size: 14px; white-space: nowrap;
}
.addbtn:hover { background: var(--ink); color: var(--foam); }
.addbtn.is-added { background: var(--kelp); border-color: var(--kelp); color: #fff; }

/* pebble mosaic */
.pebbles { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 88px; gap: 14px; }
.pebble { position: relative; overflow: hidden; margin: 0; background: var(--foam-2); }
.pebble img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pebble:hover img { transform: scale(1.07); }
.pebble figcaption { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); background: rgba(255, 255, 255, .92); border-radius: 999px; padding: 5px 13px; font-size: 12.5px; font-weight: 600; white-space: nowrap; }
.pebble:nth-child(1) { grid-column: 1 / 5; grid-row: span 3; border-radius: 58% 42% 46% 54% / 48% 55% 45% 52%; }
.pebble:nth-child(2) { grid-column: 5 / 8; grid-row: span 2; border-radius: 999px; margin-top: 30px; }
.pebble:nth-child(3) { grid-column: 8 / 13; grid-row: span 2; border-radius: 40px 140px 40px 140px; }
.pebble:nth-child(4) { grid-column: 5 / 8; grid-row: span 2; border-radius: 50%; aspect-ratio: 1; justify-self: center; height: 100%; }
.pebble:nth-child(5) { grid-column: 8 / 10; grid-row: span 2; border-radius: 999px 999px 26px 26px; }
.pebble:nth-child(6) { grid-column: 10 / 13; grid-row: span 3; border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%; }
.pebble:nth-child(7) { grid-column: 1 / 3; grid-row: span 2; border-radius: 26px 26px 999px 999px; }
.pebble:nth-child(8) { grid-column: 3 / 10; grid-row: span 1; border-radius: 999px; }

/* membership band */
.member-band { background: var(--ink); color: var(--foam); border-radius: var(--r-lg); padding: 60px 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; position: relative; overflow: hidden; }
.member-band::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245, 184, 61, .28), rgba(245, 184, 61, 0) 65%); pointer-events: none;
}
.member-band--cta { grid-template-columns: 1.4fr 1fr; align-items: center; }
.member-band .kicker { color: var(--sun); }
.member-band h2 { color: #fff; }
.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks .ico { flex: none; color: var(--ink); background: var(--sun); border-radius: 50%; padding: 3px; width: 24px; height: 24px; margin-top: 1px; }
.plans { display: grid; gap: 14px; align-content: center; position: relative; z-index: 1; }
.plan {
  position: relative; display: grid; grid-template-columns: 30px 1fr auto; gap: 14px; align-items: center; cursor: pointer;
  padding: 20px 22px; border-radius: var(--r-md); border: 1.5px solid rgba(238, 245, 242, .25); background: rgba(255, 255, 255, .04); transition: all .2s;
}
.plan input { position: absolute; opacity: 0; pointer-events: none; }
.plan__dot { width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(238, 245, 242, .6); display: grid; place-items: center; }
.plan__dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: transparent; }
.plan input:checked ~ .plan__dot { border-color: var(--coral); }
.plan input:checked ~ .plan__dot::after { background: var(--coral); }
.plan:has(input:checked) { border-color: var(--coral); background: rgba(240, 97, 74, .12); }
.plan input:focus-visible ~ .plan__dot { outline: 3px solid var(--coral); outline-offset: 3px; }
.plan__name { font-family: var(--f-display); font-size: 22px; line-height: 1.1; }
.plan__note { font-size: 13.5px; opacity: .75; }
.plan__price { text-align: right; font-family: var(--f-display); font-size: 28px; line-height: 1; }
.plan__price small { display: block; font-family: var(--f-body); font-size: 12.5px; opacity: .7; margin-top: 4px; }
.plan__save { position: absolute; top: -11px; right: 18px; background: var(--sun); color: var(--ink); font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; letter-spacing: .04em; }
.plans--light .plan { border-color: var(--line-2); background: var(--shell); color: var(--ink); }
.plans--light .plan__dot { border-color: var(--line-2); }
.plans--light .plan:has(input:checked) { border-color: var(--coral); background: #fff5f2; }

/* journal rows */
.logrows { border-top: 2px solid var(--ink); }
.logrow {
  position: relative; display: grid; grid-template-columns: 90px minmax(0, 1fr) 220px; gap: 28px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line-2);
}
.logrow__n { font-family: var(--f-display); font-size: 48px; line-height: 1; color: var(--coral); }
.logrow__meta { font-size: 13px; color: var(--ink-soft); display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.logrow__title { font-family: var(--f-display); font-size: 27px; line-height: 1.18; text-decoration: none; display: block; margin-bottom: 8px; }
.logrow__title::after { content: ""; position: absolute; inset: 0; }
.logrow__title:hover { color: var(--coral-ink); }
.logrow p { margin: 0; color: var(--ink-soft); max-width: 62ch; }
.logrow__img { height: 140px; border-radius: 80px 22px 80px 22px; overflow: hidden; }
.logrow__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.logrow:hover .logrow__img img { transform: scale(1.06); }

/* ==========================================================================
   RECIPE CARDS (plates)
   ========================================================================== */
.plates { display: grid; grid-template-columns: repeat(auto-fill, minmax(236px, 1fr)); gap: 26px 22px; padding-top: 50px; }
.plate {
  position: relative; background: var(--shell); border: 1px solid var(--line); border-radius: 30px;
  padding: 0 18px 20px; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .2s; margin-top: 0;
}
.plate:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.plate__img {
  width: 78%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin: -46px auto 14px; background: var(--foam-2);
  border: 7px solid var(--shell); box-shadow: 0 14px 26px -14px rgba(14, 42, 59, .6);
}
.plate__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.plate:hover .plate__img img { transform: scale(1.08) rotate(5deg); }
.plate__cat { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--kelp); margin-bottom: 6px; }
.plate__title { font-family: var(--f-display); font-size: 19.5px; line-height: 1.22; text-decoration: none; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.plate__title::after { content: ""; position: absolute; inset: 0; border-radius: 30px; }
.plate__meta { margin-top: auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; font-size: 13.5px; color: var(--ink-soft); padding-top: 12px; border-top: 1px dashed var(--line-2); width: 100%; }
.plate__meta span { display: inline-flex; align-items: center; gap: 5px; }
.plate__meta .ico { color: var(--ink); }
.plate__badge { position: absolute; top: 14px; right: 14px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--sun); }
.plate__free { position: absolute; top: 16px; left: 14px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--kelp); background: var(--kelp-soft); padding: 4px 9px; border-radius: 999px; }

/* ==========================================================================
   LISTING / CATEGORY
   ========================================================================== */
.porthole-head { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; padding: 44px 0 36px; }
.porthole-head h1 { margin: 12px 0 14px; }
.stat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.stat-pill { background: var(--shell); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 14px; }
.stat-pill b { font-family: var(--f-display); font-weight: 400; font-size: 18px; margin-right: 4px; }
.porthole { position: relative; width: min(100%, 440px); aspect-ratio: 1; justify-self: center; border-radius: 50%; padding: 18px; background: var(--ink); box-shadow: var(--shadow), inset 0 0 0 4px var(--ink-2); }
.porthole__glass { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; box-shadow: inset 0 0 0 6px rgba(0, 0, 0, .25); }
.porthole__glass img { width: 100%; height: 100%; object-fit: cover; }
.porthole i { position: absolute; inset: 0; pointer-events: none; }
.porthole i::after { content: ""; position: absolute; top: 3px; left: 50%; width: 12px; height: 12px; margin-left: -6px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #9bb4c0, #3d5f70); }
.porthole i:nth-child(3) { transform: rotate(45deg); }
.porthole i:nth-child(4) { transform: rotate(90deg); }
.porthole i:nth-child(5) { transform: rotate(135deg); }
.porthole i:nth-child(6) { transform: rotate(180deg); }
.porthole i:nth-child(7) { transform: rotate(225deg); }
.porthole i:nth-child(8) { transform: rotate(270deg); }
.porthole i:nth-child(9) { transform: rotate(315deg); }
.porthole__tag { position: absolute; bottom: 8%; right: -4%; background: var(--sun); color: var(--ink); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 14px; box-shadow: var(--shadow-sm); }

.cat-rail { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 12px; scrollbar-width: thin; }
.cat-rail .chip { flex: none; }

.tidebar {
  position: sticky; top: calc(var(--top-h) + 10px); z-index: 20; display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  background: var(--shell); border: 1px solid var(--line); border-radius: 999px; padding: 8px 8px 8px 20px; box-shadow: var(--shadow-sm);
}
.tidebar__count { font-weight: 600; margin-right: auto; font-size: 14.5px; }
.tidebar .select { width: auto; border-radius: 999px; padding: 9px 38px 9px 16px; font-size: 14.5px; border-color: var(--line); }
.viewtoggle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.viewtoggle a { width: 38px; height: 36px; border-radius: 999px; display: grid; place-items: center; color: var(--ink-soft); }
.viewtoggle a.is-on { background: var(--ink); color: var(--foam); }
.filters-toggle { display: none; }

.pager { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; margin: 48px 0 0; list-style: none; padding: 0; }
.pager a, .pager span { min-width: 46px; height: 46px; padding: 0 14px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; font-weight: 600; border: 1.5px solid var(--line-2); background: var(--shell); }
.pager a:hover { border-color: var(--ink); }
.pager .is-current { background: var(--coral); border-color: var(--coral); color: #fff; }
.pager .gap { border: 0; background: none; min-width: 20px; }
.pager .is-disabled { opacity: .4; }

.empty { text-align: center; padding: 70px 24px; background: var(--shell); border: 1px dashed var(--line-2); border-radius: var(--r-lg); }
.empty__art { width: 120px; height: 120px; margin: 0 auto 18px; border-radius: 50%; background: var(--foam-2); display: grid; place-items: center; color: var(--ink-soft); }
.empty h2 { font-size: 32px; }

.search-hero { padding: 44px 0 26px; }
.search-hero form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; margin-top: 18px; max-width: 760px; }
.search-hero .bigsearch { padding: 6px 6px 6px 22px; }
.search-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; align-items: center; }
.search-filters .select { width: auto; border-radius: 999px; padding: 9px 38px 9px 16px; font-size: 14.5px; }
.hl { background: rgba(245, 184, 61, .45); border-radius: 3px; padding: 0 1px; }

/* ==========================================================================
   RECIPE DETAIL (pinned half-screen photo)
   ========================================================================== */
.rsplit { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
.rsplit__media { position: sticky; top: var(--top-h); height: calc(100vh - var(--top-h)); overflow: hidden; background: var(--ink); }
.rsplit__media img { width: 100%; height: 100%; object-fit: cover; }
.rsplit__badges { position: absolute; left: 24px; top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.rsplit__badges a, .rsplit__badges span { background: rgba(255, 255, 255, .94); color: var(--ink); text-decoration: none; padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.rsplit__badges .is-premium { background: var(--ink); color: var(--sun); }
.rsplit__credit { position: absolute; right: 16px; bottom: 14px; font-size: 11.5px; color: rgba(255, 255, 255, .85); background: rgba(14, 42, 59, .55); padding: 4px 10px; border-radius: 999px; }
.rsplit__body { padding: 40px clamp(22px, 4.2vw, 72px) 40px; min-width: 0; }
.rsplit__body h1 { font-size: clamp(36px, 3.9vw, 58px); margin: 10px 0 16px; }
.rrating { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin: 28px 0; border-top: 2px solid var(--ink); }
.fact { padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line-2); }
.fact:nth-child(3n+2), .fact:nth-child(3n) { padding-left: 16px; border-left: 1px solid var(--line-2); }
.fact__k { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.fact__v { font-family: var(--f-display); font-size: 23px; line-height: 1.2; margin-top: 2px; }
.ractions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }

.panel { background: var(--shell); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.panel + .panel { margin-top: 22px; }
.panel h2 { font-size: 32px; margin: 0; }
.panel__head { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }

.stepper { display: inline-flex; align-items: center; gap: 4px; border: 1.5px solid var(--line-2); border-radius: 999px; padding: 3px; }
.stepper button { width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--foam); cursor: pointer; display: grid; place-items: center; }
.stepper button:hover { background: var(--ink); color: #fff; }
.stepper output, .stepper input { min-width: 74px; text-align: center; font-weight: 600; font-size: 14.5px; border: 0; background: transparent; }
.stepper input { min-width: 44px; width: 44px; }

.ingr { list-style: none; margin: 0; padding: 0; }
.ingr li { border-top: 1px dashed var(--line-2); }
.ingr li:first-child { border-top: 0; }
.ingr label { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 12px; padding: 11px 0; cursor: pointer; align-items: start; }
.ingr input { appearance: none; -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-2); margin: 2px 0 0; cursor: pointer; display: grid; place-items: center; }
.ingr input:checked { background: var(--kelp); border-color: var(--kelp); }
.ingr input:checked::after { content: ""; width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); }
.ingr input:checked + span { text-decoration: line-through; color: var(--ink-soft); }
.ingr .q { font-weight: 700; }
.ingr .n { color: var(--ink-soft); font-size: 14.5px; }

.steps { list-style: none; margin: 0; padding: 0; position: relative; }
.steps::before { content: ""; position: absolute; left: 21px; top: 20px; bottom: 30px; width: 2px; background: repeating-linear-gradient(var(--line-2) 0 6px, transparent 6px 12px); }
.steps li { position: relative; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 18px; padding: 0 0 26px; }
.steps li:last-child { padding-bottom: 0; }
.step__n {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--foam); border: 0; cursor: pointer;
  font-family: var(--f-display); font-size: 19px; display: grid; place-items: center; position: relative; z-index: 1; transition: background .2s;
}
.step__n:hover { background: var(--coral); }
.steps li.is-done .step__n { background: var(--kelp); }
.steps li.is-done p { color: var(--ink-soft); }
.steps p { margin: 9px 0 0; font-size: 17px; }

.tipnote { display: grid; grid-template-columns: 44px 1fr; gap: 14px; background: var(--sand); border-radius: var(--r-md); padding: 20px 22px; margin-top: 22px; }
.tipnote .ico { width: 44px; height: 44px; padding: 10px; border-radius: 50%; background: var(--sun); color: var(--ink); }
.tipnote h3 { font-size: 20px; margin: 4px 0 4px; }
.tipnote p { margin: 0; }

.gallery3 { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 150px 150px; gap: 12px; margin-top: 22px; }
.gallery3 a, .gallery3 figure { margin: 0; position: relative; overflow: hidden; display: block; }
.gallery3 img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery3 a:hover img { transform: scale(1.06); }
.gallery3 > :nth-child(1) { grid-row: 1 / 3; border-radius: 999px 999px 30px 30px; }
.gallery3 > :nth-child(2) { border-radius: 999px; }
.gallery3 > :nth-child(3) { border-radius: 30px 120px 30px 30px; }
.gallery3 span { position: absolute; left: 12px; bottom: 10px; background: rgba(255, 255, 255, .92); border-radius: 999px; font-size: 12px; font-weight: 600; padding: 4px 10px; max-width: calc(100% - 24px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.paywall-preview { position: relative; max-height: 190px; overflow: hidden; }
.paywall-preview::after { content: ""; position: absolute; inset: 40px 0 0; background: linear-gradient(rgba(255, 255, 255, 0), #fff 85%); }
.paywall { background: var(--ink); color: var(--foam); border-radius: var(--r-lg); padding: 34px; margin-top: 22px; position: relative; overflow: hidden; }
.paywall::before { content: ""; position: absolute; left: -60px; bottom: -80px; width: 240px; height: 240px; border-radius: 50%; border: 36px solid rgba(240, 97, 74, .16); }
.paywall h2 { color: #fff; font-size: 34px; }
.paywall .lockring { width: 56px; height: 56px; border-radius: 50%; background: var(--sun); color: var(--ink); display: grid; place-items: center; margin-bottom: 16px; }
.paywall__prices { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 22px; position: relative; }
.paywall__price { border: 1.5px solid rgba(238, 245, 242, .25); border-radius: var(--r-sm); padding: 12px 16px; min-width: 150px; }
.paywall__price b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 26px; }
.paywall__price span { font-size: 13px; opacity: .75; }
.paywall .btn { position: relative; }

.related { padding: 64px 0 20px; }

/* ==========================================================================
   STORE
   ========================================================================== */
.shop-head { padding: 44px 0 22px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; }
.shop-perks { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.shop-perks span { display: inline-flex; gap: 8px; align-items: center; background: var(--shell); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 14px; }
.pdp { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; padding: 36px 0 20px; align-items: start; }
.pdp__stage { background: var(--sand); border-radius: var(--r-lg); padding: 48px; position: sticky; top: calc(var(--top-h) + 20px); }
.pdp__arch { aspect-ratio: 4 / 5; border-radius: 999px 999px 26px 26px; overflow: hidden; box-shadow: 0 0 0 8px var(--shell), var(--shadow); }
.pdp__arch img { width: 100%; height: 100%; object-fit: cover; }
.pdp h1 { font-size: clamp(34px, 3.6vw, 52px); margin: 10px 0 12px; }
.pdp__price { font-family: var(--f-display); font-size: 36px; display: flex; align-items: baseline; gap: 12px; margin: 16px 0; }
.pdp__price s { font-family: var(--f-body); font-size: 18px; color: var(--ink-soft); }
.pdp__buy { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 24px 0; }
.pdp__buy .stepper input { width: 52px; }
.perks { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.perks li { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.perks .ico { color: var(--kelp); }
.spec { list-style: none; padding: 0; margin: 0; }
.spec li { padding: 10px 0 10px 26px; border-top: 1px dashed var(--line-2); position: relative; }
.spec li::before { content: ""; position: absolute; left: 4px; top: 19px; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

.cart-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 32px; align-items: start; padding: 20px 0; }
.cart-items { list-style: none; padding: 0; margin: 0; }
.citem { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 18px 0; border-top: 1px dashed var(--line-2); }
.citem:first-child { border-top: 0; }
.citem__img { width: 96px; height: 110px; border-radius: 999px 999px 16px 16px; overflow: hidden; background: var(--sand); }
.citem__img img { width: 100%; height: 100%; object-fit: cover; }
.citem__name { font-family: var(--f-display); font-size: 20px; line-height: 1.2; text-decoration: none; }
.citem__price { font-size: 14px; color: var(--ink-soft); margin: 4px 0 10px; }
.citem__line { font-weight: 700; text-align: right; }
.citem__rm { background: none; border: 0; color: var(--ink-soft); cursor: pointer; display: inline-flex; gap: 6px; align-items: center; font-size: 13.5px; margin-top: 8px; padding: 4px 0; }
.citem__rm:hover { color: var(--coral-ink); }
.summary { position: sticky; top: calc(var(--top-h) + 20px); }
.summary dl { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin: 0 0 18px; }
.summary dt { color: var(--ink-soft); }
.summary dd { margin: 0; text-align: right; font-weight: 600; }
.summary .total { font-family: var(--f-display); font-size: 26px; font-weight: 400; color: var(--ink); padding-top: 12px; border-top: 2px solid var(--ink); }
.summary .total-l { padding-top: 12px; border-top: 2px solid var(--ink); color: var(--ink); font-weight: 600; }
.mini-items { list-style: none; margin: 0 0 18px; padding: 0; }
.mini-items li { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; padding: 8px 0; font-size: 14.5px; }
.mini-items img { width: 52px; height: 58px; object-fit: cover; border-radius: 999px 999px 10px 10px; }

.co-step { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.co-step b { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--foam); display: grid; place-items: center; font-family: var(--f-display); font-weight: 400; font-size: 17px; }
.co-step h2 { font-size: 26px; margin: 0; }
.cardwrap { position: relative; }
.cardwrap .brand-ind { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 12px; font-weight: 700; color: var(--ink-soft); letter-spacing: .06em; text-transform: uppercase; }
.paynote { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--ink-soft); background: var(--foam); border-radius: 10px; padding: 11px 13px; margin-bottom: 16px; }
.paynote .ico { flex: none; color: var(--kelp); margin-top: 2px; }

.confirm { max-width: 760px; margin: 40px auto 0; }
.confirm__burst { width: 110px; height: 110px; border-radius: 50%; background: var(--kelp); color: #fff; display: grid; place-items: center; margin: 0 auto 20px; box-shadow: 0 0 0 14px var(--kelp-soft), 0 0 0 28px rgba(211, 235, 227, .5); }
.confirm__burst .ico { width: 50px; height: 50px; }
.confirm h1 { text-align: center; font-size: clamp(34px, 4.4vw, 54px); }
.confirm .lead { text-align: center; margin: 0 auto 28px; }
.kv { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 20px; }
.kv div { background: var(--foam); border-radius: var(--r-sm); padding: 12px 14px; }
.kv span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.kv b { font-family: var(--f-display); font-weight: 400; font-size: 20px; }

/* ==========================================================================
   AUTH & ACCOUNT
   ========================================================================== */
.auth { display: grid; grid-template-columns: 1fr 1fr; max-width: 1040px; margin: 44px auto 0; background: var(--shell); border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; }
.auth__art { background: var(--ink); color: var(--foam); padding: 48px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; min-height: 520px; }
.auth__art::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; top: -110px; right: -120px; background: var(--coral); opacity: .9; }
.auth__art::after { content: ""; position: absolute; left: 0; right: 0; top: 190px; height: 120px;
  background: repeating-linear-gradient(180deg, transparent 0 16px, rgba(238, 245, 242, .16) 16px 19px); }
.auth__art h2 { color: #fff; position: relative; z-index: 1; }
.auth__art p { position: relative; z-index: 1; opacity: .8; margin: 0; }
.auth__form { padding: 48px; }
.auth__form h1 { font-size: 42px; }
.auth__alt { margin-top: 18px; font-size: 15px; color: var(--ink-soft); }
.auth__alt a { color: var(--ink); font-weight: 600; }

.account { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 28px; padding: 36px 0; align-items: start; }
.avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--coral); color: #fff; font-family: var(--f-display); font-size: 38px; display: grid; place-items: center; margin-bottom: 14px; }
.mcard { border-radius: var(--r-lg); padding: 30px; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--foam); position: relative; overflow: hidden; }
.mcard::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(245, 184, 61, .5), transparent 70%); }
.mcard h2 { color: #fff; font-size: 32px; }
.mcard--none { background: var(--sand); color: var(--ink); }
.mcard--none h2 { color: var(--ink); }
.table { width: 100%; border-collapse: collapse; font-size: 15px; }
.table th { text-align: left; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); padding: 10px 12px; border-bottom: 2px solid var(--ink); }
.table td { padding: 14px 12px; border-bottom: 1px dashed var(--line-2); vertical-align: top; }
.status { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 600; background: var(--kelp-soft); color: var(--kelp); }

/* ==========================================================================
   CONTENT PAGES
   ========================================================================== */
.page-head { padding: 52px 0 30px; }
.page-head h1 { margin: 12px 0 14px; max-width: 18ch; }
.prose { font-size: 18px; line-height: 1.75; }
.prose h2 { font-size: 32px; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 24px; margin: 1.4em 0 .4em; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.1em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--coral-ink); }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 26px; border-left: 4px solid var(--coral); font-family: var(--f-display); font-size: 25px; line-height: 1.4; }

.feature-post { position: relative; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); align-items: center; gap: 0; margin-bottom: 56px; }
.feature-post__img { height: 480px; border-radius: 240px 32px 32px 240px; overflow: hidden; }
.feature-post__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-post__card { background: var(--shell); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px; margin-left: -80px; position: relative; box-shadow: var(--shadow); }
.feature-post__card h2 a { text-decoration: none; }
.feature-post__card h2 a::after { content: ""; position: absolute; inset: 0; }
.feature-post__card h2 a:hover { color: var(--coral-ink); }
.logs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.log { position: relative; display: grid; grid-template-columns: 78px minmax(0, 1fr); gap: 20px; background: var(--shell); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; transition: border-color .2s, transform .3s var(--ease); }
.log:hover { border-color: var(--ink); transform: translateY(-3px); }
.log__date { text-align: center; border-right: 1px dashed var(--line-2); padding-right: 16px; }
.log__date b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 38px; line-height: 1; }
.log__date span { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-ink); }
.log__img { height: 170px; border-radius: 999px 999px 18px 18px; overflow: hidden; margin-bottom: 14px; }
.log__img img { width: 100%; height: 100%; object-fit: cover; }
.log h3 { font-size: 23px; margin-bottom: 8px; }
.log h3 a { text-decoration: none; }
.log h3 a::after { content: ""; position: absolute; inset: 0; }
.log p { color: var(--ink-soft); font-size: 15px; margin: 0; }

.post-head { text-align: center; padding: 48px 0 30px; }
.post-head h1 { max-width: 20ch; margin: 14px auto 16px; }
.post-meta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; color: var(--ink-soft); font-size: 14.5px; }
.post-hero { height: min(560px, 60vw); border-radius: 44px; overflow: hidden; margin-bottom: 44px; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.author-box { display: flex; gap: 18px; align-items: center; background: var(--sand); border-radius: var(--r-md); padding: 20px 24px; margin-top: 40px; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: center 25%; flex: none; }

.about-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 56px; align-items: center; padding: 50px 0 30px; }
.about-hero__pic { height: 520px; border-radius: 50% 50% 40px 40px / 38% 38% 40px 40px; overflow: hidden; }
.about-hero__pic img { width: 100%; height: 100%; object-fit: cover; }
.numbers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line-2); margin: 40px 0; }
.numbers div { padding: 22px 18px; border-left: 1px solid var(--line-2); }
.numbers div:first-child { border-left: 0; padding-left: 0; }
.numbers b { display: block; font-family: var(--f-display); font-weight: 400; font-size: 44px; line-height: 1; color: var(--coral-ink); }
.numbers span { font-size: 14.5px; color: var(--ink-soft); }
.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.value { background: var(--shell); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; }
.value .ico { width: 48px; height: 48px; padding: 11px; border-radius: 50%; background: var(--foam-2); color: var(--coral-ink); margin-bottom: 14px; }
.value h3 { font-size: 22px; }
.value p { margin: 0; color: var(--ink-soft); }
.team { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.member { background: var(--shell); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.member__photo { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 25%; display: block; background: var(--foam-2); }
.member__body { padding: 18px 20px 22px; }
.member__body h3 { font-size: 22px; margin: 0 0 2px; }
.member__role { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--kelp); margin-bottom: 10px; }
.member__body p { font-size: 15px; color: var(--ink-soft); margin: 0; }

.jobs { display: grid; gap: 14px; }
.job { background: var(--shell); border: 1px solid var(--line); border-radius: var(--r-md); }
.job summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 22px 26px; }
.job summary::-webkit-details-marker { display: none; }
.job summary h3 { margin: 0 0 6px; font-size: 24px; }
.job__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job__tags span { font-size: 13px; background: var(--foam); border-radius: 999px; padding: 4px 11px; }
.job__plus { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: transform .3s var(--ease), background .2s; }
.job[open] .job__plus { transform: rotate(45deg); background: var(--coral); border-color: var(--coral); color: #fff; }
.job__body { padding: 0 26px 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.job__body h4 { font-family: var(--f-body); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 8px; }
.job__body ul { margin: 0; padding-left: 18px; }
.job__body .full { grid-column: 1 / -1; }

.faq-grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 48px; align-items: start; padding: 20px 0; }
.sidenav { position: sticky; top: calc(var(--top-h) + 24px); display: grid; gap: 4px; }
.sidenav a { text-decoration: none; padding: 10px 16px; border-radius: 999px; font-weight: 500; font-size: 15px; }
.sidenav a:hover { background: var(--foam-2); }
.faq-sec { margin-bottom: 40px; }
.faq-sec h2 { font-size: 30px; }
.qa { border-top: 1px solid var(--line-2); }
.qa:last-child { border-bottom: 1px solid var(--line-2); }
.qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; font-weight: 600; font-size: 17px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-family: var(--f-display); font-size: 26px; line-height: 1; color: var(--coral-ink); transition: transform .3s; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { margin: 0 0 20px; color: var(--ink-soft); max-width: 70ch; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 28px; align-items: start; padding: 10px 0; }
.infocards { display: grid; gap: 14px; }
.infocard { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: center; background: var(--shell); border: 1px solid var(--line); border-radius: 999px; padding: 10px 24px 10px 10px; }
.infocard .ico { width: 52px; height: 52px; padding: 14px; border-radius: 50%; background: var(--ink); color: var(--sun); }
.infocard span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.infocard a, .infocard address { font-style: normal; font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.infocard--tall { border-radius: var(--r-md); align-items: start; }

.sitemap { columns: 3 260px; column-gap: 40px; }
.sitemap section { break-inside: avoid; margin-bottom: 30px; }
.sitemap h2 { font-size: 24px; border-bottom: 2px solid var(--ink); padding-bottom: 8px; }
.sitemap ul { list-style: none; padding: 0; margin: 0; }
.sitemap li { padding: 4px 0; font-size: 15px; }
.sitemap a { text-decoration: none; }
.sitemap a:hover { color: var(--coral-ink); text-decoration: underline; }

.legal { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 56px; align-items: start; padding: 20px 0 40px; }
.legal .prose { max-width: 760px; }
.legal__date { display: inline-flex; gap: 8px; align-items: center; background: var(--sand); border-radius: 999px; padding: 7px 14px; font-size: 14px; font-weight: 600; }

.notfound { text-align: center; padding: 70px 0 20px; }
.notfound__big { font-family: var(--f-display); font-size: clamp(120px, 22vw, 260px); line-height: .9; color: var(--ink); position: relative; display: inline-block; }
.notfound__big span { color: var(--coral); }

/* ---------- footer (sea floor) ---------- */
.seafloor { background: var(--ink); color: rgba(238, 245, 242, .82); margin-top: 110px; position: relative; padding: 70px 0 118px; }
.seafloor::before {
  content: ""; position: absolute; left: 0; right: 0; top: -38px; height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 40' preserveAspectRatio='none'%3E%3Cpath d='M0 40V22C20 22 20 8 40 8s20 14 40 14 20-14 40-14 20 14 40 14v18z' fill='%230e2a3b'/%3E%3C/svg%3E") repeat-x 0 0 / 160px 40px;
}
.seafloor a { color: #fff; text-decoration: none; }
.seafloor a:hover { color: var(--sun); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand .brand__name { color: #fff; }
.foot-brand p { margin: 16px 0 20px; max-width: 38ch; font-size: 15px; }
.foot-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14.5px; }
.foot-contact li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.foot-contact .ico { color: var(--coral); margin-top: 2px; }
.foot-contact address { font-style: normal; }
.seafloor h3 { font-family: var(--f-body); font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sun); margin-bottom: 14px; }
.seafloor ul.links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 15px; }
.foot-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(238, 245, 242, .14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.foot-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .itable__row { grid-template-columns: 60px minmax(0, 2.4fr) minmax(0, 1fr) 90px 130px; }
  .itable__row > :nth-child(6) { display: none; }
  .team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .tide-hero__head, .porthole-head, .shop-head, .about-hero { grid-template-columns: 1fr; gap: 28px; }
  .shop-perks { justify-content: flex-start; }
  .pools { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .member-band { grid-template-columns: 1fr; padding: 44px 32px; gap: 30px; }
  .rsplit { grid-template-columns: 1fr; }
  .rsplit__media { position: relative; top: 0; height: 62vh; min-height: 360px; }
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp__stage { position: static; padding: 30px; }
  .cart-grid, .contact-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .feature-post { grid-template-columns: 1fr; }
  .feature-post__img { height: 340px; border-radius: 32px 32px 32px 32px; }
  .feature-post__card { margin: -70px 20px 0; }
  .legal, .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .sidenav { position: static; display: flex; flex-wrap: wrap; }
  .account { grid-template-columns: 1fr; }
  .week::before { top: calc(28px + 11vw); }
}
@media (max-width: 860px) {
  :root { --top-h: 64px; }
  body { font-size: 16px; }
  .seafloor { padding-bottom: 34px; }
  .dock { display: none; }
  .topbar__in { grid-template-columns: auto 1fr auto; gap: 10px; }
  .topbar .searchpill { display: none; }
  .tool--menu { display: inline-flex; }
  .tool--account span, .tool--cart span.lbl { display: none; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 23px; }
  .brand__sub { font-size: 9.5px; }
  .brand { justify-self: start; }
  .cookie { bottom: 16px; left: 12px; }
  .toast { bottom: 24px; }
  .section { padding: 52px 0; }
  .week { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin: 34px -24px 0; padding: 4px 24px 10px; }
  .week::before { display: none; }
  .day { flex: 0 0 42%; scroll-snap-align: start; }
  .itable__head { display: none; }
  .itable__row { grid-template-columns: 56px minmax(0, 1fr); gap: 4px 14px; padding: 14px 16px; }
  .itable__row > :first-child { grid-row: span 3; align-self: start; }
  .itable__row > :nth-child(3), .itable__row > :nth-child(4), .itable__row > :nth-child(5) { font-size: 13.5px; }
  .itable__row > :nth-child(6) { display: none; }
  .itable__row .itable__cat, .itable__row .itable__cell { display: inline-flex; }
  .pools { grid-template-columns: 1fr; }
  .shelf-band { padding: 36px 20px 28px; border-radius: 24px; }
  .pebbles { grid-auto-rows: 70px; gap: 10px; }
  .pebble:nth-child(1) { grid-column: 1 / 8; }
  .pebble:nth-child(2) { grid-column: 8 / 13; margin-top: 0; }
  .pebble:nth-child(3) { grid-column: 1 / 13; }
  .pebble:nth-child(4) { grid-column: 1 / 7; aspect-ratio: auto; width: 100%; border-radius: 999px; }
  .pebble:nth-child(5) { grid-column: 7 / 13; }
  .pebble:nth-child(6) { grid-column: 1 / 7; }
  .pebble:nth-child(7) { grid-column: 7 / 13; }
  .pebble:nth-child(8) { grid-column: 7 / 13; }
  .pebble figcaption { display: none; }
  .logrow { grid-template-columns: 56px minmax(0, 1fr); gap: 16px; }
  .logrow__n { font-size: 34px; }
  .logrow__img { display: none; }
  .logrow__title { font-size: 22px; }
  .tidebar { border-radius: var(--r-md); padding: 10px; position: static; }
  .tidebar__count { width: 100%; padding-left: 6px; }
  .tidebar .select { flex: 1 1 140px; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact:nth-child(3n+2), .fact:nth-child(3n) { padding-left: 0; border-left: 0; }
  .fact:nth-child(2n) { padding-left: 14px; border-left: 1px solid var(--line-2); }
  .panel { padding: 22px 18px; border-radius: 24px; }
  .auth { grid-template-columns: 1fr; margin-top: 20px; }
  .auth__art { min-height: 220px; padding: 30px; }
  .auth__art::after { display: none; }
  .auth__form { padding: 30px 22px; }
  .logs { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: 1fr 1fr; }
  .numbers div:nth-child(3) { border-left: 0; padding-left: 0; }
  .job__body { grid-template-columns: 1fr; }
  .about-hero__pic { height: 360px; }
  .porthole { width: min(100%, 320px); padding: 14px; }
  .porthole i::after { top: 2px; width: 10px; height: 10px; margin-left: -5px; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .search-hero form { grid-template-columns: 1fr; }
  .gallery3 { grid-template-rows: 120px 120px; }
}
@media (max-width: 560px) {
  .wrap, .wrap-narrow { padding: 0 16px; }
  .week { margin: 30px -16px 0; padding: 4px 16px 10px; }
  .day { flex-basis: 62%; }
  .plates { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 12px; }
  .plate { padding: 0 10px 14px; border-radius: 22px; }
  .plate__img { width: 82%; margin-top: -36px; border-width: 5px; }
  .plate__title { font-size: 16px; }
  .plate__meta { font-size: 12px; gap: 4px 8px; }
  .plate__meta .level span, .plate__meta .stars { display: none; }
  .plate__badge { width: 30px; height: 30px; top: 8px; right: 8px; }
  .plate__free { top: 8px; left: 8px; font-size: 10px; padding: 3px 7px; }
  .shelf { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 14px; }
  .pcard__body { grid-template-columns: 1fr; }
  .pcard__name { font-size: 16px; }
  .addbtn span { display: none; }
  .addbtn { padding: 0 11px; }
  .team { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .citem { grid-template-columns: 72px minmax(0, 1fr); }
  .citem__img { width: 72px; height: 84px; }
  .citem__line { grid-column: 2; text-align: left; }
  .bigsearch { padding-left: 16px; }
  .bigsearch .btn { padding: 12px 16px; }
  .member-band { padding: 34px 20px; border-radius: 24px; }
  .plan { grid-template-columns: 26px 1fr; padding: 18px; }
  .plan__price { grid-column: 2; text-align: left; }
  .infocard { border-radius: var(--r-md); }
  .tool { min-width: 42px; height: 42px; padding: 0 8px; }
  .tool--cart { padding: 0 10px; }
  .paywall { padding: 26px 20px; }
  .pdp__stage { padding: 20px; border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

@media print {
  .topbar, .dock, .seafloor, .cookie, .ractions, .related, .rsplit__media, .toast, .paywall { display: none !important; }
  body { background: #fff; padding: 0; display: block; min-height: 0; }
  .rsplit { display: block; }
  .panel { border: 0; padding: 0; }
}
