:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --muted-strong: #424245;
  --paper: #f5f5f7;
  --panel: #ffffff;
  --panel-soft: #fbfbfd;
  --fill: #e8e8ed;
  --line: rgba(29, 29, 31, 0.12);
  --line-strong: rgba(29, 29, 31, 0.18);
  --blue: #0071e3;
  --blue-pressed: #0066cc;
  --green: #2d7d46;
  --amber: #9a5a00;
  --dark: #1d1d1f;
  --dark-soft: #2c2c2e;
  --white-glass: rgba(255, 255, 255, 0.78);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
select,
input {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.32);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

h2 {
  max-width: 16ch;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.04;
}

h3 {
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.14;
}

.lede {
  max-width: 64ch;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.48;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 10px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(22px);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.mark img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

nav a,
.cart-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 13px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

nav a:hover {
  background: rgba(29, 29, 31, 0.06);
  color: var(--ink);
}

nav a:active,
.cart-link:active,
.primary:active,
.secondary:active,
.product-card button:active,
.commerce-card button:active {
  transform: scale(0.98);
}

nav .active {
  background: var(--ink);
  color: white;
}

.cart-link {
  border: 0;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.hero,
.category-hero,
.fit-band,
.kit-section,
.category-section,
.newsletter-band,
.policy-page,
.admin-page {
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
}

.hero {
  min-height: min(860px, calc(100dvh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  padding-top: clamp(48px, 7vw, 94px);
  padding-bottom: clamp(58px, 8vw, 112px);
}

.hero-copy,
.category-copy {
  min-width: 0;
}

.hero-copy {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary,
.secondary,
.product-card button {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 26px rgba(0, 113, 227, 0.20);
}

.primary:hover {
  background: var(--blue-pressed);
  box-shadow: 0 14px 34px rgba(0, 113, 227, 0.24);
}

.secondary {
  border-color: transparent;
  background: rgba(29, 29, 31, 0.07);
  color: var(--ink);
}

.secondary:hover {
  background: rgba(29, 29, 31, 0.11);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.proof-row span,
.tag,
.notice,
.admin-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: clamp(420px, 55vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: var(--panel-soft);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(29, 29, 31, 0.04));
  pointer-events: none;
  z-index: 1;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice {
  width: min(var(--max), calc(100% - 40px));
  margin: 20px auto 0;
  border-radius: var(--radius);
}

.fit-band,
.checkout-band {
  padding-top: clamp(58px, 8vw, 112px);
  padding-bottom: clamp(58px, 8vw, 112px);
  background: var(--dark);
  color: white;
}

.fit-grid,
.checkout-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.fit-band h2,
.checkout-band h2,
.blog-band h2 {
  color: white;
}

.fit-band .eyebrow,
.checkout-band .eyebrow,
.blog-band .eyebrow {
  color: #66a7ff;
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  min-height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.78);
  line-height: 1.45;
}

.fit-list strong {
  display: block;
  margin-bottom: 7px;
  color: white;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: var(--dark);
}

.gallery img {
  width: 100%;
  height: clamp(280px, 52vw, 680px);
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery .wide {
  grid-row: span 2;
  height: 100%;
}

.kit-section,
.category-section {
  padding-top: clamp(54px, 8vw, 104px);
  padding-bottom: clamp(54px, 8vw, 104px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.product-card.focus {
  background: #eef5ff;
  border-color: rgba(0, 113, 227, 0.24);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.card-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.card-bottom span {
  font-size: 26px;
  font-weight: 700;
}

.product-card button {
  min-width: 74px;
  min-height: 40px;
  background: var(--ink);
  color: white;
}

.product-card .secondary {
  min-height: 40px;
  padding-inline: 13px;
}

.checkout-band {
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
}

.checkout-band p {
  max-width: 62ch;
  color: rgba(245, 245, 247, 0.78);
  line-height: 1.5;
}

.checkout-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  backdrop-filter: saturate(180%) blur(22px);
}

.checkout-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.checkout-panel select,
.newsletter-form input,
.email-panel input,
.search-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0 12px;
  background: white;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.checkout-panel select:focus,
.newsletter-form input:focus,
.email-panel input:focus,
.search-box input:focus {
  border-color: rgba(0, 113, 227, 0.58);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.10);
  outline: 0;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  font-size: 22px;
}

.price-line.subtle {
  color: var(--muted);
}

.price-line.subtle strong {
  font-size: 16px;
}

.full {
  width: 100%;
  margin-top: 20px;
}

.fine {
  margin: 14px 0 0;
  color: var(--muted) !important;
  font-size: 12px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.success {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.success-panel {
  width: min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 6vw, 64px);
}

.success-panel h1 {
  max-width: 11ch;
}

.success-panel p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--muted);
  line-height: 1.5;
}

.link-button {
  margin-top: 14px;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  min-height: min(780px, calc(100dvh - 64px));
  padding-top: clamp(46px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.category-copy {
  max-width: 590px;
}

.category-hero h1 {
  max-width: 10.8ch;
  font-size: clamp(46px, 5.4vw, 76px);
}

.category-stage {
  position: relative;
  min-height: 448px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: var(--panel-soft);
  box-shadow: var(--shadow-lg);
}

.category-stage img {
  width: 100%;
  height: 100%;
  min-height: 448px;
  object-fit: cover;
  object-position: center;
}

.hero-feature {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 36px));
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(29, 29, 31, 0.70);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: saturate(180%) blur(22px);
}

.hero-feature span,
.hero-feature small {
  color: rgba(245, 245, 247, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.hero-feature strong {
  color: white;
  font-size: 20px;
  line-height: 1.05;
}

.category-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 560px;
}

.category-benefits span {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line-strong);
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.25;
}

.category-benefits strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}

.current-drop {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 3.2fr) auto;
  gap: 0;
  align-items: stretch;
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.current-drop-copy {
  border-right: 1px solid var(--line);
  padding: 28px clamp(18px, 3vw, 42px);
}

.current-drop-copy h2 {
  max-width: 13ch;
  margin-bottom: 10px;
  font-size: clamp(26px, 2.8vw, 38px);
}

.current-drop-copy p:not(.eyebrow) {
  max-width: 31ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.current-drop-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 1fr);
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.current-drop-item {
  min-height: 172px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  text-align: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  transition: background 180ms ease, transform 180ms ease;
}

.current-drop-item:hover {
  background: #f0f6ff;
}

.current-drop-item img {
  width: 88px;
  height: 82px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--fill);
}

.current-drop-all {
  min-width: 112px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--blue);
  font-weight: 700;
}

.commerce-grid,
.subcategory-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.catalog-count {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
}

.catalog-layout .commerce-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.catalog-sidebar {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr) minmax(260px, 0.9fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
  border-block: 1px solid var(--line);
  padding: 18px 0;
}

.catalog-sidebar .search-box {
  min-width: 0;
  grid-template-columns: 1fr;
}

.catalog-sidebar .search-box label,
.sidebar-title {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.catalog-sidebar .search-box > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.sidebar-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.sidebar-title {
  width: 100%;
  margin: 0 0 3px;
}

.sidebar-group a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--panel);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.trust-list p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.trust-list strong {
  color: var(--ink);
}

.commerce-card,
.subcategory-grid a,
.blog-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.commerce-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  animation: rise-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--index, 0) * 55ms);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.commerce-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 113, 227, 0.28);
  box-shadow: var(--shadow-md);
}

.commerce-card.feature {
  grid-column: span 2;
  background: var(--panel);
}

.commerce-media {
  display: block;
  background: var(--fill);
}

.commerce-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.commerce-card.feature img {
  min-height: 0;
  aspect-ratio: 1.7 / 1;
}

.commerce-card > div,
.subcategory-grid a,
.blog-grid article {
  padding: 18px;
}

.commerce-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
}

.commerce-card button {
  min-width: 58px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.commerce-card .card-add {
  width: 100%;
}

.commerce-card .card-bottom a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.commerce-card p,
.subcategory-grid span,
.blog-grid p,
.newsletter-band p,
.policy-page p {
  color: var(--muted);
  line-height: 1.5;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(24px, 5vw, 72px);
  background: var(--panel-soft);
}

.subcategory-grid a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.subcategory-grid a:hover {
  background: #f0f6ff;
  border-color: rgba(0, 113, 227, 0.24);
  transform: translateY(-2px);
}

.blog-band {
  background: var(--dark);
  color: white;
}

.blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.blog-grid h3 {
  color: white;
}

.blog-grid p,
.blog-grid a {
  color: rgba(245, 245, 247, 0.78);
}

.blog-hero {
  min-height: min(700px, calc(100dvh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: clamp(48px, 8vw, 104px) max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 20%, rgba(0, 113, 227, 0.10), transparent 34%), var(--paper);
}

.blog-hero h1 {
  max-width: 12ch;
}

.blog-hero-panel {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-md);
  backdrop-filter: saturate(180%) blur(22px);
}

.blog-hero-panel span {
  font-size: clamp(48px, 8vw, 86px);
  font-weight: 750;
  line-height: 0.92;
}

.blog-hero-panel strong {
  font-size: 20px;
}

.blog-hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: rise-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--index, 0) * 45ms);
}

.blog-card-media {
  background: var(--fill);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.blog-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.5;
}

.article-page {
  padding: clamp(44px, 7vw, 92px) max(20px, calc((100vw - var(--max)) / 2));
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.article-hero {
  grid-column: 1;
  padding-bottom: 14px;
}

.article-hero h1 {
  max-width: 13ch;
}

.article-aside {
  position: sticky;
  top: 86px;
  grid-column: 2;
  grid-row: 1 / span 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-md);
}

.article-aside img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  background: var(--fill);
}

.article-aside > div {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.article-aside p {
  color: var(--muted);
  line-height: 1.5;
}

.article-card {
  grid-column: 1;
  border-top: 1px solid var(--line);
  padding: clamp(24px, 4vw, 42px) 0;
}

.article-card h2 {
  max-width: 14ch;
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.article-card p,
.article-card li {
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.62;
}

.article-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.article-cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.article-cta p {
  margin: 8px 0 0;
  font-size: 14px;
}

.article-related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.article-related a {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 14px;
}

.article-related span {
  color: var(--muted);
  font-size: 13px;
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 70px);
  padding-top: clamp(46px, 7vw, 88px);
  padding-bottom: clamp(46px, 7vw, 88px);
  background: #eef5ff;
}

.newsletter-form,
.search-box {
  display: grid;
  gap: 10px;
}

.newsletter-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-points li {
  border: 1px solid rgba(51, 61, 49, 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--store-charcoal);
  font-size: 13px;
  font-weight: 700;
}

.search-box {
  min-width: min(360px, 100%);
  grid-template-columns: minmax(160px, 1fr) auto;
}

.policy-page,
.admin-page {
  padding-top: clamp(42px, 7vw, 96px);
  padding-bottom: clamp(42px, 7vw, 96px);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.policy-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  background: var(--panel);
}

.admin-page pre {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--panel);
  font-size: 12px;
  line-height: 1.45;
}

.admin-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.admin-page h1 {
  max-width: none;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.admin-page h2 {
  max-width: none;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.date-range-control {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  margin: -6px 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 12px;
}

.date-range-control label {
  display: grid;
  gap: 5px;
  min-width: 132px;
}

.date-range-control span,
.date-range-control small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.date-range-control select,
.date-range-control input,
.date-range-control button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 10px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.date-range-control button {
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.date-range-control small {
  padding: 10px 2px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-live {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.88));
  padding: clamp(16px, 2vw, 22px);
  box-shadow: var(--shadow-sm);
}

.live-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.live-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(45, 125, 70, 0.12);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.live-metric {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 14px;
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 8px;
}

.live-metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--blue);
}

.live-metric.cart::before {
  background: var(--amber);
}

.live-metric.checkout::before {
  background: #2f6f9f;
}

.live-metric.paid::before {
  background: var(--green);
}

.live-metric span,
.live-metric small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-metric strong {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.94;
  font-variant-numeric: tabular-nums;
}

.live-funnel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.live-stage {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.live-stage span,
.live-stage strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-stage strong {
  color: var(--ink);
  text-align: right;
}

.live-stage div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
}

.live-stage i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.live-recent {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.live-recent strong {
  margin-right: 4px;
  font-size: 13px;
}

.live-recent span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 10px;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.live-recent b {
  color: var(--ink);
}

.admin-metric {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px;
  min-height: 120px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.admin-metric span,
.admin-metric small {
  color: var(--muted);
}

.admin-metric strong {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.admin-section {
  margin-top: 22px;
}

.section-head.compact {
  margin-bottom: 14px;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table-wide {
  min-width: 1180px;
}

.admin-table-tight {
  min-width: 980px;
}

.admin-pill {
  display: inline-flex;
  background: #eef5ff;
  color: #165ca8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-traffic-board {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(260px, 0.58fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  padding: clamp(16px, 2vw, 22px);
}

.admin-panel-wide {
  min-width: 0;
}

.admin-panel-compact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.admin-subtle,
.cell-note {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.source-list {
  display: grid;
  gap: 10px;
}

.source-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px 15px;
  background: var(--panel-soft);
  animation: admin-rise 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--index) * 45ms);
}

.source-item-main {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.source-item-main strong,
.admin-snapshot strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
}

.source-item-main small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.source-item-metrics {
  display: grid;
  justify-items: end;
  gap: 3px;
  font-variant-numeric: tabular-nums;
}

.source-item-metrics span {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.source-item-metrics small {
  color: var(--muted);
}

.source-bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
}

.source-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.source-badge {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: #0b5cad;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-snapshot {
  display: grid;
  gap: 10px;
}

.admin-snapshot div {
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.admin-snapshot div:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-snapshot span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mono,
.machine-code {
  font-family: ui-monospace, "SFMono-Regular", SFMono-Regular, Menlo, Consolas, monospace;
  font-variant-numeric: tabular-nums;
}

.machine-code {
  display: inline-block;
  max-width: 220px;
  overflow-wrap: anywhere;
}

.admin-empty {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
}

@keyframes admin-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.72);
    opacity: 0.62;
  }
}

.admin-raw {
  margin-top: 28px;
}

.admin-raw summary {
  cursor: pointer;
  color: var(--muted);
  margin-bottom: 10px;
}

body.admin-body {
  --admin-bg: #f6f7f9;
  --admin-panel: rgba(255, 255, 255, 0.88);
  --admin-border: rgba(32, 37, 44, 0.10);
  --admin-border-strong: rgba(32, 37, 44, 0.16);
  --admin-ink: #20242a;
  --admin-muted: #66707d;
  --admin-soft: #eef1f4;
  --admin-accent: #2d7d46;
  --admin-rail: #20242a;
  min-width: 320px;
  max-width: 100vw;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% -12%, rgba(45, 125, 70, 0.14), transparent 32vw),
    linear-gradient(180deg, #fbfcfd 0%, var(--admin-bg) 42%, #f4f6f8 100%);
  color: var(--admin-ink);
}

.admin-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100dvh;
}

.admin-rail {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 24px;
  overflow: auto;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    var(--admin-rail);
  color: rgba(255, 255, 255, 0.88);
}

.rail-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  font-weight: 800;
}

.rail-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: white;
}

.rail-nav {
  display: grid;
  align-content: start;
  gap: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.rail-nav a {
  justify-content: flex-start;
  min-height: 40px;
  border-radius: 12px;
  padding: 0 12px;
}

.rail-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.rail-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rail-card span,
.rail-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.rail-card strong {
  color: white;
  font-size: 36px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.rail-links {
  display: grid;
  gap: 8px;
}

.rail-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

body.admin-body .admin-page {
  width: min(100%, 1540px);
  padding: 28px clamp(20px, 3.2vw, 48px) 80px;
}

body.admin-body .admin-topline {
  position: sticky;
  top: 0;
  z-index: 12;
  margin: 0 0 18px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--admin-border);
  background: rgba(246, 247, 249, 0.86);
  backdrop-filter: saturate(180%) blur(24px);
}

body.admin-body .admin-page h1 {
  font-size: clamp(38px, 4.4vw, 68px);
  letter-spacing: 0;
}

body.admin-body .admin-page h2 {
  font-size: clamp(22px, 2.2vw, 38px);
}

body.admin-body .lede {
  max-width: 78ch;
  margin-top: 12px;
  color: var(--admin-muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

body.admin-body .eyebrow {
  color: var(--admin-accent);
}

body.admin-body .admin-actions .secondary,
body.admin-body .admin-actions .primary {
  min-height: 40px;
  border-radius: 999px;
  padding-inline: 16px;
  box-shadow: none;
}

body.admin-body .admin-live {
  position: relative;
  overflow: hidden;
  gap: 18px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 247, 0.82)),
    var(--admin-panel);
  padding: clamp(20px, 2.6vw, 34px);
  box-shadow: 0 24px 70px rgba(24, 31, 38, 0.10);
}

body.admin-body .admin-live::before {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: min(34vw, 360px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 125, 70, 0.12), transparent 68%);
  pointer-events: none;
}

body.admin-body .live-head,
body.admin-body .live-grid,
body.admin-body .live-funnel,
body.admin-body .live-recent {
  position: relative;
}

body.admin-body .live-grid {
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.admin-body .live-metric {
  min-height: 144px;
  border: 1px solid var(--admin-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease;
}

body.admin-body .live-metric:hover,
body.admin-body .source-item:hover,
body.admin-body .admin-metric:hover {
  transform: translateY(-2px);
  border-color: var(--admin-border-strong);
}

body.admin-body .live-metric::before {
  width: 100%;
  height: 4px;
  inset: 0 0 auto;
}

body.admin-body .live-metric strong {
  font-size: clamp(42px, 5.2vw, 76px);
  color: var(--admin-ink);
}

body.admin-body .live-metric span,
body.admin-body .live-metric small,
body.admin-body .live-stage span,
body.admin-body .live-stage strong,
body.admin-body .admin-metric span,
body.admin-body .admin-metric small {
  color: var(--admin-muted);
}

body.admin-body .live-funnel {
  align-items: end;
  border: 1px solid var(--admin-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  padding: 14px;
}

body.admin-body .live-stage div {
  height: 9px;
  background: rgba(32, 36, 42, 0.09);
}

body.admin-body .live-stage i {
  background: linear-gradient(90deg, #2d7d46, #5f9f72);
}

body.admin-body .live-recent {
  border-top-color: var(--admin-border);
}

body.admin-body .live-recent span,
body.admin-body .proof-row span,
body.admin-body .tag,
body.admin-body .notice,
body.admin-body .admin-pill {
  border-color: var(--admin-border);
  background: rgba(255, 255, 255, 0.72);
}

body.admin-body .admin-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid var(--admin-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(24, 31, 38, 0.06);
}

body.admin-body .admin-metric {
  min-height: 124px;
  border: 0;
  border-right: 1px solid var(--admin-border);
  border-radius: 0;
  background: transparent;
  padding: 18px;
  box-shadow: none;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.admin-body .admin-metric:last-child {
  border-right: 0;
}

body.admin-body .admin-metric strong {
  font-size: clamp(26px, 2.9vw, 44px);
  font-variant-numeric: tabular-nums;
}

body.admin-body .admin-traffic-board {
  grid-template-columns: minmax(0, 1.46fr) minmax(300px, 0.54fr);
  gap: 18px;
  margin-top: 0;
}

body.admin-body .admin-panel,
body.admin-body .admin-table-wrap,
body.admin-body .admin-raw pre {
  border: 1px solid var(--admin-border);
  border-radius: 24px;
  background: var(--admin-panel);
  box-shadow: 0 18px 55px rgba(24, 31, 38, 0.06);
}

body.admin-body .admin-panel {
  padding: clamp(18px, 2vw, 26px);
}

body.admin-body .source-list {
  gap: 11px;
}

body.admin-body .source-item {
  border-color: var(--admin-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  padding: 15px 16px 18px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease;
}

body.admin-body .source-badge {
  border-color: rgba(45, 125, 70, 0.20);
  background: rgba(45, 125, 70, 0.09);
  color: #256d3c;
}

body.admin-body .source-bar i {
  background: var(--admin-accent);
}

body.admin-body .admin-snapshot div {
  border-top-color: var(--admin-border);
}

body.admin-body .admin-section {
  margin-top: 22px;
}

body.admin-body .section-head.compact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 12px;
}

body.admin-body .admin-table-wrap {
  border-radius: 22px;
}

body.admin-body .admin-scroll-window {
  max-height: 336px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

body.admin-body .admin-scroll-list {
  max-height: 388px;
  overflow: auto;
  padding-right: 4px;
  overscroll-behavior: contain;
}

body.admin-body .admin-table {
  font-size: 13px;
}

body.admin-body .admin-table th,
body.admin-body .admin-table td {
  border-bottom-color: var(--admin-border);
  padding: 13px 16px;
  max-width: 320px;
  overflow-wrap: anywhere;
}

body.admin-body .admin-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(248, 249, 250, 0.96);
  color: var(--admin-muted);
}

body.admin-body .admin-sort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

body.admin-body .admin-sort::after {
  content: "\2195";
  color: rgba(98, 107, 116, 0.72);
  font-size: 12px;
}

body.admin-body .admin-sort[aria-sort="descending"]::after {
  content: "\2193";
  color: var(--admin-ink);
}

body.admin-body .admin-sort[aria-sort="ascending"]::after {
  content: "\2191";
  color: var(--admin-ink);
}

.country-cell {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.country-flag {
  min-width: 22px;
  font-size: 18px;
  line-height: 1;
}

.country-cell small {
  color: var(--admin-muted);
  font-size: 11px;
  font-weight: 800;
}

body.admin-body .admin-table tbody tr {
  transition: background 160ms ease;
}

body.admin-body .admin-table tbody tr:hover {
  background: rgba(45, 125, 70, 0.045);
}

.product-cell {
  display: grid;
  gap: 4px;
}

.product-cell strong {
  color: var(--admin-ink);
  font-size: 13px;
}

.product-cell small {
  color: var(--admin-muted);
  font-size: 12px;
}

.marketing-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--admin-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 5px 9px;
  color: var(--admin-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.marketing-status.good {
  border-color: rgba(45, 125, 70, 0.24);
  background: rgba(45, 125, 70, 0.11);
  color: #256d3c;
}

.marketing-status.warn {
  border-color: rgba(166, 105, 18, 0.24);
  background: rgba(166, 105, 18, 0.11);
  color: #8a5a16;
}

.marketing-status.bad {
  border-color: rgba(166, 46, 46, 0.22);
  background: rgba(166, 46, 46, 0.09);
  color: #9b2f2f;
}

.marketing-status.neutral {
  border-color: rgba(48, 74, 94, 0.16);
  background: rgba(48, 74, 94, 0.07);
  color: #4f6273;
}

.marketing-body .admin-table td:last-child {
  min-width: 180px;
}

body.admin-body.dashboard-line {
  --admin-bg: #07100f;
  --admin-panel: #131d1d;
  --admin-border: rgba(168, 204, 190, 0.15);
  --admin-border-strong: rgba(168, 204, 190, 0.25);
  --admin-ink: #e8f2ee;
  --admin-muted: #8ea39b;
  --admin-soft: #0e1717;
  --admin-accent: #29c49a;
  --admin-rail: #091211;
  background:
    radial-gradient(circle at 18% -10%, rgba(41, 196, 154, 0.10), transparent 28vw),
    linear-gradient(180deg, #07100f 0%, #091111 54%, #050909 100%);
  color: var(--admin-ink);
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
}

body.admin-body.dashboard-line .admin-rail,
body.admin-body.dashboard-line .admin-topline {
  background: rgba(7, 16, 15, 0.92);
  border-color: var(--admin-border);
}

body.admin-body.dashboard-line .admin-topline {
  backdrop-filter: saturate(150%) blur(18px);
}

body.admin-body.dashboard-line .rail-brand,
body.admin-body.dashboard-line .admin-page h1,
body.admin-body.dashboard-line .admin-page h2,
body.admin-body.dashboard-line .admin-page h3,
body.admin-body.dashboard-line .admin-metric strong,
body.admin-body.dashboard-line .live-metric strong,
body.admin-body.dashboard-line .kpi-card strong,
body.admin-body.dashboard-line .admin-table td {
  color: var(--admin-ink);
}

body.admin-body.dashboard-line .eyebrow,
body.admin-body.dashboard-line .admin-subtle,
body.admin-body.dashboard-line .lede,
body.admin-body.dashboard-line .admin-metric span,
body.admin-body.dashboard-line .admin-metric small,
body.admin-body.dashboard-line .live-metric span,
body.admin-body.dashboard-line .live-metric small,
body.admin-body.dashboard-line .admin-table th,
body.admin-body.dashboard-line .cell-note,
body.admin-body.dashboard-line .admin-explain {
  color: var(--admin-muted);
}

body.admin-body.dashboard-line .eyebrow,
body.admin-body.dashboard-line .admin-table th,
body.admin-body.dashboard-line .section-head .eyebrow,
body.admin-body.dashboard-line .kpi-card > span,
body.admin-body.dashboard-line .kpi-card div span {
  letter-spacing: 0.18em;
}

body.admin-body.dashboard-line .admin-kpi-line {
  display: grid;
  grid-template-columns: minmax(320px, 2.05fr) repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

body.admin-body.dashboard-line .kpi-card,
body.admin-body.dashboard-line .admin-live,
body.admin-body.dashboard-line .admin-panel,
body.admin-body.dashboard-line .admin-table-wrap,
body.admin-body.dashboard-line .admin-raw pre,
body.admin-body.dashboard-line .admin-grid,
body.admin-body.dashboard-line .admin-mini-panel,
body.admin-body.dashboard-line .rail-card,
body.admin-body.dashboard-line .live-metric,
body.admin-body.dashboard-line .live-funnel {
  border: 1px solid var(--admin-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.005)),
    var(--admin-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 54px rgba(0, 0, 0, 0.24);
}

body.admin-body.dashboard-line .kpi-card {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 14px;
  border-radius: 8px;
  padding: 18px;
}

body.admin-body.dashboard-line .kpi-card > span,
body.admin-body.dashboard-line .kpi-card div span {
  color: var(--admin-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

body.admin-body.dashboard-line .kpi-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

body.admin-body.dashboard-line .kpi-card small {
  border: 1px solid rgba(41, 196, 154, 0.35);
  border-radius: 6px;
  padding: 3px 7px;
  color: #35d5aa;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

body.admin-body.dashboard-line .kpi-card strong {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

body.admin-body.dashboard-line .kpi-card:not(.kpi-primary) strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

body.admin-body.dashboard-line .kpi-card p {
  margin: 0;
  color: var(--admin-muted);
  font-size: 12px;
  line-height: 1.45;
}

body.admin-body.dashboard-line .kpi-primary {
  border-color: rgba(212, 160, 40, 0.52);
  background:
    linear-gradient(135deg, rgba(212, 160, 40, 0.10), rgba(41, 196, 154, 0.035)),
    var(--admin-panel);
}

body.admin-body.dashboard-line .kpi-primary div span {
  color: #d8a836;
}

body.admin-body.dashboard-line .kpi-primary strong {
  color: #f4f7ef;
}

body.admin-body.dashboard-line .kpi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 2px;
}

body.admin-body.dashboard-line .kpi-chips span {
  border: 1px solid rgba(168, 204, 190, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  padding: 5px 7px;
  color: #d7e8df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

body.admin-body.dashboard-line .admin-alert {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 0 0 16px;
  border: 1px solid rgba(212, 160, 40, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212, 160, 40, 0.12), rgba(212, 160, 40, 0.035));
  padding: 13px 16px;
  color: var(--admin-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 16px 44px rgba(0, 0, 0, 0.20);
}

body.admin-body.dashboard-line .admin-alert strong {
  color: #f4f7ef;
  font-size: 13px;
  white-space: nowrap;
}

body.admin-body.dashboard-line .admin-alert span {
  color: var(--admin-muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

body.admin-body.dashboard-line .admin-grid {
  border-radius: 8px;
  background: transparent;
}

body.admin-body.dashboard-line .admin-metric,
body.admin-body.dashboard-line .admin-metric:last-child {
  border-color: var(--admin-border);
}

body.admin-body.dashboard-line .admin-live,
body.admin-body.dashboard-line .admin-panel,
body.admin-body.dashboard-line .admin-table-wrap,
body.admin-body.dashboard-line .admin-raw pre {
  border-radius: 8px;
}

body.admin-body.dashboard-line .admin-live::before {
  display: none;
}

body.admin-body.dashboard-line .live-metric,
body.admin-body.dashboard-line .source-item,
body.admin-body.dashboard-line .admin-pill,
body.admin-body.dashboard-line .marketing-status,
body.admin-body.dashboard-line .mini-panel-head span {
  border-color: var(--admin-border);
  background: rgba(255, 255, 255, 0.035);
}

body.admin-body.dashboard-line .admin-table th {
  background: #111b1b;
}

body.admin-body.dashboard-line .admin-table td,
body.admin-body.dashboard-line .admin-table th {
  border-bottom-color: var(--admin-border);
}

body.admin-body.dashboard-line .admin-table tbody tr:hover {
  background: rgba(41, 196, 154, 0.055);
}

body.admin-body.dashboard-line .source-badge {
  border-color: rgba(41, 196, 154, 0.22);
  background: rgba(41, 196, 154, 0.09);
  color: #59d6b7;
}

body.admin-body.dashboard-line .source-item strong,
body.admin-body.dashboard-line .admin-snapshot strong,
body.admin-body.dashboard-line .product-cell strong,
body.admin-body.dashboard-line .mini-panel-head strong,
body.admin-body.dashboard-line .admin-raw summary {
  color: var(--admin-ink);
}

body.admin-body.dashboard-line .primary {
  background: #29c49a;
  color: #07100f;
}

body.admin-body.dashboard-line .date-range-control {
  border-color: var(--admin-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.005)),
    var(--admin-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 14px 40px rgba(0, 0, 0, 0.20);
}

body.admin-body.dashboard-line .date-range-control span,
body.admin-body.dashboard-line .date-range-control small {
  color: var(--admin-muted);
}

body.admin-body.dashboard-line .date-range-control select,
body.admin-body.dashboard-line .date-range-control input,
body.admin-body.dashboard-line .date-range-control button {
  border-color: var(--admin-border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--admin-ink);
}

body.admin-body.dashboard-line .date-range-control button {
  background: #29c49a;
  color: #07100f;
}

body.admin-body.dashboard-line .secondary,
body.admin-body.dashboard-line .rail-links a,
body.admin-body.dashboard-line .admin-raw summary {
  border-color: var(--admin-border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--admin-ink);
}

body.admin-body.dashboard-line .rail-nav a:hover,
body.admin-body.dashboard-line .rail-links a:hover,
body.admin-body.dashboard-line .secondary:hover {
  background: rgba(41, 196, 154, 0.10);
  color: #f4f7ef;
}

@media (max-width: 1180px) {
  body.admin-body.dashboard-line .admin-kpi-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.admin-body.dashboard-line .kpi-primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body.admin-body.dashboard-line .admin-kpi-line {
    grid-template-columns: 1fr;
  }

  body.admin-body.dashboard-line .admin-alert {
    display: block;
  }

  body.admin-body.dashboard-line .admin-alert span {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  body.admin-body.dashboard-line .kpi-card {
    min-height: 0;
  }
}

.admin-explain {
  max-width: 980px;
  margin: -3px 0 14px;
  color: var(--admin-muted);
  font-size: 13px;
  line-height: 1.55;
}

.admin-split-tables {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.admin-mini-panel {
  min-width: 0;
}

.mini-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--admin-ink);
}

.mini-panel-head span {
  border: 1px solid var(--admin-border);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--admin-muted);
  font-size: 12px;
  font-weight: 800;
}

body.admin-body .admin-raw {
  margin-top: 22px;
}

body.admin-body .admin-raw summary {
  width: fit-content;
  border: 1px solid var(--admin-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 13px;
  color: var(--admin-muted);
  font-size: 12px;
  font-weight: 800;
}

.cart-drawer,
.email-modal,
.embedded-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(29, 29, 31, 0.38);
  backdrop-filter: blur(10px);
}

.cart-drawer.open,
.email-modal:not([hidden]),
.embedded-checkout-modal:not([hidden]) {
  display: block;
}

.cart-panel,
.email-panel,
.embedded-checkout-panel {
  width: min(440px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  overflow: auto;
  margin: 12px 12px 12px auto;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.email-panel {
  margin: 8vh auto;
}

.embedded-checkout-panel {
  width: min(860px, calc(100% - 24px));
}

.cart-close {
  float: right;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 8px 12px;
  cursor: pointer;
}

.cart-item {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.cart-item div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cart-item button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 7px 10px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .admin-layout {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
  }

  .admin-rail {
    position: sticky;
    top: 0;
    z-index: 30;
    height: auto;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    min-width: 0;
    max-width: 100vw;
    padding: 10px 14px;
  }

  .rail-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .rail-nav::-webkit-scrollbar,
  .rail-links::-webkit-scrollbar {
    display: none;
  }

  .rail-nav a {
    flex: 0 0 auto;
    min-height: 34px;
    white-space: nowrap;
  }

  .rail-card {
    display: none;
  }

  .rail-links {
    display: flex;
    flex-wrap: nowrap;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .rail-links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  body.admin-body .admin-page {
    padding: 22px 20px 64px;
    min-width: 0;
  }

  body.admin-body .admin-topline {
    position: static;
  }

  body.admin-body .admin-page h1,
  body.admin-body .admin-page h2,
  body.admin-body .lede,
  body.admin-body .eyebrow {
    max-width: none;
  }

  body.admin-body .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.admin-body .admin-metric:nth-child(2n) {
    border-right: 0;
  }

  body.admin-body .admin-metric:nth-child(n + 3) {
    border-top: 1px solid var(--admin-border);
  }

  body.admin-body .admin-traffic-board,
  body.admin-body .live-grid,
  body.admin-body .live-funnel {
    grid-template-columns: 1fr;
  }

  .hero,
  .category-hero,
  .blog-hero,
  .article-layout,
  .fit-grid,
  .checkout-band,
  .newsletter-band,
  .split {
    grid-template-columns: 1fr;
  }

  .hero,
  .category-hero,
  .blog-hero {
    min-height: 0;
  }

  .hero-copy,
  .category-copy {
    max-width: none;
  }

  h1,
  h2 {
    max-width: 16ch;
  }

  .lede,
  .hero-actions,
  .proof-row,
  .eyebrow {
    max-width: 38ch;
  }

  .category-stage {
    min-height: 360px;
  }

  .category-stage img {
    height: 100%;
    min-height: 360px;
  }

  .kit-grid,
  .commerce-grid,
  .subcategory-grid,
  .blog-list-grid,
  .catalog-layout .commerce-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-hero,
  .article-card,
  .article-aside {
    grid-column: 1;
  }

  .article-aside {
    position: static;
    grid-row: auto;
    order: 2;
  }

  .current-drop,
  .catalog-layout,
  .catalog-sidebar {
    grid-template-columns: 1fr;
  }

  .commerce-card.feature,
  .product-card.focus {
    grid-column: span 2;
  }

  .admin-topline {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-traffic-board {
    grid-template-columns: 1fr;
  }

  .live-grid,
  .live-funnel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .admin-rail {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .rail-brand {
    justify-content: center;
  }

  .rail-links {
    justify-content: flex-start;
  }

  body.admin-body .admin-page {
    padding-inline: 14px;
  }

  body.admin-body .admin-topline {
    gap: 14px;
  }

  body.admin-body .section-head.compact {
    display: grid;
    justify-content: stretch;
    align-items: start;
    text-align: left;
  }

  body.admin-body .admin-actions {
    width: 100%;
  }

  body.admin-body .admin-actions a {
    flex: 1 1 auto;
  }

  body.admin-body .admin-grid {
    grid-template-columns: 1fr;
  }

  body.admin-body .admin-metric {
    border-right: 0;
    border-top: 1px solid var(--admin-border);
  }

  body.admin-body .admin-metric:first-child {
    border-top: 0;
  }

  body.admin-body .admin-live,
  body.admin-body .admin-panel,
  body.admin-body .admin-table-wrap {
    border-radius: 18px;
  }

  .admin-split-tables {
    grid-template-columns: 1fr;
  }

  .topbar {
    gap: 10px;
    padding: 10px 14px;
    overflow: hidden;
  }

  .mark {
    flex: 0 0 auto;
    gap: 8px;
    font-size: 17px;
  }

  .mark img {
    width: 28px;
    height: 28px;
  }

  nav {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 4px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a,
  .cart-link {
    min-height: 34px;
    padding-inline: 11px;
  }

  .hero,
  .category-hero,
  .fit-band,
  .checkout-band,
  .kit-section,
  .category-section,
  .newsletter-band,
  .policy-page,
  .admin-page {
    padding-inline: 20px;
  }

  .hero {
    padding-top: 30px;
    gap: 26px;
  }

  h1,
  h2 {
    max-width: none;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(35px, 11vw, 46px);
    line-height: 1.02;
  }

  .category-hero h1 {
    max-width: 10.8ch;
    font-size: clamp(36px, 11.5vw, 48px);
  }

  h2 {
    font-size: clamp(29px, 8.5vw, 38px);
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 1 / 0.95;
  }

  .category-stage {
    min-height: 0;
  }

  .category-stage img {
    min-height: 0;
    aspect-ratio: 1 / 0.70;
  }

  .hero-feature {
    position: static;
    width: 100%;
    border-radius: 0;
    background: var(--dark);
    box-shadow: none;
  }

  .category-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .category-benefits span {
    min-height: 58px;
    font-size: 12px;
  }

  .category-benefits strong {
    font-size: 18px;
  }

  .retail nav a[href="/shipping"],
  .retail nav a[href="/refund"],
  .retail nav a[href$="/shipping"],
  .retail nav a[href$="/refund"],
  nav a[href="#fit"],
  nav a[href="#kit"] {
    display: none;
  }

  .primary,
  .secondary {
    width: 100%;
  }

  .proof-row span {
    width: 100%;
  }

  .fit-list,
  .gallery,
  .kit-grid,
  .commerce-grid,
  .subcategory-grid,
  .catalog-layout .commerce-grid,
  .blog-list-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-related,
  .article-cta {
    grid-template-columns: 1fr;
  }

  .article-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .current-drop-copy {
    padding: 22px 20px;
  }

  .current-drop-row {
    grid-auto-columns: minmax(112px, 35vw);
  }

  .current-drop-all {
    min-height: 58px;
  }

  .gallery .wide,
  .gallery img {
    height: auto;
    min-height: 0;
  }

  .product-card.focus,
  .commerce-card.feature {
    grid-column: auto;
  }

  .commerce-card.feature img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-box,
  .catalog-sidebar .search-box > div {
    grid-template-columns: 1fr;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-metric {
    min-height: 104px;
  }

  .live-head {
    flex-direction: column;
  }

  .live-grid,
  .live-funnel {
    grid-template-columns: 1fr;
  }

  .live-recent {
    align-items: stretch;
    flex-direction: column;
  }

  .source-item {
    grid-template-columns: 1fr;
  }

  .source-item-metrics {
    justify-items: start;
  }

  .machine-code {
    max-width: 180px;
  }
}

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

/* Field Stow final storefront direction from 16:9 design deck. */
body:not(.admin-body) {
  --store-ink: #24241f;
  --store-muted: #67665e;
  --store-paper: #f4f1ea;
  --store-panel: #fffdf8;
  --store-soft: #e8eee2;
  --store-olive: #4f6f45;
  --store-olive-dark: #2f4d30;
  --store-sage: #879b79;
  --store-charcoal: #20231e;
  --store-line: rgba(36, 36, 31, 0.12);
  --store-shadow: 0 22px 70px rgba(44, 48, 38, 0.13);
  --store-soft-shadow: 0 12px 34px rgba(44, 48, 38, 0.08);
  background:
    linear-gradient(180deg, rgba(244, 241, 234, 0.92), rgba(236, 239, 230, 0.7)),
    var(--store-paper);
  color: var(--store-ink);
}

body:not(.admin-body) main {
  background: var(--store-paper);
}

body:not(.admin-body) .topbar.retail {
  min-height: 72px;
  border-bottom: 1px solid rgba(36, 36, 31, 0.08);
  background: rgba(250, 248, 242, 0.82);
  box-shadow: 0 8px 28px rgba(43, 47, 37, 0.04);
}

body:not(.admin-body) .mark {
  color: var(--store-ink);
  font-weight: 800;
}

body:not(.admin-body) .mark img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: none;
}

body:not(.admin-body) nav {
  color: var(--store-muted);
}

body:not(.admin-body) nav a,
body:not(.admin-body) .cart-link {
  min-height: 40px;
  padding-inline: 15px;
}

body:not(.admin-body) nav a:hover {
  background: rgba(79, 111, 69, 0.10);
  color: var(--store-ink);
}

body:not(.admin-body) nav .active,
body:not(.admin-body) .cart-link,
body:not(.admin-body) .primary {
  background: var(--store-olive);
  color: white;
  box-shadow: 0 12px 26px rgba(47, 77, 48, 0.18);
}

body:not(.admin-body) .cart-link {
  gap: 8px;
  border: 1px solid rgba(47, 77, 48, 0.12);
}

body:not(.admin-body) .cart-link span {
  display: inline-grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
}

body:not(.admin-body) .primary:hover {
  background: var(--store-olive-dark);
  box-shadow: 0 16px 34px rgba(47, 77, 48, 0.22);
}

body:not(.admin-body) .secondary {
  border-color: rgba(36, 36, 31, 0.09);
  background: rgba(255, 253, 248, 0.72);
  color: var(--store-ink);
}

body:not(.admin-body) .secondary:hover {
  background: var(--store-soft);
}

body:not(.admin-body) .eyebrow {
  color: var(--store-olive-dark);
}

body:not(.admin-body) .tag,
body:not(.admin-body) .proof-row span,
body:not(.admin-body) .notice {
  border-color: var(--store-line);
  background: rgba(255, 253, 248, 0.78);
  color: var(--store-muted);
}

body:not(.admin-body) .category-hero {
  position: relative;
  min-height: min(860px, calc(100dvh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  padding-top: clamp(44px, 6vw, 86px);
  padding-bottom: clamp(92px, 11vw, 148px);
  border-bottom: 0;
  isolation: isolate;
}

body:not(.admin-body) .category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(244, 241, 234, 0.86) 0%, rgba(244, 241, 234, 0.54) 38%, rgba(36, 36, 31, 0.08) 100%),
    linear-gradient(0deg, rgba(36, 36, 31, 0.38), rgba(36, 36, 31, 0.04) 46%);
  pointer-events: none;
}

body:not(.admin-body) .category-copy {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--store-shadow);
  backdrop-filter: saturate(150%) blur(22px);
}

body:not(.admin-body) .category-hero h1 {
  max-width: 11ch;
  color: var(--store-ink);
  font-size: clamp(48px, 6.2vw, 86px);
}

body:not(.admin-body) .category-copy .lede {
  color: var(--store-muted);
}

body:not(.admin-body) .category-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: var(--store-charcoal);
  box-shadow: none;
}

body:not(.admin-body) .category-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
}

body:not(.admin-body) .hero-feature {
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: clamp(34px, 5vw, 64px);
  width: min(430px, calc(100% - 48px));
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 4px 16px;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.30);
  border-radius: 18px;
  padding: 14px;
  background: rgba(32, 35, 30, 0.76);
}

body:not(.admin-body) .hero-feature img {
  grid-row: 1 / span 3;
  width: 88px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
}

body:not(.admin-body) .hero-feature span,
body:not(.admin-body) .hero-feature small {
  color: rgba(255, 253, 248, 0.72);
}

body:not(.admin-body) .hero-feature strong {
  font-size: 22px;
}

body:not(.admin-body) .category-benefits {
  gap: 10px;
  margin-top: 26px;
}

body:not(.admin-body) .category-benefits span {
  min-height: 62px;
  border: 1px solid rgba(36, 36, 31, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  padding: 10px 12px;
}

body:not(.admin-body) .current-drop {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(-70px, -5vw, -38px) auto 0;
  overflow: hidden;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 3fr) auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--store-shadow);
}

body:not(.admin-body) .current-drop-copy,
body:not(.admin-body) .current-drop-item {
  border-color: rgba(36, 36, 31, 0.09);
}

body:not(.admin-body) .current-drop-copy h2 {
  color: var(--store-ink);
}

body:not(.admin-body) .current-drop-copy p:not(.eyebrow) {
  color: var(--store-muted);
}

body:not(.admin-body) .current-drop-item {
  min-height: 156px;
}

body:not(.admin-body) .current-drop-item:hover {
  background: var(--store-soft);
}

body:not(.admin-body) .current-drop-item img {
  width: 92px;
  height: 82px;
  border-radius: 14px;
  background: #ebe7db;
}

body:not(.admin-body) .current-drop-all,
body:not(.admin-body) .commerce-card .card-bottom a,
body:not(.admin-body) .blog-grid a,
body:not(.admin-body) .blog-card .card-bottom a {
  color: var(--store-olive-dark);
}

body:not(.admin-body) .category-section,
body:not(.admin-body) .kit-section {
  background: var(--store-paper);
}

body:not(.admin-body) .section-head {
  margin-bottom: clamp(22px, 3vw, 36px);
}

body:not(.admin-body) .section-head h2 {
  max-width: 18ch;
}

body:not(.admin-body) .catalog-section {
  padding-top: clamp(70px, 9vw, 122px);
}

body:not(.admin-body) .occasion-builder {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(36, 36, 31, 0.1);
  border-radius: clamp(22px, 2vw, 30px);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(242, 237, 227, 0.82));
  box-shadow: 0 28px 70px -38px rgba(36, 36, 31, 0.34);
  padding: clamp(24px, 4vw, 58px);
  max-width: 100%;
}

body:not(.admin-body) .occasion-intro {
  display: grid;
  gap: 10px;
}

body:not(.admin-body) .occasion-intro h2 {
  margin: 0;
  max-width: 14ch;
  color: var(--store-ink);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

body:not(.admin-body) .occasion-intro p {
  max-width: 66ch;
  margin: 0;
  color: var(--store-muted);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.45;
}

body:not(.admin-body) .occasion-intro > span {
  width: fit-content;
  border: 1px solid var(--store-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 8px 12px;
  color: var(--store-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

body:not(.admin-body) .occasion-panel {
  overflow: hidden;
  border: 1px solid rgba(36, 36, 31, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
}

body:not(.admin-body) .occasion-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 3fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  padding: clamp(20px, 3vw, 34px);
}

body:not(.admin-body) .occasion-row + .occasion-row {
  border-top: 1px solid rgba(36, 36, 31, 0.1);
}

body:not(.admin-body) .occasion-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 14px;
  align-items: start;
}

body:not(.admin-body) .occasion-step > span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #e5decf;
  color: #625b4f;
  font-size: 18px;
  font-weight: 900;
}

body:not(.admin-body) .occasion-step strong {
  color: var(--store-ink);
  font-size: clamp(16px, 1.5vw, 19px);
}

body:not(.admin-body) .occasion-step small {
  color: var(--store-muted);
  line-height: 1.45;
}

body:not(.admin-body) .occasion-tabs,
body:not(.admin-body) .occasion-needs {
  display: grid;
  gap: 0;
}

body:not(.admin-body) .occasion-tabs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(36, 36, 31, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.75);
}

body:not(.admin-body) .occasion-tab {
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-right: 1px solid rgba(36, 36, 31, 0.12);
  background: transparent;
  padding: 8px 4px;
  color: var(--store-ink);
  font-family: inherit;
  font-size: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

body:not(.admin-body) .occasion-tab:last-child {
  border-right: 0;
}

body:not(.admin-body) .occasion-tab.active {
  background: #191917;
  color: #fffdf8;
}

body:not(.admin-body) .occasion-tab span,
body:not(.admin-body) .occasion-need span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

body:not(.admin-body) .occasion-needs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body:not(.admin-body) .occasion-need {
  position: relative;
  min-height: 120px;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 1px solid rgba(36, 36, 31, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.7);
  padding: 14px 10px;
  color: var(--store-ink);
  text-align: center;
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

body:not(.admin-body) .occasion-need.active {
  border-color: rgba(105, 91, 68, 0.52);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: inset 0 0 0 1px rgba(105, 91, 68, 0.16);
}

body:not(.admin-body) .occasion-need i {
  position: absolute;
  top: 11px;
  right: 11px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(105, 91, 68, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
}

body:not(.admin-body) .occasion-need.active i {
  border-color: #191917;
  background: #191917;
  color: #fffdf8;
}

body:not(.admin-body) .occasion-tip,
body:not(.admin-body) .occasion-secure {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  color: var(--store-muted);
  font-size: 13px;
  font-weight: 700;
}

body:not(.admin-body) .occasion-selection {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

body:not(.admin-body) .occasion-product-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

body:not(.admin-body) .occasion-product {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  overflow: hidden;
  min-height: 120px;
  border: 1px solid rgba(36, 36, 31, 0.1);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--store-ink);
}

body:not(.admin-body) .occasion-product img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  background: var(--store-soft);
}

body:not(.admin-body) .occasion-product span {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 14px;
}

body:not(.admin-body) .occasion-product strong {
  font-size: 14px;
  line-height: 1.25;
}

body:not(.admin-body) .occasion-product small {
  color: var(--store-muted);
  line-height: 1.4;
}

body:not(.admin-body) .occasion-product b {
  color: var(--store-ink);
  font-size: 14px;
}

body:not(.admin-body) .occasion-cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  background: #191917;
  padding: 0 24px;
  color: #fffdf8;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 18px 32px -24px rgba(0, 0, 0, 0.6);
}

body:not(.admin-body) .occasion-secure {
  justify-self: end;
  justify-content: end;
  margin-top: -4px;
  max-width: 260px;
  text-align: right;
}

body:not(.admin-body) .occasion-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

body:not(.admin-body) .occasion-trust span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 14px;
  align-items: center;
  border-right: 1px solid rgba(36, 36, 31, 0.12);
  padding: 8px clamp(14px, 2vw, 26px);
}

body:not(.admin-body) .occasion-trust span:last-child {
  border-right: 0;
}

body:not(.admin-body) .occasion-trust svg {
  grid-row: span 2;
}

body:not(.admin-body) .occasion-trust strong {
  color: var(--store-ink);
  font-size: 13px;
}

body:not(.admin-body) .occasion-trust small {
  color: var(--store-muted);
  line-height: 1.35;
}

body:not(.admin-body) .occasion-builder svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body:not(.admin-body) .catalog-sidebar {
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr) minmax(260px, 0.95fr);
  gap: 18px;
  border: 1px solid var(--store-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.74);
  padding: 18px;
  box-shadow: var(--store-soft-shadow);
}

body:not(.admin-body) .catalog-sidebar .search-box label,
body:not(.admin-body) .sidebar-title {
  color: var(--store-ink);
}

body:not(.admin-body) .sidebar-group a {
  border-color: var(--store-line);
  background: rgba(255, 255, 255, 0.54);
}

body:not(.admin-body) .catalog-layout .commerce-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

body:not(.admin-body) .commerce-card,
body:not(.admin-body) .product-card,
body:not(.admin-body) .blog-card,
body:not(.admin-body) .blog-grid article,
body:not(.admin-body) .subcategory-grid a,
body:not(.admin-body) .article-aside,
body:not(.admin-body) .article-cta,
body:not(.admin-body) .article-related a,
body:not(.admin-body) .checkout-panel,
body:not(.admin-body) .newsletter-form {
  border-color: var(--store-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--store-soft-shadow);
}

body:not(.admin-body) .commerce-card {
  animation: none;
}

body:not(.admin-body) .commerce-card.feature {
  grid-column: auto;
}

body:not(.admin-body) .commerce-card:hover {
  border-color: rgba(79, 111, 69, 0.28);
  box-shadow: var(--store-shadow);
}

body:not(.admin-body) .commerce-card img,
body:not(.admin-body) .commerce-card.feature img {
  aspect-ratio: 1.24 / 1;
  min-height: 0;
  object-fit: cover;
  background: var(--store-soft);
}

body:not(.admin-body) .commerce-media,
body:not(.admin-body) .hero-media img,
body:not(.admin-body) .category-stage img,
body:not(.admin-body) .current-drop-item img {
  background: var(--store-soft);
}

body:not(.admin-body) .commerce-card > div {
  gap: 11px;
  padding: 18px;
}

body:not(.admin-body) .commerce-card button,
body:not(.admin-body) .product-card button {
  background: var(--store-olive);
}

body:not(.admin-body) .commerce-card p,
body:not(.admin-body) .product-card p,
body:not(.admin-body) .subcategory-grid span,
body:not(.admin-body) .blog-card p,
body:not(.admin-body) .blog-grid p,
body:not(.admin-body) .newsletter-band p,
body:not(.admin-body) .policy-page p {
  color: var(--store-muted);
}

body:not(.admin-body) .split {
  background: #e8eee2;
}

body:not(.admin-body) .subcategory-grid a:hover {
  background: rgba(255, 253, 248, 0.95);
  border-color: rgba(79, 111, 69, 0.25);
}

body:not(.admin-body) .blog-band,
body:not(.admin-body) .fit-band {
  background:
    linear-gradient(135deg, rgba(79, 111, 69, 0.22), rgba(255, 255, 255, 0)),
    var(--store-charcoal);
}

body:not(.admin-body) .blog-band .eyebrow,
body:not(.admin-body) .fit-band .eyebrow {
  color: #c9d8bd;
}

body:not(.admin-body) .blog-grid article {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

body:not(.admin-body) .blog-band .blog-grid article {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.12);
}

body:not(.admin-body) .blog-band .blog-grid p {
  color: rgba(255, 253, 248, 0.68);
}

body:not(.admin-body) .blog-band .blog-grid a {
  color: #b9d8ac;
  font-weight: 750;
}

body:not(.admin-body) .hero {
  min-height: min(860px, calc(100dvh - 72px));
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  background:
    linear-gradient(130deg, rgba(232, 238, 226, 0.9), rgba(244, 241, 234, 0.6) 46%, rgba(255, 253, 248, 0.7)),
    var(--store-paper);
}

body:not(.admin-body) .hero-copy {
  max-width: 650px;
}

body:not(.admin-body) .hero h1 {
  max-width: 12ch;
  font-size: clamp(46px, 5.8vw, 82px);
}

body:not(.admin-body) .hero .lede {
  color: var(--store-muted);
}

body:not(.admin-body) .hero-media {
  min-height: clamp(470px, 56vw, 720px);
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background: #ebe7db;
  box-shadow: var(--store-shadow);
}

body:not(.admin-body) .hero-media::before {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.14), rgba(36, 36, 31, 0.06)),
    radial-gradient(circle at 80% 20%, rgba(135, 155, 121, 0.22), transparent 34%);
}

body:not(.admin-body) .fit-grid {
  grid-template-columns: minmax(0, 0.74fr) minmax(340px, 1.26fr);
}

body:not(.admin-body) .fit-list {
  gap: 14px;
}

body:not(.admin-body) .fit-list li {
  min-height: 148px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

body:not(.admin-body) .gallery {
  gap: 14px;
  padding: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--store-paper);
}

body:not(.admin-body) .gallery img {
  border-radius: 20px;
  box-shadow: var(--store-soft-shadow);
}

body:not(.admin-body) .kit-grid {
  gap: 16px;
}

body:not(.admin-body) .product-card {
  min-height: 282px;
}

body:not(.admin-body) .product-card.focus {
  background:
    linear-gradient(135deg, rgba(232, 238, 226, 0.88), rgba(255, 253, 248, 0.92)),
    var(--store-panel);
}

body:not(.admin-body) .checkout-band {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(232, 238, 226, 0.76)),
    var(--store-paper);
  color: var(--store-ink);
}

body:not(.admin-body) .checkout-band h2 {
  color: var(--store-ink);
}

body:not(.admin-body) .checkout-band p {
  color: var(--store-muted);
}

body:not(.admin-body) .checkout-band .eyebrow {
  color: var(--store-olive-dark);
}

body:not(.admin-body) .checkout-panel {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 253, 248, 0.92);
}

body:not(.admin-body) .checkout-panel select,
body:not(.admin-body) .newsletter-form input,
body:not(.admin-body) .email-panel input,
body:not(.admin-body) .search-box input {
  border-color: var(--store-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

body:not(.admin-body) .checkout-panel select:focus,
body:not(.admin-body) .newsletter-form input:focus,
body:not(.admin-body) .email-panel input:focus,
body:not(.admin-body) .search-box input:focus {
  border-color: rgba(79, 111, 69, 0.56);
  box-shadow: 0 0 0 4px rgba(79, 111, 69, 0.11);
}

body:not(.admin-body) .price-line {
  border-bottom-color: var(--store-line);
}

body:not(.admin-body) .blog-hero {
  min-height: min(760px, calc(100dvh - 72px));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(232, 238, 226, 0.92), rgba(244, 241, 234, 0.72)),
    var(--store-paper);
}

body:not(.admin-body) .blog-hero h1 {
  max-width: 12ch;
}

body:not(.admin-body) .blog-hero-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 14px;
  align-items: stretch;
}

body:not(.admin-body) .blog-feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: var(--store-charcoal);
  box-shadow: var(--store-shadow);
}

body:not(.admin-body) .blog-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 22, 18, 0.76), rgba(20, 22, 18, 0.02) 62%);
}

body:not(.admin-body) .blog-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not(.admin-body) .blog-feature-card .tag,
body:not(.admin-body) .blog-feature-card strong,
body:not(.admin-body) .blog-feature-card small {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
}

body:not(.admin-body) .blog-feature-card .tag {
  top: 20px;
  width: fit-content;
}

body:not(.admin-body) .blog-feature-card strong {
  bottom: 48px;
  color: white;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

body:not(.admin-body) .blog-feature-card small {
  bottom: 22px;
  color: rgba(255, 253, 248, 0.76);
  font-weight: 700;
}

body:not(.admin-body) .blog-hero-panel {
  align-content: end;
  border-color: var(--store-line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--store-soft-shadow);
}

body:not(.admin-body) .blog-hero-panel span {
  color: var(--store-olive-dark);
}

body:not(.admin-body) .blog-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.admin-body) .blog-card img {
  aspect-ratio: 1.35 / 1;
}

body:not(.admin-body) .newsletter-band {
  background:
    linear-gradient(135deg, rgba(232, 238, 226, 0.96), rgba(255, 253, 248, 0.72)),
    var(--store-paper);
}

body:not(.admin-body) footer {
  border-top-color: var(--store-line);
  background: var(--store-charcoal);
  color: rgba(255, 253, 248, 0.72);
}

body:not(.admin-body) footer span {
  color: white;
  font-weight: 800;
}

body:not(.admin-body) .cart-drawer,
body:not(.admin-body) .email-modal,
body:not(.admin-body) .embedded-checkout-modal {
  background:
    linear-gradient(135deg, rgba(36, 36, 31, 0.42), rgba(79, 111, 69, 0.30)),
    rgba(36, 36, 31, 0.42);
}

body:not(.admin-body) .cart-drawer.open,
body:not(.admin-body) .email-modal:not([hidden]),
body:not(.admin-body) .embedded-checkout-modal:not([hidden]) {
  display: grid;
  place-items: center;
  padding: 18px;
}

body:not(.admin-body) .cart-panel,
body:not(.admin-body) .email-panel,
body:not(.admin-body) .embedded-checkout-panel {
  width: min(540px, 100%);
  max-height: calc(100dvh - 36px);
  margin: 0;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.94);
  padding: clamp(20px, 4vw, 34px);
}

body:not(.admin-body) .embedded-checkout-panel {
  width: min(920px, 100%);
}

body:not(.admin-body) .cart-close {
  border-color: var(--store-line);
  background: rgba(255, 255, 255, 0.72);
}

body:not(.admin-body) .cart-item {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  border-bottom-color: var(--store-line);
}

body:not(.admin-body) .cart-item a {
  font-weight: 800;
}

body:not(.admin-body) .cart-item small {
  color: var(--store-muted);
}

body:not(.admin-body) .cart-item div {
  grid-column: 1 / -1;
}

body:not(.admin-body) .cart-item button {
  border-color: var(--store-line);
  background: rgba(255, 255, 255, 0.72);
}

body:not(.admin-body) .cart-empty {
  display: grid;
  gap: 10px;
  border: 1px dashed rgba(79, 111, 69, 0.34);
  border-radius: 18px;
  background: rgba(232, 238, 226, 0.58);
  padding: 22px;
  text-align: center;
}

body:not(.admin-body) .cart-empty p {
  margin: 0;
  color: var(--store-muted);
  line-height: 1.45;
}

body:not(.admin-body) [data-cart-checkout]:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

@media (max-width: 980px) {
  body:not(.admin-body) .category-hero,
  body:not(.admin-body) .hero,
  body:not(.admin-body) .blog-hero,
  body:not(.admin-body) .fit-grid,
  body:not(.admin-body) .checkout-band,
  body:not(.admin-body) .newsletter-band,
  body:not(.admin-body) .split {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .catalog-sidebar,
  body:not(.admin-body) .catalog-layout .commerce-grid,
  body:not(.admin-body) .kit-grid,
  body:not(.admin-body) .blog-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .hero-feature {
    right: 24px;
  }

  body:not(.admin-body) .blog-hero-feature {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .blog-hero-panel {
    min-height: 180px;
  }

  body:not(.admin-body) .occasion-row,
  body:not(.admin-body) .occasion-selection {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .occasion-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .occasion-tab:nth-child(2n) {
    border-right: 0;
  }

  body:not(.admin-body) .occasion-tab:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  body:not(.admin-body) .occasion-needs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .occasion-product-strip {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .occasion-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .occasion-secure {
    grid-column: auto;
    justify-content: start;
    max-width: none;
    text-align: left;
  }

  body:not(.admin-body) .occasion-trust span:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  body:not(.admin-body) .topbar.retail {
    display: grid;
    min-height: 92px;
    gap: 7px;
    padding-inline: 14px;
  }

  body:not(.admin-body) .topbar.retail nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
    gap: 4px;
    font-size: 13px;
    scrollbar-width: none;
  }

  body:not(.admin-body) .topbar.retail nav::-webkit-scrollbar {
    display: none;
  }

  body:not(.admin-body) .mark img {
    width: 30px;
    height: 30px;
  }

  body:not(.admin-body) nav a,
  body:not(.admin-body) .cart-link {
    min-height: 34px;
    padding-inline: 11px;
  }

  body:not(.admin-body) .category-hero {
    min-height: 720px;
    padding: 28px 18px 118px;
    align-items: end;
  }

  body:not(.admin-body) .category-hero::after {
    background:
      linear-gradient(0deg, rgba(244, 241, 234, 0.92) 0%, rgba(244, 241, 234, 0.42) 54%, rgba(36, 36, 31, 0.05) 100%),
      linear-gradient(90deg, rgba(36, 36, 31, 0.26), rgba(36, 36, 31, 0.02));
  }

  body:not(.admin-body) .category-copy {
    width: 100%;
    border-radius: 20px;
    padding: 22px;
  }

  body:not(.admin-body) .category-hero h1,
  body:not(.admin-body) .hero h1 {
    max-width: 11ch;
    font-size: clamp(36px, 11vw, 48px);
  }

  body:not(.admin-body) .category-benefits {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .current-drop {
    width: calc(100% - 28px);
    margin-top: -82px;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  body:not(.admin-body) .current-drop-row {
    grid-auto-columns: minmax(122px, 40vw);
  }

  body:not(.admin-body) .hero-feature {
    display: none;
  }

  body:not(.admin-body) .hero {
    min-height: 0;
    padding-top: 32px;
    padding-bottom: 58px;
  }

  body:not(.admin-body) .hero-media {
    min-height: 0;
    aspect-ratio: 1 / 0.92;
    border-radius: 20px;
  }

  body:not(.admin-body) .catalog-sidebar,
  body:not(.admin-body) .catalog-layout .commerce-grid,
  body:not(.admin-body) .kit-grid,
  body:not(.admin-body) .blog-list-grid,
  body:not(.admin-body) .fit-list,
  body:not(.admin-body) .blog-grid,
  body:not(.admin-body) .gallery {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .commerce-card.feature,
  body:not(.admin-body) .product-card.focus {
    grid-column: auto;
  }

  body:not(.admin-body) .occasion-builder {
    width: calc(100% + 8px);
    margin-left: -4px;
    border-radius: 20px;
    padding: 18px;
  }

  body:not(.admin-body) .occasion-intro h2 {
    font-size: clamp(38px, 13vw, 54px);
  }

  body:not(.admin-body) .occasion-panel {
    border-radius: 18px;
  }

  body:not(.admin-body) .occasion-row {
    padding: 18px;
  }

  body:not(.admin-body) .occasion-tabs,
  body:not(.admin-body) .occasion-needs,
  body:not(.admin-body) .occasion-product-strip,
  body:not(.admin-body) .occasion-trust {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .occasion-tab {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 36, 31, 0.12);
  }

  body:not(.admin-body) .occasion-tab:last-child {
    border-bottom: 0;
  }

  body:not(.admin-body) .occasion-need {
    min-height: 64px;
    grid-template-columns: 26px minmax(0, 1fr) 30px;
    gap: 12px;
    justify-content: start;
    place-items: center start;
    padding: 14px;
    text-align: left;
  }

  body:not(.admin-body) .occasion-need span {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.24;
  }

  body:not(.admin-body) .occasion-need i {
    position: static;
    justify-self: end;
  }

  body:not(.admin-body) .occasion-product {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  body:not(.admin-body) .occasion-cta {
    width: 100%;
  }

  body:not(.admin-body) .occasion-trust span,
  body:not(.admin-body) .occasion-trust span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(36, 36, 31, 0.12);
  }

  body:not(.admin-body) .occasion-trust span:last-child {
    border-bottom: 0;
  }

  body:not(.admin-body) .blog-hero {
    min-height: 0;
    padding-top: 38px;
  }

  body:not(.admin-body) .blog-feature-card {
    min-height: 340px;
    border-radius: 20px;
  }

  body:not(.admin-body) .blog-feature-card strong {
    font-size: 28px;
  }

  body:not(.admin-body) .cart-panel,
  body:not(.admin-body) .email-panel,
  body:not(.admin-body) .embedded-checkout-panel {
    border-radius: 20px;
  }
}

body:not(.admin-body) .category-hero {
  background: transparent;
}

body:not(.admin-body) .category-hero::after {
  display: none;
}

body:not(.admin-body) .category-stage {
  z-index: 0;
}

body:not(.admin-body) .category-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(244, 241, 234, 0.86) 0%, rgba(244, 241, 234, 0.54) 38%, rgba(36, 36, 31, 0.08) 100%),
    linear-gradient(0deg, rgba(36, 36, 31, 0.38), rgba(36, 36, 31, 0.04) 46%);
  pointer-events: none;
}

body:not(.admin-body) .hero-feature {
  z-index: 2;
}

@media (max-width: 680px) {
  body:not(.admin-body) .category-stage::after {
    background:
      linear-gradient(0deg, rgba(244, 241, 234, 0.92) 0%, rgba(244, 241, 234, 0.42) 54%, rgba(36, 36, 31, 0.05) 100%),
      linear-gradient(90deg, rgba(36, 36, 31, 0.26), rgba(36, 36, 31, 0.02));
  }
}

body:not(.admin-body) .category-hero {
  min-height: min(760px, calc(100dvh - 72px));
}

body:not(.admin-body) .blog-hero {
  min-height: min(660px, calc(100dvh - 72px));
}

@media (max-width: 680px) {
  body:not(.admin-body) .category-hero {
    min-height: 660px;
  }

  body:not(.admin-body) .category-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body:not(.admin-body) .category-benefits span {
    min-height: 58px;
    padding: 9px 10px;
  }

  body:not(.admin-body) .category-benefits strong {
    font-size: 17px;
  }
}

body:not(.admin-body) .language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: inherit;
}

body:not(.admin-body) .language-switcher summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(36, 36, 31, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

body:not(.admin-body) .topbar.retail nav a,
body:not(.admin-body) .topbar.retail .cart-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

body:not(.admin-body) .category-hero {
  min-height: clamp(560px, calc(100dvh - 72px), 720px);
  padding-top: clamp(32px, 5vw, 68px);
  padding-bottom: clamp(70px, 8vw, 118px);
}

body:not(.admin-body) .category-copy {
  width: min(560px, 100%);
  padding: clamp(22px, 3.4vw, 36px);
}

body:not(.admin-body) .category-hero h1 {
  max-width: 14ch;
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: 1;
}

body:not(.admin-body) .category-copy .lede {
  max-width: 38ch;
  margin-top: 16px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.42;
}

body:not(.admin-body) .category-copy .hero-actions {
  margin-top: 24px;
}

body:not(.admin-body) .category-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

body:not(.admin-body) .category-benefits span {
  min-height: 58px;
  padding: 9px 11px;
}

body:not(.admin-body) .category-benefits small {
  display: block;
  color: var(--store-muted);
  font-size: 12px;
  font-weight: 650;
}

body:not(.admin-body) .current-drop-copy {
  padding: 24px 28px;
}

body:not(.admin-body) .current-drop-copy h2 {
  max-width: 13ch;
}

body:not(.admin-body) .commerce-card p,
body:not(.admin-body) .blog-grid p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

body:not(.admin-body) .commerce-card h3,
body:not(.admin-body) .blog-grid h3 {
  overflow-wrap: normal;
}

@media (max-width: 680px) {
  body:not(.admin-body) .topbar.retail .language-switcher {
    flex-basis: 100%;
  }

  body:not(.admin-body) .category-hero {
    min-height: auto;
    padding: 20px 14px 86px;
  }

  body:not(.admin-body) .category-copy {
    padding: 20px;
  }

  body:not(.admin-body) .category-hero h1 {
    max-width: 12ch;
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.03;
  }

  body:not(.admin-body) .category-copy .lede {
    max-width: 32ch;
    margin-top: 14px;
    font-size: 16px;
  }

  body:not(.admin-body) .category-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  body:not(.admin-body) .category-benefits {
    margin-top: 18px;
  }

  body:not(.admin-body) .category-benefits span {
    min-height: 54px;
    padding: 8px 9px;
  }

  body:not(.admin-body) .category-benefits strong {
    font-size: 15px;
  }

  body:not(.admin-body) .category-benefits small {
    font-size: 11px;
  }

  body:not(.admin-body) .current-drop {
    margin-top: -54px;
  }
}

body:not(.admin-body) .language-switcher summary::-webkit-details-marker {
  display: none;
}

body:not(.admin-body) .language-switcher[open] summary {
  background: #fff;
  border-color: rgba(36, 36, 31, 0.32);
}

body:not(.admin-body) .language-switcher div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  width: min(330px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(36, 36, 31, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(36, 36, 31, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

body:not(.admin-body) .language-switcher a {
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #24241f;
  font-size: 13px;
  line-height: 1.15;
}

body:not(.admin-body) .language-switcher a:hover,
body:not(.admin-body) .language-switcher a.active {
  background: rgba(36, 36, 31, 0.08);
}

body:not(.admin-body) .locale-seo-band {
  margin: 0;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(246, 241, 230, 0.72);
  border-block: 1px solid rgba(36, 36, 31, 0.07);
}

body:not(.admin-body) .locale-seo-band > div {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 6px;
}

body:not(.admin-body) .locale-seo-band h2,
body:not(.admin-body) .locale-seo-band h3 {
  color: #121212;
}

body:not(.admin-body) .locale-seo-band h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.12;
  letter-spacing: 0;
}

body:not(.admin-body) .locale-seo-band p {
  margin: 0;
  max-width: 920px;
  color: rgba(36, 36, 31, 0.76);
  font-size: 14px;
  line-height: 1.42;
}

html[dir="rtl"] body:not(.admin-body) {
  text-align: right;
}

html[dir="rtl"] body:not(.admin-body) .topbar,
html[dir="rtl"] body:not(.admin-body) .hero-actions,
html[dir="rtl"] body:not(.admin-body) .card-bottom,
html[dir="rtl"] body:not(.admin-body) .article-related,
html[dir="rtl"] body:not(.admin-body) .policy-links {
  direction: rtl;
}

html[dir="rtl"] body:not(.admin-body) .language-switcher div {
  right: auto;
  left: 0;
}

@media (max-width: 780px) {
  body:not(.admin-body) .language-switcher {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-start;
  }

  body:not(.admin-body) .language-switcher summary {
    width: auto;
    text-align: center;
  }

  body:not(.admin-body) .language-switcher div {
    left: 0;
    right: auto;
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .locale-seo-band {
    padding: 12px 18px;
  }

body:not(.admin-body) .locale-seo-band .eyebrow,
  body:not(.admin-body) .locale-seo-band p:last-child {
    display: none;
  }
}

/* Dawn-inspired Field Stow home: image banner, collection list, featured collection, product grid. */
body:not(.admin-body) .topbar.retail {
  grid-template-columns: auto minmax(220px, 360px) auto;
}

body:not(.admin-body) .header-search {
  min-width: 220px;
  position: relative;
  display: flex;
  align-items: center;
}

body:not(.admin-body) .header-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body:not(.admin-body) .header-search input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 3px;
  background: #fff;
  padding: 0 14px 0 42px;
  color: #121212;
  font: inherit;
}

body:not(.admin-body) .header-search button {
  position: absolute;
  left: 10px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: rgba(18, 18, 18, 0.7);
  cursor: pointer;
}

body:not(.admin-body) .header-search button::before,
body:not(.admin-body) .header-search button::after {
  content: "";
  position: absolute;
  display: block;
}

body:not(.admin-body) .header-search button::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  left: 3px;
  top: 3px;
}

body:not(.admin-body) .header-search button::after {
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  left: 14px;
  top: 15px;
  transform: rotate(45deg);
  transform-origin: left center;
}

body:not(.admin-body) .header-search input:focus {
  border-color: rgba(18, 18, 18, 0.7);
  outline: 2px solid rgba(18, 18, 18, 0.18);
  outline-offset: 1px;
}

.shop-home {
  --home-page: 1220px;
  --home-gap: 24px;
  --home-border: rgba(18, 18, 18, 0.12);
  --home-subtle: rgba(18, 18, 18, 0.62);
  background: #fff;
  color: #121212;
}

.shop-home .home-section,
.shop-home .home-use-cases,
.shop-home .newsletter-band {
  padding-inline: max(16px, calc((100vw - var(--home-page)) / 2));
}

.shop-home .home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  padding: 0 max(16px, calc((100vw - var(--home-page)) / 2));
  place-items: center start;
  background: #e9ece4;
}

.home-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  background: #e2e7df;
}

.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.04));
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-media span {
  position: absolute;
  right: max(18px, calc((100vw - var(--home-page)) / 2));
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: 280px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.88);
  color: #121212;
}

.home-hero-media small,
.home-product-card span,
.home-guide-grid span,
.shop-home .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-media strong {
  color: #121212;
  font-size: 20px;
  line-height: 1.12;
}

.home-hero-media b {
  font-size: 14px;
}

.home-hero-copy {
  width: min(100%, 520px);
  padding: 42px;
  background: rgba(255, 255, 255, 0.94);
  color: #121212;
}

.shop-home .home-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #121212;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
}

.shop-home .home-hero .lede {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--home-subtle);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions a,
.home-product-card button,
.shop-home .newsletter-band button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #121212;
  border-radius: 0;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.hero-actions .primary,
.home-product-card button,
.shop-home .newsletter-band button {
  background: #121212;
  color: #fff;
}

.hero-actions .secondary {
  background: #fff;
  color: #121212;
}

.shop-home .home-section,
.home-use-cases {
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--home-border);
}

.shop-home .home-campaigns {
  border-top: 0;
  background: #fff;
}

.commercial-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--home-gap);
}

.commercial-banner {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  color: #fff;
}

.commercial-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commercial-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04) 62%);
}

.commercial-banner span {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
}

.commercial-banner strong {
  max-width: 13ch;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
}

.commercial-banner em {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.42;
}

.commercial-banner b {
  width: fit-content;
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 30px;
}

.home-section-head h2,
.home-use-cases h2 {
  margin: 0;
  color: #121212;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

.home-section-head > a,
.home-section-head > span {
  color: #121212;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--home-gap);
}

.collection-tile {
  display: grid;
  gap: 14px;
  color: #121212;
}

.collection-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--home-border);
  background: #eef2ea;
  object-fit: cover;
}

.collection-tile span {
  display: grid;
  gap: 5px;
}

.collection-tile small {
  color: var(--home-subtle);
  font-size: 12px;
  text-transform: uppercase;
}

.collection-tile strong {
  color: #121212;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.collection-more {
  margin-top: 24px;
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
  padding: 18px 0;
}

.collection-more summary {
  cursor: pointer;
  color: #121212;
  font-weight: 600;
}

.collection-more div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.collection-more a {
  border: 1px solid var(--home-border);
  padding: 9px 12px;
  color: #121212;
  background: #fff;
  text-decoration: none;
}

.collection-tile em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--home-subtle);
  font-style: normal;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 26px;
}

.home-product-grid.featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 28px;
}

.home-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
}

.home-product-media {
  display: block;
  overflow: hidden;
  border: 1px solid var(--home-border);
  background: #eef2ea;
}

.home-product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.home-product-card:hover .home-product-media img {
  transform: scale(1.03);
}

.home-product-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

.home-product-card span,
.home-guide-grid span,
.shop-home .eyebrow {
  color: #4f6f45;
}

.home-product-card h3 {
  margin: 0;
  color: #121212;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.24;
}

.home-product-card p {
  display: -webkit-box;
  min-height: 2.6em;
  margin: 0;
  overflow: hidden;
  color: var(--home-subtle);
  font-size: 13px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  color: #121212;
}

.home-card-bottom a {
  color: #121212;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.home-product-card button {
  width: 100%;
  margin-top: 6px;
  border-color: #4f6f45;
  background: #4f6f45;
  font-size: 13px;
}

.home-use-cases {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  background: #f7f7f4;
}

.use-case-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--home-gap);
}

.use-case-columns div {
  display: grid;
  align-content: start;
  gap: 7px;
  border-top: 1px solid var(--home-border);
  padding-top: 18px;
}

.use-case-accordions details {
  border-top: 1px solid var(--home-border);
  padding: 18px 0;
}

.use-case-accordions summary {
  cursor: pointer;
  color: #121212;
  font-size: 18px;
  font-weight: 500;
}

.use-case-accordions p {
  margin: 10px 0;
  color: var(--home-subtle);
  line-height: 1.45;
}

.use-case-columns a {
  color: var(--home-subtle);
  font-size: 14px;
  line-height: 1.35;
}

.use-case-columns .use-case-title {
  margin-bottom: 6px;
  color: #121212;
  font-size: 18px;
  font-weight: 500;
}

.home-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--home-gap);
}

.home-guide-grid article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  border: 1px solid var(--home-border);
  background: #fff;
  padding: 22px;
}

.home-guide-media {
  display: block;
  margin: -22px -22px 10px;
  background: #eef2ea;
}

.home-guide-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.home-guide-grid h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.18;
}

.home-guide-grid p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--home-subtle);
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.home-guide-grid article > a {
  align-self: end;
  color: #121212;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.shop-home .newsletter-band {
  border-top: 1px solid var(--home-border);
  background: #f7f7f4;
}

@media (max-width: 1180px) {
  body:not(.admin-body) .topbar.retail {
    grid-template-columns: auto 1fr;
  }

  body:not(.admin-body) .topbar.retail nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .home-product-grid,
  .home-product-grid.featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body:not(.admin-body) .topbar.retail {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .header-search {
    width: 100%;
  }

  .shop-home .home-hero {
    min-height: 560px;
    place-items: end start;
    padding-bottom: 18px;
  }

  .home-hero-copy {
    width: 100%;
    padding: 24px;
  }

  .home-hero-media span {
    display: none;
  }

  .collection-grid,
  .commercial-banner-grid,
  .home-guide-grid,
  .use-case-columns {
    grid-template-columns: 1fr;
  }

  .home-use-cases {
    grid-template-columns: 1fr;
  }

  .home-product-grid,
  .home-product-grid.featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }
}

@media (max-width: 560px) {
  .shop-home .home-hero {
    min-height: 520px;
  }

  .shop-home .home-hero h1 {
    font-size: 38px;
  }

  .shop-home .home-section,
  .home-use-cases {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home-section-head {
    display: grid;
    align-items: start;
  }

  .home-product-card h3 {
    font-size: 14px;
  }

  .home-product-card p,
  .home-card-bottom a {
    font-size: 12px;
  }

  .home-product-card button {
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }
}

/* Dawn-inspired product detail pages. */
body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 56px;
  background: #fff;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .hero-copy {
  order: 2;
  position: sticky;
  top: 96px;
  max-width: none;
  padding: 0;
  background: transparent;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .hero-media {
  order: 1;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 0;
  background: #eef2ea;
  box-shadow: none;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .hero-media::before {
  display: none;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero h1 {
  max-width: 12ch;
  color: #121212;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .lede {
  max-width: 54ch;
  color: rgba(18, 18, 18, 0.64);
  line-height: 1.58;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .primary,
body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .secondary,
body:not(.admin-body) .checkout-panel .primary,
body:not(.admin-body) .checkout-panel .secondary {
  min-height: 48px;
  border-radius: 0;
  box-shadow: none;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .primary,
body:not(.admin-body) .checkout-panel .primary {
  border-color: #121212;
  background: #121212;
  color: #fff;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .secondary {
  border-color: rgba(18, 18, 18, 0.14);
  background: #fff;
  color: #121212;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .proof-row span {
  border-radius: 0;
  background: #fff;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 56px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  background: #f7f7f4;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .gallery img,
body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .gallery .wide {
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 0;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .fit-band,
body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .checkout-band {
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  background: #fff;
  color: #121212;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .fit-band h2,
body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .checkout-band h2,
body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .fit-band .eyebrow,
body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .checkout-band .eyebrow {
  color: #121212;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .fit-list {
  grid-template-columns: 1fr;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .fit-list li {
  min-height: 0;
  border: 0;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 0;
  background: transparent;
  color: rgba(18, 18, 18, 0.68);
  padding: 18px 0;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .fit-list strong {
  color: #121212;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .checkout-panel {
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 0;
  background: #fff;
  color: #121212;
  box-shadow: none;
}

body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .checkout-band p {
  color: rgba(18, 18, 18, 0.68);
}

body:not(.admin-body) .language-switcher summary {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border-radius: 999px;
  padding: 8px 11px;
}

body:not(.admin-body) .language-switcher a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

body:not(.admin-body) .language-flag {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 860px) {
  body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) main > .hero .hero-copy {
    position: static;
  }

  body:not(.admin-body):not([data-live-url="https://fieldstow.shop/"]) .gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body:not(.admin-body) .topbar.retail .language-switcher {
    flex-basis: auto;
    margin-left: auto;
  }
}
