/* ==========================================================================
   IGET Bar AUS — design system
   Ported from the UWELL DesignComponent templates in design-source/:
   Archivo + Poppins, lime #c9f24a on near-black #15151a, bone #faf9f6 panels.
   Everything the .dc files expressed as inline styles lives here as classes.
   ========================================================================== */

:root {
  --ink: #15151a;
  --body: #3d3d44;
  --muted: #6b6b72;
  --faint: #b7b7ae;
  --line: #e6e6df;
  --tile: #f7f7f4;
  --soft: #faf9f6;
  --lime: #c9f24a;
  --lime-ink: #1a2408;
  --lime-dark: #b4dd35;
  --green: #4f7a00;
  --green-dark: #3a5c00;
  --red: #c2331f;
  --white: #fff;

  --display: 'Archivo', system-ui, -apple-system, sans-serif;
  --ui: 'Poppins', system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --radius: 8px;
  --radius-lg: 14px;
  --header-h: 74px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--display);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); }
button { font-family: inherit; }

h1, h2, h3, h4 { margin: 0; letter-spacing: -.01em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.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;
}

/* --- shared type ------------------------------------------------------- */

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.eyebrow.lime { color: var(--green); }

.h-section {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
}
.h-page {
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 48px);
  text-transform: uppercase;
}

.lead { font-size: 16px; color: var(--muted); margin: 0; }

/* Longhand on purpose: `padding: 56px 0` would override .wrap's side gutters
   and let content hug the viewport edge. */
.section { padding-top: 56px; padding-bottom: 56px; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.section-head .more {
  font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap;
}

.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs span { color: var(--ink); }

/* --- buttons ----------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  border: none; border-radius: 4px;
  font-family: var(--display);
  font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer;
  background: var(--lime); color: var(--lime-ink);
  transition: background .15s, transform .05s;
}
.btn:hover { background: var(--lime-dark); color: var(--lime-ink); }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; color: var(--white); }

.btn-ghost {
  background: transparent; border: 1px solid var(--line);
  color: var(--ink); font-weight: 600;
}
.btn-ghost:hover { background: var(--tile); color: var(--ink); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-link {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--green); font-family: var(--display); font-size: 14px;
  text-decoration: underline;
}

/* --- age gate ---------------------------------------------------------- */

.age-gate {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 10, 12, .82);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate[hidden] { display: none; }
.age-card {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 460px; width: 100%; padding: 36px 32px; text-align: center;
}
.age-logo { height: 22px; width: auto; margin: 0 auto 20px; }
.age-card h2 {
  font-weight: 900; font-size: 26px; text-transform: uppercase; margin-bottom: 12px;
}
.age-card p { font-size: 15px; color: var(--body); line-height: 1.6; margin: 0 0 22px; }
.age-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.age-card .fine { font-size: 12px; color: var(--muted); margin: 20px 0 0; }

/* --- header ------------------------------------------------------------ */

/* Promotional, not a health warning — the nicotine notice lives in the footer,
   the age gate and every product page. */
.announce-bar {
  background: var(--lime); color: var(--lime-ink); text-align: center;
  font-family: var(--ui); font-size: 13px; font-weight: 600; line-height: 1.4;
  padding: 11px 16px; letter-spacing: .01em;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white); border-bottom: 1px solid #ececec;
}
.header-bar {
  max-width: var(--wrap); margin: 0 auto; padding: 0 20px;
  height: var(--header-h); display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 22px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; flex: 1; }
/* Sidebar-only chrome: no close button or scrim on desktop, where the nav is
   an inline row rather than a panel. */
.nav-close { display: none; }
.nav-scrim { display: none; }

/* Six inline category links plus Shop All, More, Wholesale and Delivery is a
   lot to fit beside the logo — tighten the spacing before the mobile
   breakpoint rather than letting the row overflow. */
@media (max-width: 1180px) {
  .main-nav { gap: 16px; }
  .main-nav > a, .nav-more > button { font-size: 14px; }
}
.main-nav > a, .nav-more > button {
  font-family: var(--ui); font-weight: 500; font-size: 15px;
  color: #1a1a1a; white-space: nowrap;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.main-nav > a:hover { color: #1a1a1a; border-bottom-color: var(--line); }
.main-nav > a.active { font-weight: 700; color: var(--ink); border-bottom-color: var(--lime); }

.nav-more { position: relative; }
.nav-more > button {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px; padding: 0 0 2px;
}
.nav-more > button svg { transition: transform .2s; }
.nav-more.open > button svg { transform: rotate(180deg); }

.nav-drop {
  position: absolute; top: calc(100% + 16px); left: -16px;
  background: var(--white); border: 1px solid #ececec; border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
  padding: 10px; z-index: 60;
  animation: drop .16s ease;
  width: 520px;
  max-height: 70vh; overflow-y: auto;
}
.nav-drop[hidden] { display: none; }
.nav-drop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-drop-grid a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 12px; border-radius: 6px;
  font-family: var(--ui); font-weight: 500; font-size: 14px; color: #1a1a1a;
}
.nav-drop-grid a:hover { background: var(--soft); color: var(--ink); }
.nav-drop-grid em { font-style: normal; font-size: 12px; color: #a8a8a0; }

@keyframes drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slidein { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

.header-actions {
  display: flex; align-items: center; gap: 18px; margin-left: auto; flex-shrink: 0;
}
.icon-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--ink); display: flex; position: relative;
}
.cart-count {
  position: absolute; top: -7px; right: -8px;
  background: var(--lime); color: var(--lime-ink);
  font-family: var(--ui); font-weight: 700; font-size: 11px;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.cart-count[hidden] { display: none; }

.nav-toggle { display: none; }

/* search panel */
.search-panel { border-top: 1px solid #ececec; background: var(--white); animation: drop .2s ease; }
.search-panel[hidden] { display: none; }
.search-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.search-inner input {
  border: none; font-family: var(--display); font-size: 16px;
  flex: 1; background: none; color: var(--ink);
}
.search-results {
  max-width: var(--wrap); margin: 0 auto; padding: 0 20px 16px;
  display: grid; gap: 2px; max-height: 50vh; overflow-y: auto;
}
.search-results a {
  display: flex; align-items: center; gap: 12px; padding: 8px 10px;
  border-radius: 6px; color: var(--ink); font-size: 14px;
}
.search-results a:hover { background: var(--soft); }
.search-results img { width: 36px; height: 44px; object-fit: contain; }
.search-results .price { margin-left: auto; font-weight: 700; }
.search-empty { padding: 10px; color: var(--muted); font-size: 14px; }

/* --- hero -------------------------------------------------------------- */

.hero { border-bottom: 1px solid var(--line); }
.hero-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 72px 20px 64px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
/* Sized for the full SEO H1, which is a sentence rather than a slogan. */
.hero h1 {
  font-weight: 900; font-size: clamp(32px, 4.6vw, 62px); line-height: 1.02;
  letter-spacing: -.02em; text-transform: uppercase; max-width: 18ch;
}
.hero h1 em {
  font-style: normal; background: var(--lime); color: var(--lime-ink); padding: 0 .12em;
}
.hero p { font-size: 17px; color: var(--muted); line-height: 1.65; max-width: 68ch; margin: 24px 0 0; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.hero-media {
  aspect-ratio: 4/5; background: var(--tile);
  border: 2px solid #d3d3c6; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, box-shadow .15s;
}
.hero-media:hover { border-color: var(--ink); box-shadow: 0 12px 32px rgba(0, 0, 0, .14); }
.hero-media img {
  width: 100%; height: 100%; object-fit: contain; padding: 28px;
  transition: transform .3s ease;
}
.hero-media:hover img { transform: scale(1.05); }

/* --- homepage product + SEO sections -------------------------------------- */

/* Grid first so there is something to click above the fold, then the copy and
   call to action underneath. */
.seo-block { padding-top: 48px; padding-bottom: 48px; }
.seo-block + .seo-block { padding-top: 0; }
.seo-block.first { padding-top: 8px; }

.seo-copy {
  margin-top: 36px; padding-top: 30px;
  border-top: 1px solid var(--line);
}
.seo-copy h2 {
  font-weight: 800; font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase; margin-bottom: 14px;
}
.seo-copy p {
  font-size: 16px; color: var(--body); line-height: 1.75;
  margin: 0 0 14px; max-width: 82ch;
}
.seo-copy a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.seo-copy .btn { margin-top: 8px; text-decoration: none; }

/* --- carousel ------------------------------------------------------------ */

.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
  /* Room for the overlapping nav buttons to sit without clipping card shadow. */
  scroll-padding-inline: 0;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.carousel-track::-webkit-scrollbar-track { background: transparent; }
.carousel-track > .card {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}

.carousel-nav {
  position: absolute; top: calc(50% - 60px); transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--ink); background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .14);
  transition: background .15s, color .15s, opacity .15s;
}
.carousel-nav:hover { background: var(--ink); color: var(--white); }
.carousel-nav[hidden] { display: none; }
.carousel-nav.prev { left: -14px; }
.carousel-nav.next { right: -14px; }

@media (max-width: 1080px) {
  .carousel-track > .card { flex-basis: calc((100% - 32px) / 3); }
}
@media (max-width: 760px) {
  .carousel-track > .card { flex-basis: calc((100% - 16px) / 2); }
  .carousel-nav { display: none; }
}
@media (max-width: 480px) {
  .carousel-track > .card { flex-basis: 74%; }
}

@media (max-width: 900px) {
  .hero h1 { max-width: none; }
  .seo-block { padding-top: 36px; padding-bottom: 36px; }
  .seo-copy { margin-top: 28px; padding-top: 24px; }
}

/* --- collection tiles -------------------------------------------------- */

.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile {
  display: flex; flex-direction: column;
  border: 2px solid #d3d3c6; border-radius: var(--radius);
  overflow: hidden; background: var(--white); color: var(--ink);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.tile:hover {
  border-color: var(--ink); box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
  transform: translateY(-2px); color: var(--ink);
}
.tile-media {
  aspect-ratio: 16/10; display: block;
  background: var(--tile); overflow: hidden;
  border-bottom: 2px solid #d3d3c6;
}
/* Fill the tile edge to edge — no gradient showing around the product. */
.tile-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  padding: 0; transition: transform .3s ease;
}
.tile:hover .tile-media img { transform: scale(1.05); }
.tile-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.tile-body b { display: block; font-weight: 700; font-size: 17px; line-height: 1.25; }
.tile-meta {
  display: block; font-size: 12px; color: var(--muted); font-weight: 600;
  margin-top: 8px; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 16px;
}
.tile-body i {
  display: inline-flex; align-self: flex-start; margin-top: auto; padding: 9px 14px;
  border: 2px solid var(--line); border-radius: 4px;
  font-style: normal; font-size: 13px; font-weight: 700; color: var(--ink);
}
.tile:hover .tile-body i { border-color: var(--ink); background: var(--lime); }


/* --- product cards ----------------------------------------------------- */

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card { display: flex; flex-direction: column; }
.card-media {
  position: relative; aspect-ratio: 4/5; background: var(--tile);
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.card-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .25s; }
.card:hover .card-media img { transform: scale(1.04); }
.card-media .ph {
  color: var(--faint); font-family: var(--ui); font-weight: 600; font-size: 13px;
  text-align: center; padding: 0 16px;
}
.badge {
  position: absolute; left: 10px; bottom: 10px;
  background: var(--lime); color: var(--lime-ink);
  font-family: var(--ui); font-weight: 600; font-size: 11px;
  padding: 4px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: .03em;
}
.badge-sale {
  left: auto; right: 10px; bottom: auto; top: 10px;
  background: var(--ink); color: var(--white);
}
.badge-out { background: #6b6b72; color: var(--white); }

.card-cat {
  font-family: var(--display); font-size: 11px; text-transform: uppercase;
  letter-spacing: .14em; color: var(--muted); font-weight: 600; margin-top: 14px;
}
.card-name {
  font-size: 16px; font-weight: 600; margin: 5px 0 8px;
  color: var(--ink); display: block;
}
.card-name:hover { color: var(--green); }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.card-price b { font-size: 16px; font-weight: 700; }
.card-price s { font-size: 14px; color: var(--muted); }
.card .btn { margin-top: auto; width: 100%; padding: 12px; font-size: 13px; font-weight: 700; letter-spacing: .05em; }

/* --- spotlight --------------------------------------------------------- */

.spotlight {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink); color: var(--white);
}
.spotlight-body { padding: 56px 48px; }
.spotlight .eyebrow { color: var(--lime); }
.spotlight h2 {
  font-weight: 900; font-size: clamp(30px, 4vw, 52px); line-height: .98;
  text-transform: uppercase; letter-spacing: -.02em; margin: 0 0 18px;
}
.spotlight p {
  font-size: 16px; color: rgba(255, 255, 255, .7); line-height: 1.6;
  max-width: 420px; margin: 0 0 28px;
}
.spotlight-media {
  background: linear-gradient(135deg, #26262c, #2f3a18);
  display: flex; align-items: center; justify-content: center; min-height: 320px;
}
.spotlight-media img { max-height: 380px; width: auto; object-fit: contain; padding: 24px; }

/* --- value cards / trust ----------------------------------------------- */

.band { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px;
}
.value-card .no { font-family: var(--display); font-weight: 900; font-size: 20px; color: var(--green); margin-bottom: 14px; }
.value-card b { display: block; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

.trust { background: var(--ink); color: var(--white); }
.trust-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 40px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item svg { color: var(--lime); flex-shrink: 0; }
.trust-item b { display: block; font-weight: 700; font-size: 15px; }
.trust-item span { font-size: 13px; color: rgba(255, 255, 255, .55); }

/* --- chips / SEO copy --------------------------------------------------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips a {
  display: inline-flex; padding: 9px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; color: var(--body); background: var(--white);
}
.chips a:hover { border-color: var(--green); color: var(--green); }

.prose { max-width: 900px; margin: 0 auto; padding: 56px 20px; }
.prose h2 { font-weight: 800; font-size: 26px; text-transform: uppercase; margin: 0 0 18px; }
.prose h3 { font-weight: 700; font-size: 19px; margin: 32px 0 12px; }
.prose p, .prose li { font-size: 16px; color: var(--body); line-height: 1.7; }
.prose p { margin: 0 0 14px; }
.prose ul { padding-left: 20px; margin: 0 0 14px; }
.prose li { margin-bottom: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); }
.prose th { font-weight: 700; background: var(--soft); }

/* --- shop / filters ----------------------------------------------------- */

.shop-layout {
  display: grid; grid-template-columns: 250px 1fr; gap: 32px;
  align-items: start; padding: 32px 0 56px;
}
/* Category pages run full width — the dropdown replaces the sidebar. */
.shop-layout.no-filters { grid-template-columns: 1fr; }
.filters { position: sticky; top: calc(var(--header-h) + 22px); }
.filter-block { border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 20px; }
.filter-block:last-of-type { border-bottom: none; }
.filter-block h3 {
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
.filter-list { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; }
.filter-list label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--body); cursor: pointer;
}
.filter-list input { width: 16px; height: 16px; accent-color: var(--green); flex-shrink: 0; }
.filter-list .n { margin-left: auto; font-size: 12px; color: #a8a8a0; }
.filters input[type=range] { width: 100%; accent-color: var(--green); }
.range-labels { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-top: 6px; }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 22px; flex-wrap: wrap;
}
.shop-toolbar .count { font-size: 14px; color: var(--muted); margin-right: auto; }
.shop-toolbar label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.shop-toolbar select {
  font-family: var(--display); font-size: 14px; padding: 8px 12px;
  border: 1px solid var(--line); border-radius: 4px; background: var(--white); color: var(--ink);
  cursor: pointer;
}
.shop-toolbar select:hover { border-color: var(--faint); }
.cat-jump select { font-weight: 600; color: var(--ink); max-width: 260px; }

/* Dropdown sitting under the home-page category grid — deliberately loud, it
   is the shortcut to all 21 collections. */
.cat-jump-row { display: flex; justify-content: center; margin-top: 32px; }
.cat-jump-row .cat-jump {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 8px 8px 8px 24px; background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}
.cat-jump-row .cat-jump select {
  font-family: var(--display); font-size: 15px; font-weight: 700;
  padding: 12px 18px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--lime); color: var(--lime-ink); cursor: pointer; max-width: 320px;
  transition: background .15s;
}
.cat-jump-row .cat-jump select:hover { background: var(--lime-dark); }
@media (max-width: 640px) {
  .cat-jump-row .cat-jump {
    width: 100%; flex-direction: column; align-items: stretch; gap: 10px;
    border-radius: 14px; padding: 16px; text-align: center;
  }
  .cat-jump-row .cat-jump select { max-width: none; }
}

/* --- mobile bottom nav ---------------------------------------------------- */

.bottom-nav { display: none; }

@media (max-width: 900px) {
  .bottom-nav {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--white); border-top: 2px solid #d3d3c6;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .bottom-nav a, .bottom-nav button {
    position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 9px 4px 8px;
    background: none; border: none; cursor: pointer;
    font-family: var(--ui); font-size: 11px; font-weight: 600;
    color: var(--muted); text-decoration: none;
  }
  .bottom-nav a.active { color: var(--ink); }
  .bottom-nav a.active svg { color: var(--green); }
  .bottom-nav a:active, .bottom-nav button:active { background: var(--soft); }
  .bottom-nav .cart-count { top: 2px; right: calc(50% - 20px); }

  /* Clear the bar so the footer and any sticky CTA stay reachable. */
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }

  /* The Chatway bubble also parks bottom-right — lift it above the bar so the
     two do not overlap. Chatway renders outside our markup, so this targets
     its container defensively. */
  #chatway-container,
  iframe[src*="chatway"] {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
.no-results { padding: 60px 20px; text-align: center; color: var(--muted); }
.filter-toggle { display: none; }

.pager { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pager a, .pager span {
  min-width: 40px; padding: 9px 12px; text-align: center;
  border: 1px solid var(--line); border-radius: 4px;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.pager .on { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pager a:hover { border-color: var(--ink); }
.pager .pg-step { font-weight: 700; }
.pager .pg-gap { border: 0; min-width: 0; padding: 9px 2px; color: var(--muted); }

@media (max-width: 560px) {
  .pager { gap: 6px; }
  .pager a, .pager span { min-width: 36px; padding: 8px 9px; font-size: 13px; }
}

/* --- product detail ------------------------------------------------------ */

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 24px 0 56px; }
.pdp-media {
  aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: var(--tile);
}
.pdp-media img { width: 100%; height: 100%; object-fit: contain; padding: 32px; }
.pdp h1 { font-weight: 800; font-size: clamp(26px, 3.4vw, 40px); text-transform: uppercase; margin: 8px 0 14px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pdp-price b { font-size: 30px; font-weight: 800; }
.pdp-price s { font-size: 18px; color: var(--muted); }
.pdp-price .save {
  background: var(--lime); color: var(--lime-ink); font-size: 12px; font-weight: 700;
  padding: 4px 8px; border-radius: 3px; text-transform: uppercase;
}
.pdp-gst { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pdp-desc { font-size: 15px; color: var(--body); line-height: 1.7; margin: 0 0 24px; }

.stock { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.stock::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.stock.in { color: #1f7a3d; }
.stock.low { color: #b06a00; }
.stock.out { color: var(--red); }

.spec-list { border-top: 1px solid var(--line); margin: 24px 0 0; }
.spec-list div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.spec-list dt { color: var(--muted); }
.spec-list dd { margin: 0; font-weight: 600; text-align: right; }

.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
}
.qty button {
  background: none; border: none; width: 40px; height: 46px;
  cursor: pointer; font-size: 18px; color: var(--ink);
}
.qty button:hover { background: var(--tile); }
.qty input {
  width: 48px; height: 46px; border: none; text-align: center;
  font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--ink);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-buy { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; margin-bottom: 20px; }
.pdp-buy .btn { flex: 1; min-width: 200px; padding: 15px 28px; }

.pdp-usp { display: grid; gap: 10px; padding: 20px; background: var(--soft); border: 1px solid var(--line); border-radius: 10px; }
.pdp-usp div { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--body); }
.pdp-usp svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* --- cart drawer --------------------------------------------------------- */

.drawer { position: fixed; inset: 0; z-index: 100; }
.drawer[hidden] { display: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, .45); animation: fadein .2s ease; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--white); display: flex; flex-direction: column;
  animation: slidein .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, .18);
}
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.drawer-head b { font-weight: 800; font-size: 18px; text-transform: uppercase; }
.drawer-head b span { color: var(--muted); font-weight: 600; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 22px 24px; }

.mini-line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid #f0f0ea; }
.mini-line img { width: 64px; height: 80px; object-fit: contain; background: var(--tile); border-radius: 6px; flex-shrink: 0; }
.mini-line .info { flex: 1; min-width: 0; }
.mini-line .cat {
  font-family: var(--display); font-size: 10px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); font-weight: 600;
}
.mini-line .nm { font-size: 14px; font-weight: 600; margin: 3px 0 8px; }
.mini-line .row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mini-line .qty button { width: 28px; height: 28px; font-size: 15px; }
.mini-line .qty input { width: 34px; height: 28px; font-size: 13px; }
.mini-line .amt { font-size: 14px; font-weight: 700; }

.sum-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; font-size: 15px; }
.sum-row span { color: var(--muted); }
.sum-row.total { font-size: 20px; font-weight: 800; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }
.sum-row.total span { color: var(--ink); }
.sum-note { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.sum-note.ok { color: #1f7a3d; font-weight: 600; }

.empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 40px; text-align: center; }
.empty svg { color: #d4d4cc; }
.empty b { font-weight: 700; font-size: 17px; }
.empty p { color: var(--muted); margin: 0; }

/* --- cart page ----------------------------------------------------------- */

.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-line { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 96px; height: 120px; object-fit: contain; background: var(--tile); border-radius: var(--radius); flex-shrink: 0; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .cat {
  font-family: var(--display); font-size: 11px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); font-weight: 600;
}
.cart-line .nm { font-size: 17px; font-weight: 600; margin: 4px 0; display: block; color: var(--ink); }
.cart-line .unit { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.cart-line .ctrl { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cart-line .amt { font-size: 17px; font-weight: 800; white-space: nowrap; }

.panel {
  background: var(--soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 26px;
}
.panel.sticky { position: sticky; top: calc(var(--header-h) + 22px); }
.panel h2 { font-weight: 800; font-size: 18px; text-transform: uppercase; margin-bottom: 18px; }

/* --- checkout ------------------------------------------------------------ */

.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.steps { display: flex; flex-direction: column; gap: 36px; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step-head .no {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-head h2 { font-weight: 800; font-size: 19px; text-transform: uppercase; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--line); border-radius: 4px; background: var(--tile);
  font-family: var(--display); font-size: 15px; color: var(--ink);
}
.field .err { font-size: 12px; color: var(--red); margin-top: 5px; }
.field input[aria-invalid=true], .field select[aria-invalid=true] { border-color: var(--red); }

.choice-list { display: flex; flex-direction: column; gap: 10px; }
.choice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 6px;
  cursor: pointer; font-size: 15px;
}
.choice:has(input:checked) { border-color: var(--green); background: #fbfdf5; }
.choice input { width: 16px; height: 16px; accent-color: var(--green); margin-top: 3px; flex-shrink: 0; }
.choice b { display: block; font-weight: 600; }
.choice small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.choice .amt { margin-left: auto; font-weight: 700; white-space: nowrap; }

.pay-details {
  margin-top: 12px; padding: 16px; background: var(--soft);
  border: 1px solid var(--line); border-radius: 6px; font-size: 14px;
}
.pay-details[hidden] { display: none; }
.pay-details dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 0 0 12px; }
.pay-details dt { color: var(--muted); }
.pay-details dd { margin: 0; font-weight: 700; }
.pay-details p { margin: 0; color: var(--body); line-height: 1.6; }
.upload { margin-top: 12px; }
.upload-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px;
  border: 1px dashed var(--faint); border-radius: 6px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--body); background: var(--white);
}
.upload-btn:hover { border-color: var(--green); color: var(--green); }
.upload-name { font-size: 13px; color: var(--muted); margin-top: 8px; }

.form-error {
  background: #fdf2f0; border: 1px solid #f0c4bc; color: #8f2415;
  padding: 14px 16px; border-radius: 6px; font-size: 14px; margin-bottom: 20px;
}
.form-error[hidden] { display: none; }

.order-lines { margin-bottom: 14px; }
.order-line { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; margin-bottom: 12px; }
.order-line span { color: var(--body); }
.order-line b { font-weight: 600; white-space: nowrap; }
.discount-row span, .discount-row b { color: #1f7a3d !important; }

/* --- reviews -------------------------------------------------------------- */

.review-head {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding-bottom: 22px; margin-bottom: 26px; border-bottom: 2px solid #d3d3c6;
}
.review-head strong { font-size: 22px; font-weight: 800; }
.review-head > span:last-child { font-size: 14px; color: var(--muted); }

.stars { color: #e8a900; font-size: 18px; letter-spacing: .08em; line-height: 1; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  margin: 0; display: flex; flex-direction: column;
  border: 2px solid #d3d3c6; border-radius: var(--radius); overflow: hidden;
  background: var(--white);
}
.review-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-bottom: 2px solid #d3d3c6; background: var(--tile);
}
.review .stars { padding: 16px 18px 0; }
.review blockquote {
  margin: 0; padding: 10px 18px 14px;
  font-size: 15px; color: var(--body); line-height: 1.65;
}
.review figcaption {
  padding: 0 18px 14px; font-weight: 700; font-size: 14px; color: var(--ink);
  margin-top: auto;
}
.review figcaption span {
  display: block; font-weight: 500; font-size: 12.5px; color: var(--muted);
  margin-top: 3px;
}
.review-meta { padding: 0 18px 16px; }
.review-verified {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--soft); border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 11px; font-size: 11.5px; font-weight: 700;
  color: #1f7a3d; text-transform: uppercase; letter-spacing: .04em;
}
.review-note {
  font-size: 13px; color: var(--muted); line-height: 1.6;
  margin: 24px 0 0; max-width: 78ch;
}

@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .review-grid { grid-template-columns: 1fr; } }

/* --- FAQ ----------------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 17px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 24px; color: var(--green); line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { font-size: 15px; color: var(--body); line-height: 1.7; margin: 0; padding: 0 0 24px; }

.cta-box {
  margin-top: 48px; background: var(--soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px; text-align: center;
}
.cta-box b { display: block; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.cta-box p { font-size: 15px; color: var(--muted); margin: 0 0 18px; }

/* --- toast --------------------------------------------------------------- */

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%);
  background: var(--ink); color: var(--white);
  padding: 13px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 600; z-index: 200;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  animation: fadein .18s ease;
}
.toast[hidden] { display: none; }

/* --- footer --------------------------------------------------------------- */

.site-footer { background: #000; color: var(--white); font-family: var(--ui); margin-top: 0; }
.footer-cols {
  max-width: var(--wrap); margin: 0 auto; padding: 40px 20px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.footer-cols h3 {
  font-weight: 600; font-size: 14px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-cols nav { display: flex; flex-direction: column; gap: 13px; }
.footer-cols nav a { font-size: 15px; color: #8f8f8f; }
.footer-cols nav a:hover { color: var(--white); }
/* The logo now opens the footer, so it aligns to the top of the block and
   the divider sits underneath it rather than above. */
.footer-brand {
  max-width: var(--wrap); margin: 0 auto; padding: 44px 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .mark { display: flex; align-items: center; }
.footer-brand .mark img { height: 30px; width: auto; }
.socials { display: flex; gap: 16px; }
.socials a { color: #bdbdbd; display: flex; }
.socials a:hover { color: var(--white); }

.footer-email { margin: 16px 0 0; }
.footer-email a {
  font-family: var(--ui); font-size: 15px; font-weight: 600; color: var(--lime);
  overflow-wrap: anywhere;
}
.footer-email a:hover { color: var(--white); }

.footer-legal { border-top: 1px solid #232323; }
.footer-legal-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 20px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: #7d7d7d;
}
.footer-legal-inner a { color: #7d7d7d; }
.footer-legal-inner a:hover { color: #bdbdbd; }
.footer-legal-inner .right { margin-left: auto; }

.footer-warning {
  background: #111; color: #9a9a9a; font-size: 12px; line-height: 1.6;
  padding: 18px 20px; text-align: center;
}
.footer-warning strong { color: #d0d0d0; }

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 48px 20px; }
  /* Phones get straight to the copy and CTAs — the hero shot is desktop only. */
  .hero-media { display: none; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-body { padding: 40px 28px; }
  .spotlight-media { min-height: 240px; }
  .pdp { grid-template-columns: 1fr; gap: 28px; }
  .checkout-layout, .cart-layout { grid-template-columns: 1fr; gap: 32px; }
  .panel.sticky { position: static; }
  .value-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }

  /* mobile nav */
  .nav-toggle {
    display: flex; background: none; border: none; cursor: pointer;
    color: var(--ink); padding: 0; margin-right: -4px;
  }
  .header-bar { gap: 16px; }
  /* Sliding sidebar rather than a full-width dropdown: the page stays
     visible behind it, the panel scrolls independently of the body, and it
     is anchored to the right where the toggle sits. */
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(330px, 86vw); z-index: 120;
    background: var(--white); border-left: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 18px 22px calc(28px + env(safe-area-inset-bottom));
    max-height: none; height: 100%;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    box-shadow: -18px 0 40px rgba(0, 0, 0, .18);
    transform: translateX(100%);
    transition: transform .24s ease;
  }
  /* [hidden] is still what the JS toggles; the class drives the animation. */
  .main-nav.open { transform: translateX(0); }

  .nav-scrim {
    display: block; position: fixed; inset: 0; z-index: 110;
    background: rgba(10, 10, 12, .5);
    opacity: 0; transition: opacity .24s ease;
  }
  .nav-scrim.open { opacity: 1; }
  .nav-scrim[hidden] { display: none; }

  .nav-close {
    display: block; align-self: flex-end; background: none; border: 0; cursor: pointer;
    padding: 4px; margin: -4px -4px 6px 0; color: var(--ink);
  }
  body.nav-open { overflow: hidden; }
  .main-nav[hidden] { display: none; }
  .main-nav > a, .nav-more > button {
    padding: 13px 0; border-bottom: 1px solid var(--line) !important; width: 100%;
  }
  .nav-more > button { justify-content: space-between; }
  .nav-drop {
    position: static; width: auto; border: none; box-shadow: none;
    padding: 4px 0 10px; max-height: none; animation: none;
  }
  .nav-drop-grid { grid-template-columns: 1fr; }

  /* filters collapse */
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; border: 1px solid var(--line); border-radius: 10px; padding: 18px; }
  .filters[hidden] { display: none; }
  .filter-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  :root { --header-h: 62px; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  /* Categories stay 2-up on phones rather than stacking into one tall column. */
  .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  /* Keeps the tile count even so none is stranded alone on the last row. */
  .tile.hide-mobile { display: none; }
  .tile-body { padding: 12px 12px 14px; }
  .tile-body b { font-size: 15px; }
  .tile-body span { font-size: 12px; }
  .tile-body i { margin-top: 10px; padding: 7px 10px; font-size: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .section { padding-top: 40px; padding-bottom: 40px; }
  .logo img { height: 18px; }
  .header-actions { gap: 14px; }
  .footer-brand .mark img { height: 24px; }
  .cart-line img { width: 72px; height: 90px; }
  .spotlight-body { padding: 32px 22px; }
  .footer-cols { grid-template-columns: 1fr; padding-top: 44px; }
  .card .btn { font-size: 12px; padding: 11px 8px; }
  .hero-stats { gap: 20px; }
}

@media print {
  .site-header, .site-footer, .drawer, .age-gate, .toast { display: none !important; }
}

/* Page sign-off — a straight rule and the mark, last thing inside <main> on
   every page including the home page and every product. */
.end-mark {
  margin: 0;
  padding: 30px 0 38px;
  border-top: 2px solid var(--ink);
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 640px) {
  .end-mark { padding: 22px 0 28px; font-size: 13px; letter-spacing: .28em; }
}

/* --- blog --------------------------------------------------------------- */

.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.post-card {
  display: flex; flex-direction: column;
  border: 2px solid var(--border, #d3d3c6); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
}
.post-card-media { display: block; background: var(--ink); }
.post-card-media img { width: 100%; height: auto; }
.post-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.post-card-body time {
  font-family: var(--ui); font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
}
.post-card-body h2 { font-size: 19px; font-weight: 800; line-height: 1.3; margin: 10px 0; }
.post-card-body h2 a { color: var(--ink); }
.post-card-body h2 a:hover { color: var(--green); }
.post-card-body p { font-size: 14.5px; color: var(--body); line-height: 1.6; margin: 0 0 18px; }
.post-more {
  margin-top: auto; font-family: var(--ui); font-size: 14px; font-weight: 700; color: var(--ink);
}
.post-more:hover { color: var(--green); }

.post-hero { width: 100%; height: auto; border-radius: var(--radius-lg); }
.post-intro { font-size: 18px; line-height: 1.65; color: var(--ink); font-weight: 500; }
.post-cta {
  margin-top: 28px; padding: 20px 22px; background: var(--soft);
  border-left: 4px solid var(--lime); border-radius: 0 var(--radius) var(--radius) 0;
}

@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
