/* zeenushop — minimal/DTC stylesheet
 * Single accent color (sage), single font (Manrope), generous whitespace.
 */

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-muted: #f5f5f4;
  --text: #0a0a0a;
  --text-soft: #6b6b6b;
  --text-quiet: #9a9a9a;
  --border: #e5e5e5;
  --border-soft: #ececec;
  --accent: #2d5d3e;
  --accent-hover: #234c32;
  --accent-soft: #ecf3ee;
  --link: #2d5d3e;
  --price-red: #b8755a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ======================================================
 * Top nav — minimal-justified sticky, transparent at top
 * ====================================================== */
.zn-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  transition: border-color 200ms, box-shadow 200ms;
  border-bottom: 1px solid transparent;
}
.zn-nav.scrolled {
  border-bottom: 1px solid var(--border);
}
.zn-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 28px;
  gap: 18px;
}
.zn-wm {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
}
.zn-wm .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 3px;
  display: inline-block;
}
.zn-nav-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
.zn-nav-links a {
  color: var(--text);
  padding: 6px 2px;
  position: relative;
  transition: color 120ms;
}
.zn-nav-links a:hover { color: var(--accent); }
.zn-nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--accent);
}
.zn-nav-icons {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
.zn-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text);
  padding: 6px 4px;
  font-weight: 500;
  transition: color 120ms;
}
.zn-icon-btn:hover { color: var(--accent); }
.zn-icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
.cart-count {
  position: absolute;
  top: -2px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  padding: 1px 6px;
  min-width: 16px;
  text-align: center;
  line-height: 1.4;
}

/* mobile nav */
.zn-nav-mobile-toggle { display: none; }
@media (max-width: 880px) {
  .zn-nav-inner {
    grid-template-columns: auto 1fr auto;
    padding: 14px 20px;
  }
  .zn-nav-links { display: none; }
  .zn-icon-btn .label { display: none; }
}

/* ======================================================
 * Hero — full-bleed centered, single static slide
 * ====================================================== */
.zn-hero {
  text-align: center;
  padding: 56px 28px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.zn-hero-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  margin-bottom: 38px;
  background-color: var(--bg-muted);
}
.zn-hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--text);
}
.zn-hero p.sub {
  font-size: 17px;
  color: var(--text-soft);
  margin: 0 auto 30px;
  max-width: 540px;
  line-height: 1.5;
}
.zn-cta {
  display: inline-block;
  background: var(--text);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  transition: background 150ms, transform 100ms;
}
.zn-cta:hover { background: var(--accent); }
.zn-cta:active { transform: translateY(1px); }
.zn-cta.outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.zn-cta.outline:hover {
  background: var(--text);
  color: #fff;
}

/* ======================================================
 * Section wrappers
 * ====================================================== */
.zn-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 28px;
}
.zn-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  gap: 18px;
}
.zn-section-head h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
.zn-section-head .more {
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.zn-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ======================================================
 * Bestsellers horizontal-scroll strip
 * ====================================================== */
.zn-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 28px;
  margin: 0 -28px;
  padding-left: 28px;
  padding-right: 28px;
}
.zn-strip::-webkit-scrollbar { height: 6px; }
.zn-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.zn-strip .pcard {
  flex: 0 0 calc((100% - 4 * 18px) / 5);
  min-width: 220px;
  max-width: 280px;
  scroll-snap-align: start;
}
@media (max-width: 880px) {
  .zn-strip .pcard { min-width: 180px; }
}

/* ======================================================
 * 3-col spacious collection grid
 * ====================================================== */
.zn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
@media (max-width: 880px) {
  .zn-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
}
@media (max-width: 540px) {
  .zn-grid { grid-template-columns: 1fr; }
}

/* ======================================================
 * Product cards — big square photo, hover zoom
 * ====================================================== */
.pcard {
  display: block;
  text-decoration: none;
  color: var(--text);
  position: relative;
}
.pcard .img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
}
.pcard .img-wrap .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.pcard:hover .img-wrap .img { transform: scale(1.04); }
.pcard .brand-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 5px;
}
.pcard .title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard .price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.pcard .strike {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-quiet);
  text-decoration: line-through;
}

/* ======================================================
 * Category cards 3-up
 * ====================================================== */
.zn-catcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .zn-catcards { grid-template-columns: 1fr; }
}
.catcard {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
}
.catcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}
.catcard .ct {
  position: relative;
  z-index: 1;
}
.catcard .label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.catcard .tagline {
  font-size: 13.5px;
  font-weight: 500;
  opacity: 0.92;
}

/* ======================================================
 * Lifestyle full-bleed editorial block
 * ====================================================== */
.zn-lifestyle {
  position: relative;
  padding: 0;
  margin: 80px 0 0;
}
.zn-lifestyle-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zn-lifestyle-quote {
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.32);
  padding: 28px 40px;
  border-radius: var(--radius-lg);
  max-width: 720px;
  margin: 0 24px;
}
.zn-lifestyle-quote .q {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.zn-lifestyle-quote .by {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

/* ======================================================
 * CTA strip (homepage tail)
 * ====================================================== */
.zn-cta-strip {
  text-align: center;
  padding: 84px 28px;
  background: var(--bg-soft);
}
.zn-cta-strip h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0 0 12px;
}
.zn-cta-strip p {
  color: var(--text-soft);
  margin: 0 0 24px;
  font-size: 15.5px;
}

/* ======================================================
 * Footer — light, slim, single row
 * ====================================================== */
.zn-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 28px 0;
  margin-top: 80px;
}
.zn-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}
.zn-footer-brand .wm {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: baseline;
}
.zn-footer-brand .wm .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-left: 3px;
  display: inline-block;
}
.zn-footer-brand .tag {
  font-size: 13.5px;
  color: var(--text-soft);
  max-width: 280px;
}
.zn-footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--text);
  margin: 4px 0 14px;
}
.zn-footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.zn-footer-col li {
  margin-bottom: 8px;
}
.zn-footer-col a {
  font-size: 13.5px;
  color: var(--text-soft);
  transition: color 120ms;
}
.zn-footer-col a:hover { color: var(--accent); }
.zn-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-quiet);
}
@media (max-width: 880px) {
  .zn-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 14px;
  }
}

/* ======================================================
 * Shop page — top-bar category filter + sort
 * ====================================================== */
.zn-shop-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: 32px;
}
.zn-shop-head h1 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.zn-cat-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.zn-cat-bar::-webkit-scrollbar { height: 4px; }
.zn-cat-pill {
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  transition: all 150ms;
  white-space: nowrap;
}
.zn-cat-pill:hover { border-color: var(--text); }
.zn-cat-pill.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.zn-shop-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 28px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.zn-shop-bar select {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 30px 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%230a0a0a' stroke-width='1.5' d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.no-results {
  padding: 80px 28px;
  text-align: center;
  color: var(--text-soft);
  font-size: 15px;
}

/* ======================================================
 * PDP — product detail page
 * ====================================================== */
.zn-pdp {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}
@media (max-width: 880px) {
  .zn-pdp { grid-template-columns: 1fr; gap: 32px; padding: 28px 20px 60px; max-width: 520px; }
}
.zn-pdp-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
}
.zn-pdp-info .brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.zn-pdp-info h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 16px;
}
.zn-pdp-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}
.zn-pdp-price .strike {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-quiet);
  text-decoration: line-through;
}
.zn-pdp-info .desc {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0 0 28px;
}
.zn-qty-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.zn-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.zn-qty button {
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  font-size: 16px;
  color: var(--text);
}
.zn-qty button:hover { background: var(--bg-muted); }
.zn-qty .val {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.zn-pdp-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}
.zn-pdp-cta button {
  width: 100%;
  padding: 16px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 150ms;
  border: 1.5px solid var(--text);
  font-family: inherit;
}
.btn-add {
  background: var(--text);
  color: #fff;
}
.btn-add:hover { background: var(--accent); border-color: var(--accent); }
.btn-buy {
  background: transparent;
  color: var(--text);
}
.btn-buy:hover { background: var(--text); color: #fff; }
.zn-acc {
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.zn-acc details {
  border-bottom: 1px solid var(--border);
}
.zn-acc summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zn-acc summary::-webkit-details-marker { display: none; }
.zn-acc summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--text-soft);
  transition: transform 200ms;
}
.zn-acc details[open] summary::after { content: "−"; }
.zn-acc .body {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}
.zn-acc .body ul {
  margin: 0; padding-left: 18px;
}
.zn-acc .body li { margin-bottom: 6px; }

/* ======================================================
 * Cart — slim list view
 * ====================================================== */
.zn-cart-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}
.zn-cart-page h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.zn-free-nudge {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13.5px;
  margin: 18px 0 28px;
  text-align: center;
  font-weight: 500;
}
.zn-cart-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.zn-cart-row .img {
  width: 90px; height: 90px;
  background: var(--bg-muted);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}
.zn-cart-row .name {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.35;
}
.zn-cart-row .meta {
  font-size: 12.5px;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.zn-cart-row .controls {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
}
.zn-cart-row .delete {
  color: var(--text-quiet);
  border: none;
  background: none;
  font-size: 13px;
  text-decoration: underline;
  padding: 0;
}
.zn-cart-row .price {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}
.zn-cart-summary {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.zn-cart-summary .row {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--text-soft);
  min-width: 280px;
  justify-content: space-between;
}
.zn-cart-summary .row.total {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
  width: 100%;
  min-width: 280px;
}
.zn-cart-summary .checkout-btn {
  margin-top: 18px;
  width: 100%;
  background: var(--text);
  color: #fff;
  padding: 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  text-align: center;
  text-decoration: none;
  transition: background 150ms;
}
.zn-cart-summary .checkout-btn:hover { background: var(--accent); }
.empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.empty-cart h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 14px;
}
.empty-cart p {
  color: var(--text-soft);
  margin: 0 0 24px;
}

/* ======================================================
 * Checkout — single-column with sticky right summary
 * ====================================================== */
.zn-checkout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 28px 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
@media (max-width: 880px) {
  .zn-checkout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.zn-co-step {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.zn-co-step:last-child { border-bottom: none; }
.zn-co-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.zn-co-step h3 .num {
  display: inline-flex;
  width: 22px; height: 22px;
  background: var(--text);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
}
.zn-co-step p.hint {
  margin: 0 0 16px 34px;
  font-size: 13px;
  color: var(--text-soft);
}
.zn-co-fields {
  display: grid;
  gap: 12px;
  margin-left: 34px;
}
.zn-co-fields.two-col {
  grid-template-columns: 1fr 1fr;
}
.zn-input {
  font: inherit;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
  color: var(--text);
  transition: border-color 150ms;
}
.zn-input:focus {
  outline: none;
  border-color: var(--text);
}
.zn-radio-row {
  display: block;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 8px;
  transition: border-color 120ms;
}
.zn-radio-row:hover { border-color: var(--text-soft); }
.zn-radio-row input { margin-right: 12px; }
.zn-radio-row .lab {
  font-size: 14px;
  font-weight: 500;
}
.zn-radio-row .desc-row {
  margin-left: 22px;
  font-size: 12.5px;
  color: var(--text-soft);
  margin-top: 4px;
}
.zn-co-summary {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: 86px;
  align-self: start;
}
.zn-co-summary h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.zn-co-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text-soft);
}
.zn-co-summary .row.item { color: var(--text); }
.zn-co-summary .row.total {
  font-weight: 700;
  color: var(--text);
  font-size: 17px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}
.zn-co-summary .place-btn {
  width: 100%;
  margin-top: 18px;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  transition: background 150ms;
}
.zn-co-summary .place-btn:hover:not(:disabled) { background: var(--accent); }
.zn-co-summary .place-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ======================================================
 * Page body — about/contact/etc.
 * ====================================================== */
.zn-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.zn-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 14px;
}
.zn-page p.lede {
  font-size: 17px;
  color: var(--text-soft);
  margin: 0 0 36px;
  line-height: 1.55;
}
.zn-page h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 32px 0 12px;
}
.zn-page h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
}
.zn-page p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 14px;
}
.zn-page ul {
  font-size: 15px;
  line-height: 1.65;
  padding-left: 22px;
}
.zn-page ul li { margin-bottom: 6px; }

.zn-values-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}
@media (max-width: 880px) {
  .zn-values-3 { grid-template-columns: 1fr; }
}
.zn-values-3 .v h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}
.zn-values-3 .v p {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
}

/* ======================================================
 * Auth (login/signup/account)
 * ====================================================== */
.zn-auth {
  max-width: 420px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.zn-auth h1 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  text-align: center;
}
.zn-auth p.sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  margin: 0 0 28px;
}
.zn-auth form {
  display: grid;
  gap: 12px;
}
.zn-auth .lbl {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  margin: 8px 0 4px;
}
.zn-auth .submit {
  width: 100%;
  background: var(--text);
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  margin-top: 6px;
  transition: background 150ms;
}
.zn-auth .submit:hover { background: var(--accent); }
.zn-auth .switch {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-soft);
  margin-top: 22px;
}
.zn-auth .switch a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.zn-auth-status {
  font-size: 13px;
  color: var(--price-red);
  text-align: center;
  margin-top: 8px;
  min-height: 18px;
}

/* ======================================================
 * Account page
 * ====================================================== */
.zn-acct {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.zn-acct h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.zn-acct .hello {
  color: var(--text-soft);
  margin: 0 0 32px;
}
.zn-acct-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 540px) {
  .zn-acct-grid { grid-template-columns: 1fr; }
}
.acct-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 120ms;
}
.acct-card:hover { border-color: var(--text); }
.acct-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}
.acct-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0;
}

/* ======================================================
 * Status & misc
 * ====================================================== */
#pay-status {
  margin-top: 12px;
  font-size: 13.5px;
  text-align: center;
  min-height: 18px;
}
.contact-form-success {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 500;
}
