:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #66736c;
  --line: #dbe2dd;
  --soft: #f5f7f4;
  --panel: #ffffff;
  --accent: #b3262f;
  --accent-dark: #841d25;
  --green: #205f46;
  --gold: #f3c34d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--panel);
}

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

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

.announcement {
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 18px;
  text-align: center;
}

.store-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 64px);
}

.store-brand {
  font-size: 1.35rem;
  font-weight: 950;
}

.store-header nav {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.store-hero {
  align-items: center;
  background: #f8faf7;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.store-hero-copy {
  max-width: 640px;
}

.store-hero h1,
.section-heading h2,
.newsletter h2 {
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.store-hero h1 {
  font-size: clamp(2.3rem, 6vw, 5.6rem);
}

.store-hero p,
.newsletter p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-product {
  display: grid;
  gap: 12px;
}

.hero-product img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.hero-product span {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.collection {
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 64px);
}

.section-heading {
  margin-bottom: 26px;
  text-align: center;
}

.section-heading h2,
.newsletter h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

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

.product-card {
  display: grid;
  gap: 10px;
}

.product-card-image {
  aspect-ratio: 1 / 1;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

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

.product-card-tint img {
  filter: saturate(0.88) contrast(1.04);
}

.badge {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}

.product-card p {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.newsletter {
  align-items: center;
  background: var(--soft);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  padding: clamp(40px, 7vw, 76px) clamp(18px, 5vw, 64px);
}

.subscribe-form {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.subscribe-form input {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  min-width: 0;
  padding: 0 14px;
}

.subscribe-form button {
  background: var(--accent);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  min-height: 48px;
  padding: 0 18px;
}

.store-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 64px);
}

.product-copy h1,
.band h2,
.specs h2,
.packet h2,
.contact h2 {
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.specs p,
.packet p,
.contact p,
.features p {
  color: var(--muted);
  line-height: 1.65;
}

.primary-button,
.secondary-button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
}

.primary-button {
  background: var(--accent);
  color: #fff;
}

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

.secondary-button {
  background: #eef1ed;
  color: var(--muted);
  cursor: not-allowed;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand,
.topbar nav {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand {
  font-weight: 900;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.topbar nav {
  color: var(--muted);
  flex-wrap: wrap;
  font-size: 0.95rem;
  justify-content: flex-end;
}

.product {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  padding: clamp(28px, 6vw, 72px) clamp(18px, 5vw, 64px);
}

.gallery-main {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.gallery-main img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.thumbs {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.thumb {
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.thumb.is-active {
  border-color: var(--accent);
}

.thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-copy {
  align-self: center;
  max-width: 640px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.product-copy h1 {
  font-size: clamp(2.2rem, 6vw, 5.2rem);
}

.lead {
  color: #4d5a53;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin: 22px 0;
}

.price-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.price {
  font-size: 2rem;
  font-weight: 950;
}

.price-note {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.quick-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin: 0;
}

.quick-facts div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 120px minmax(0, 1fr);
  padding: 14px 0;
}

.quick-facts dt {
  color: var(--muted);
  font-weight: 700;
}

.quick-facts dd {
  font-weight: 800;
  margin: 0;
}

.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
  padding: clamp(40px, 7vw, 80px) clamp(18px, 5vw, 64px);
}

.band-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.band h2,
.specs h2,
.packet h2,
.contact h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.features {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.features article,
.packet-grid div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.features h3 {
  margin: 0;
}

.specs,
.packet,
.contact {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 64px);
}

.reviews {
  background: #fbfcfa;
  border-top: 1px solid var(--line);
  padding: clamp(42px, 7vw, 84px) clamp(18px, 5vw, 64px);
}

.reviews-heading {
  margin: 0 auto 22px;
  max-width: 760px;
  text-align: center;
}

.reviews-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.reviews-heading p {
  color: var(--muted);
  line-height: 1.65;
}

.review-summary {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.review-summary strong {
  font-size: 2rem;
}

.stars {
  color: #d79a16;
  letter-spacing: 0;
}

.review-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.review-card-top {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 10px;
  justify-content: space-between;
}

.review-card h3 {
  font-size: 1.02rem;
  margin: 14px 0 8px;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-weight: 800;
  padding-right: 18px;
  width: 190px;
}

.packet {
  background: #fbfcfa;
}

.packet-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.packet-grid span {
  color: var(--accent);
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 14px;
}

.packet-grid strong {
  display: block;
  font-size: 1.1rem;
}

.contact {
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.contact p,
.contact .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 880px) {
  .store-header,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-header nav,
  .topbar nav {
    justify-content: flex-start;
  }

  .store-hero,
  .newsletter,
  .product,
  .specs,
  .packet,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .features,
  .packet-grid,
  .review-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .product-grid,
  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .store-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-facts div {
    grid-template-columns: 1fr;
  }

  th,
  td {
    display: block;
    width: 100%;
  }

  th {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  td {
    padding-top: 0;
  }
}
