:root {
  --brand-blue: #005f9f;
  --brand-blue-dark: #003e72;
  --brand-cyan: #20bed0;
  --brand-cyan-soft: #dff8fb;
  --brand-ice: #f3fbfd;
  --red: var(--brand-blue);
  --red-dark: var(--brand-blue-dark);
  --ink: #000000;
  --paper: #ffffff;
  --soft: var(--brand-ice);
  --warm: var(--brand-cyan-soft);
  --line: #d7eef2;
  --muted: #595959;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

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

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

.anchor-alias {
  position: relative;
  top: -82px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

h1,
h2,
p {
  margin-top: 0;
}

.announcement {
  min-height: 30px;
  display: grid;
  place-items: center;
  background: var(--brand-blue-dark);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  background: linear-gradient(90deg, var(--brand-cyan-soft) 0%, rgba(32, 190, 208, 0.32) 22%, var(--brand-blue) 42%, var(--brand-blue) 100%);
  border-bottom: 0;
}

.brand {
  width: clamp(116px, 9vw, 150px);
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 28, 56, 0.22));
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--paper);
}

.cart-link {
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  color: var(--paper);
  cursor: pointer;
}

.cart-link span {
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--paper);
  color: var(--brand-blue);
  font-size: 12px;
}

.savor-hero {
  position: relative;
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(390px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 0;
  background: var(--brand-blue);
  color: var(--paper);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: clamp(38px, 7vw, 96px);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 76, 134, 0.98) 0%, rgba(0, 95, 159, 0.9) 68%, rgba(0, 95, 159, 0) 100%);
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brand-cyan);
}

.hero-copy h1,
.collection-section h2,
.buy-panel h2,
.split-copy h2,
.faq-section h2 {
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: clamp(58px, 8.2vw, 124px);
  line-height: 0.84;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: clamp(17px, 1.9vw, 24px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.text-link {
  width: fit-content;
  font-size: 15px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--brand-cyan);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.text-link.light {
  color: var(--paper);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.light-button {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--brand-blue);
  text-shadow: none;
}

.hero-product {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  background: var(--brand-blue);
}

.hero-main-photo {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 108px);
  object-fit: cover;
  object-position: center top;
}

.hero-offer {
  display: none;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: var(--paper);
  color: var(--ink);
}

.hero-offer {
  display: none !important;
}

.hero-offer span {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-offer strong {
  text-align: right;
}

.collection-section {
  padding: 42px 32px 54px;
  background: var(--paper);
}

.section-heading {
  min-height: 92px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.faq-section h2 {
  margin-bottom: 0;
  color: var(--red);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.92;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  padding: 0;
  background: var(--soft);
  border: 0;
  cursor: pointer;
  text-align: left;
}

.product-card[aria-pressed="true"] {
  box-shadow: inset 0 0 0 3px var(--brand-blue);
}

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

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

.product-card-meta {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: var(--paper);
}

.product-card-meta strong {
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card-meta span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(350px, 0.72fr);
  max-width: 1580px;
  margin: 0 auto;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-gallery,
.buy-panel {
  background: var(--paper);
}

.feature-gallery {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
}

.feature-thumbs {
  display: grid;
  align-content: start;
  gap: 12px;
}

.gallery-thumb {
  width: 64px;
  height: 64px;
  overflow: hidden;
  padding: 0;
  background: var(--soft);
  border: 1px solid transparent;
  cursor: pointer;
}

.gallery-thumb[aria-pressed="true"] {
  border-color: var(--brand-blue);
  box-shadow: inset 0 0 0 2px var(--brand-blue);
}

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

.feature-stage {
  position: relative;
  min-height: min(460px, calc(100vh - 122px));
  max-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft);
}

.feature-stage img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  padding: 20px;
}

.pack-visual-builder {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pack-mini {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 88px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.pack-mini img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  background: var(--soft);
}

.pack-mini span,
.pack-mini strong {
  display: block;
  text-transform: uppercase;
}

.pack-mini span {
  color: var(--brand-cyan);
  font-size: 11px;
  font-weight: 950;
}

.pack-mini strong {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.gallery-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.gallery-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.buy-panel {
  position: sticky;
  top: 52px;
  align-self: start;
  min-height: 0;
  padding: 24px 30px;
}

.buy-panel h2 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 0.9;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 900;
}

.bundle-price {
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-weight: 850;
}

.product-copy {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.option-block {
  margin-bottom: 10px;
}

.option-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.option-heading strong {
  color: var(--muted);
}

.design-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

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

.pack-option {
  min-height: 62px;
  padding: 10px 12px;
  display: grid;
  align-content: center;
  gap: 3px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.pack-option span,
.pack-option strong,
.pack-option em {
  display: block;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pack-option span {
  font-size: 13px;
  font-weight: 950;
}

.pack-option strong {
  font-size: 18px;
  font-weight: 950;
}

.pack-option em {
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 950;
}

.pack-option[aria-pressed="true"] {
  background: var(--brand-blue);
  color: var(--paper);
  border-color: var(--brand-blue);
}

.pack-option[aria-pressed="true"] em {
  color: var(--ice);
}

.design-swatch {
  min-height: 44px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.design-swatch[aria-pressed="true"] {
  background: var(--brand-blue);
  color: var(--paper);
  border-color: var(--brand-blue);
}

.pack-builder {
  display: grid;
  gap: 6px;
}

.pack-builder label {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  background: var(--ice);
  border: 1px solid var(--line);
}

.pack-builder label span {
  padding-left: 12px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pack-builder select {
  min-height: 40px;
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0 10px;
  font: inherit;
  font-weight: 850;
  text-transform: uppercase;
}

.pack-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.quantity-row {
  width: 144px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  border: 1px solid var(--brand-blue);
}

.quantity-row button,
.quantity-row output {
  min-height: 40px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 0;
  font-weight: 900;
}

.quantity-row output {
  border-left: 1px solid var(--brand-blue);
  border-right: 1px solid var(--brand-blue);
}

.primary-button,
.secondary-button {
  width: 100%;
  margin-bottom: 7px;
}

.primary-button {
  background: var(--brand-blue);
  color: var(--paper);
  border-color: var(--brand-blue);
}

.primary-button:hover,
.light-button:hover,
.mobile-buy a:hover {
  background: var(--brand-cyan);
  border-color: var(--brand-cyan);
  color: var(--ink);
}

.secondary-button {
  background: var(--paper);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

[hidden] {
  display: none !important;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.accordion p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 6px;
  padding: 6px 0 0;
  background: var(--warm);
}

.split-media,
.split-copy {
  min-height: 470px;
}

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

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 64px);
}

.split-copy h2 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 0.9;
}

.split-copy p:not(.eyebrow) {
  max-width: 470px;
  color: #2c2c2c;
  font-size: 18px;
  line-height: 1.55;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.info-strip div {
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 24px;
  padding: 28px;
  background: var(--soft);
}

.info-strip span {
  color: var(--brand-cyan);
  font-weight: 900;
}

.info-strip strong {
  max-width: 360px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
}

.faq-section {
  padding: 68px 40px 96px;
}

.faq-section h2 {
  margin-bottom: 30px;
}

.faq-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.faq-grid details {
  background: var(--paper);
  padding: 0 24px;
}

.faq-grid summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-grid p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.mobile-buy {
  display: none;
}

@media (max-width: 1120px) {
  .savor-hero,
  .featured-product,
  .split-section {
    grid-template-columns: 1fr;
  }

  .buy-panel {
    position: static;
    min-height: 0;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 66px;
  }

  .announcement {
    min-height: 34px;
    font-size: 11px;
  }

  .site-header {
    min-height: 58px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .site-header nav {
    display: none;
  }

  .brand {
    width: 158px;
  }

  .savor-hero {
    min-height: calc(100vh - 92px);
    display: block;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: calc(100vh - 92px);
    justify-content: flex-end;
    padding: 190px 18px 110px;
    max-width: 100vw;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(0, 95, 159, 0) 0%, rgba(0, 95, 159, 0.12) 30%, rgba(0, 76, 134, 0.82) 58%, rgba(0, 76, 134, 0.98) 100%),
      linear-gradient(90deg, rgba(0, 62, 114, 0.8) 0%, rgba(0, 95, 159, 0.3) 58%, rgba(0, 95, 159, 0) 100%);
  }

  .hero-copy h1 {
    max-width: calc(100vw - 36px);
    margin-bottom: 24px;
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-copy p:not(.eyebrow) {
    width: min(100%, calc(100vw - 52px));
    max-width: 320px;
    font-size: 17px;
  }

  .hero-actions {
    max-width: calc(100vw - 52px);
  }

  .hero-product {
    position: absolute;
    inset: 0;
    min-height: 100%;
    padding: 0;
  }

  .hero-main-photo {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 92px);
    object-fit: cover;
    object-position: center top;
  }

  .hero-offer {
    display: none !important;
  }

  .collection-section,
  .faq-section {
    padding: 40px 18px 52px;
  }

  .section-heading {
    min-height: 0;
    align-items: start;
    flex-direction: column;
  }

  .section-heading h2,
  .faq-section h2 {
    font-size: 48px;
  }

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

  .product-card {
    grid-template-columns: 45% 55%;
    grid-template-rows: none;
  }

  .product-card img {
    height: 100%;
  }

  .product-card-meta {
    min-height: 155px;
    align-items: end;
    grid-template-columns: 1fr;
  }

  .feature-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .feature-thumbs {
    order: 2;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 18px 18px;
  }

  .pack-visual-builder {
    order: 3;
    grid-column: 1;
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .gallery-thumb {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }

  .feature-stage {
    min-height: 430px;
  }

  .feature-stage img {
    max-height: 430px;
    padding: 20px;
  }

  .gallery-controls {
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
  }

  .gallery-controls button {
    width: 42px;
    height: 42px;
  }

  .buy-panel {
    padding: 32px 18px 40px;
  }

  .buy-panel h2 {
    font-size: 48px;
  }

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

  .pack-toggle {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 0;
  }

  .split-media,
  .split-copy {
    min-height: 320px;
  }

  .split-copy {
    padding: 34px 18px;
  }

  .split-copy h2 {
    font-size: 48px;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .info-strip div {
    min-height: 145px;
    padding: 22px 18px;
  }

  .mobile-buy {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.08);
  }

  .mobile-buy span {
    font-weight: 900;
    text-transform: uppercase;
  }

.mobile-buy a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: var(--brand-blue);
    color: var(--paper);
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

.mobile-buy button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  background: var(--brand-blue);
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 26, 44, 0.38);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 41;
  width: min(440px, 100vw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  box-shadow: -18px 0 42px rgba(0, 28, 56, 0.18);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-drawer-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header span,
.cart-note-small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-drawer-header strong {
  display: block;
  margin-top: 3px;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.cart-items {
  overflow-y: auto;
  padding: 16px;
}

.cart-empty {
  padding: 24px;
  color: var(--muted);
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  background: var(--soft);
}

.cart-item-main strong,
.cart-item-main span {
  display: block;
}

.cart-item-main strong {
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.cart-item-main span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cart-edit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  background: var(--brand-ice);
  border: 1px solid var(--line);
}

.cart-edit-grid label {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.cart-edit-grid label span {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-edit-grid select {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.cart-item-controls button,
.cart-item-controls output {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 900;
}

.cart-remove {
  width: auto;
  padding: 0 10px;
  color: var(--brand-blue);
  text-transform: uppercase;
}

.cart-drawer-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-edit-note {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.cart-delivery-note {
  margin: 0 0 10px;
  padding: 10px 12px;
  background: var(--brand-ice);
  border: 1px solid var(--line);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.checkout-button {
  border: 0;
  cursor: pointer;
}

.cart-shop-link {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  font-weight: 900;
  text-transform: uppercase;
}

.cart-note-small {
  margin: 8px 0 0;
  line-height: 1.35;
  text-transform: none;
}

/* Product-page homepage direction */
.shop-product {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  max-width: none;
  min-height: calc(100vh - 82px);
  border-top: 0;
}

.shop-product .feature-stage {
  min-height: calc(100vh - 142px);
  max-height: none;
}

.shop-product .feature-stage img {
  max-height: calc(100vh - 190px);
}

.shop-product .buy-panel {
  top: 52px;
  padding: clamp(18px, 2.6vw, 34px);
}

.buy-panel h1 {
  max-width: 680px;
  margin: 0 0 10px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.local-section {
  padding: 56px 40px 72px;
  background: linear-gradient(120deg, var(--brand-cyan-soft), var(--paper));
  border-top: 1px solid var(--line);
}

.local-section h2 {
  max-width: 900px;
  margin: 0 0 28px;
  font-family: Impact, "Arial Black", sans-serif;
  color: var(--brand-blue);
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.9;
  text-transform: uppercase;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.local-grid strong {
  min-height: 128px;
  display: grid;
  align-content: end;
  padding: 22px;
  background: var(--paper);
  font-size: 18px;
  line-height: 1.18;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .shop-product {
    min-height: 0;
  }

  .shop-product .feature-stage {
    min-height: 560px;
  }

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

@media (max-width: 760px) {
  .shop-product .feature-stage {
    min-height: 430px;
  }

  .buy-panel h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .local-section {
    padding: 44px 18px 56px;
  }

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

@media (max-width: 1120px) {
  .shop-product {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .shop-product .buy-panel {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {
  .shop-product {
    display: block;
  }

  .shop-product .feature-gallery {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    overflow: hidden;
  }

  .shop-product .feature-stage {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .shop-product .feature-stage img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    padding: 18px;
  }

  .shop-product .buy-panel {
    width: 100%;
    max-width: 100%;
    padding: 28px 18px 38px;
    overflow: hidden;
  }

  .buy-panel h1 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 50px);
    overflow-wrap: anywhere;
  }
}

/* Final product-page polish: stronger product crop, cleaner thumbs, and locked mobile width. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.shop-product,
.shop-product * {
  min-width: 0;
}

.shop-product .feature-gallery {
  background: var(--brand-ice);
}

.shop-product .feature-stage {
  align-items: start;
  background: var(--brand-ice);
}

.shop-product .feature-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  padding: clamp(8px, 1.2vw, 16px);
  transform: scale(1.1) translateY(-2%);
  transform-origin: center top;
}

.gallery-thumb {
  display: grid;
  place-items: center;
  background: #ffffff;
  border-color: var(--line);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 4px;
}

@media (min-width: 761px) {
  .shop-product .feature-gallery {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
  }

  .gallery-thumb {
    width: 76px;
    height: 76px;
  }

  .shop-product .feature-stage {
    min-height: calc(100vh - 120px);
  }

  .shop-product .feature-stage img {
    max-height: calc(100vh - 140px);
  }
}

@media (max-width: 760px) {
  body {
    width: 100vw;
    max-width: 100vw;
  }

  .announcement,
  .site-header,
  main,
  .shop-product,
  .shop-product .feature-gallery,
  .shop-product .buy-panel,
  .mobile-buy {
    width: 100%;
    max-width: 100vw;
  }

  .site-header {
    grid-template-columns: minmax(110px, 42vw) minmax(0, 1fr) auto;
    gap: 8px;
    padding: 0 14px;
  }

  .brand {
    width: min(150px, 42vw);
  }

  .cart-link {
    white-space: nowrap;
  }

  .shop-product .feature-gallery {
    overflow: hidden;
  }

  .shop-product .feature-stage {
    aspect-ratio: 1 / 1.06;
  }

  .shop-product .feature-stage img {
    padding: 8px;
    transform: scale(1.08) translateY(-2%);
  }

  .feature-thumbs {
    max-width: 100vw;
    padding: 0 12px 16px;
    scroll-padding-inline: 12px;
  }

  .gallery-thumb {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }

  .buy-panel h1 {
    max-width: 100%;
    font-size: clamp(29px, 9.2vw, 40px);
    line-height: 0.94;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .buy-panel {
    padding-top: 22px;
  }

  .price {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .bundle-price {
    margin-bottom: 14px;
  }

  .product-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .pack-option {
    min-height: 96px;
  }

  .mobile-buy {
    grid-template-columns: minmax(0, 1fr) auto;
    overflow: hidden;
  }

  .mobile-buy span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
