:root {
  --ink: #10251a;
  --muted: #5f6d65;
  --green: #0b6b3a;
  --green-dark: #074c2a;
  --cream: #f7f5ee;
  --paper: #ffffff;
  --gold: #e5aa2a;
  --line: #dfe6df;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f9f8f3, var(--cream));
  color: var(--ink);
}

img {
  max-width: 100%;
}

a {
  color: var(--green);
}

.seo-page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.seo-site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.seo-brand img {
  width: 150px;
  height: 72px;
  object-fit: contain;
}

.seo-brand span {
  display: grid;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.seo-brand strong {
  color: var(--green);
}

.seo-brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.seo-site-header nav,
.seo-site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.seo-site-header nav a,
.seo-site-footer nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.seo-site-header nav a:hover,
.seo-site-footer nav a:hover {
  color: var(--green);
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.seo-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.seo-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  padding: 28px 0 66px;
}

.seo-product-hero-image {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(18, 48, 30, .08);
}

.seo-product-hero-image img {
  width: 100%;
  height: 460px;
  object-fit: contain;
}

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

.seo-product-copy h1,
.seo-collection-hero h1,
.seo-info-hero h1,
.seo-not-found h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.seo-description,
.seo-collection-hero > p:not(.seo-eyebrow),
.seo-info-hero > p:not(.seo-eyebrow),
.seo-not-found > p:not(.seo-eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.seo-stock {
  display: inline-block;
  margin: 8px 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.seo-stock.in-stock {
  background: #e4f4e8;
  color: var(--green);
}

.seo-stock.out-of-stock {
  background: #f7e8e5;
  color: #a23b2e;
}

.seo-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.seo-price strong {
  color: var(--green-dark);
  font-size: 34px;
}

.seo-price del,
.seo-price span {
  color: var(--muted);
}

.seo-primary-button,
.seo-secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.seo-primary-button {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(11, 107, 58, .18);
}

.seo-primary-button:hover {
  background: var(--green-dark);
}

.seo-secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
}

.seo-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.seo-facts div {
  padding: 14px 16px;
  background: #fff;
}

.seo-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.seo-content-section {
  margin: 0 0 64px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
}

.seo-content-section h2,
.seo-info-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.seo-content-section p {
  color: var(--muted);
  line-height: 1.75;
}

.seo-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}

.seo-variant-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.seo-variant-table > div {
  display: grid;
  grid-template-columns: minmax(120px, 1.5fr) minmax(100px, 1fr) 100px 90px;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  font-size: 13px;
}

.seo-variant-table em {
  color: var(--green);
  font-style: normal;
  font-weight: 750;
}

.seo-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.seo-section-heading > a {
  font-weight: 800;
}

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

.seo-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.seo-product-image {
  height: 220px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #fafaf7;
}

.seo-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.seo-product-card > div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.seo-product-card p,
.seo-product-card h3 {
  margin: 0;
}

.seo-product-card p,
.seo-product-card span {
  color: var(--muted);
  font-size: 12px;
}

.seo-product-card h3 {
  min-height: 44px;
  font-size: 15px;
  line-height: 1.35;
}

.seo-product-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.seo-product-card h3 a:hover {
  color: var(--green);
}

.seo-product-card strong {
  color: var(--green-dark);
  font-size: 17px;
}

.seo-collection-hero,
.seo-info-hero {
  margin-bottom: 42px;
  padding: clamp(40px, 7vw, 78px);
  border-radius: 30px;
  background: radial-gradient(circle at 85% 20%, rgba(229, 170, 42, .24), transparent 28%), linear-gradient(135deg, #e8f4ea, #fffdf4);
}

.seo-collection-hero > span {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.seo-pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-pill-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.seo-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 56px;
}

.seo-contact-grid > a {
  display: grid;
  gap: 8px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.seo-contact-grid span {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.seo-contact-grid strong {
  font-size: 20px;
}

.seo-contact-grid small {
  color: var(--muted);
}

.seo-info-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  padding: 36px;
  border-radius: 24px;
  background: var(--green-dark);
  color: #fff;
}

.seo-info-cta > div {
  margin-right: auto;
}

.seo-info-cta .seo-eyebrow {
  color: #a9d6b8;
}

.seo-info-cta h2 {
  margin-bottom: 0;
}

.seo-not-found {
  max-width: 760px;
  margin: 70px auto 100px;
  padding: 70px;
  border-radius: 30px;
  background: #fff;
  text-align: center;
}

.seo-site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 45px 0 55px;
  border-top: 1px solid var(--line);
}

.seo-site-footer p {
  max-width: 600px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .seo-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-product-detail {
    grid-template-columns: 1fr;
  }

  .seo-product-hero-image {
    min-height: 400px;
  }

  .seo-product-hero-image img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .seo-page-shell {
    width: min(100% - 24px, 1180px);
  }

  .seo-site-header {
    align-items: flex-start;
    padding: 18px 0;
  }

  .seo-site-header nav {
    justify-content: flex-end;
    gap: 8px 14px;
  }

  .seo-site-header nav a:nth-child(2),
  .seo-site-header nav a:nth-child(3) {
    display: none;
  }

  .seo-product-detail {
    padding-top: 8px;
  }

  .seo-product-hero-image {
    min-height: 310px;
    padding: 20px;
    border-radius: 22px;
  }

  .seo-product-hero-image img {
    height: 280px;
  }

  .seo-product-copy h1,
  .seo-collection-hero h1,
  .seo-info-hero h1,
  .seo-not-found h1 {
    font-size: 40px;
  }

  .seo-facts,
  .seo-two-column,
  .seo-contact-grid,
  .seo-product-grid,
  .seo-site-footer {
    grid-template-columns: 1fr;
  }

  .seo-content-section {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .seo-variant-table > div {
    grid-template-columns: 1fr auto;
  }

  .seo-variant-table > div span:nth-child(2) {
    display: none;
  }

  .seo-variant-table em {
    grid-column: 1 / -1;
  }

  .seo-product-image {
    height: 240px;
  }

  .seo-collection-hero,
  .seo-info-hero {
    padding: 38px 24px;
    border-radius: 22px;
  }

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

  .seo-not-found {
    padding: 46px 22px;
  }

  .seo-site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
