:root {
  --blue: #123c66;
  --orange: #ef7d1a;
  --ink: #0c1016;
  --muted: #475569;
  --bg: #f6f3ec;
  --panel: #fffdf8;
  --line: rgba(12, 16, 22, 0.08);
  --white: #fff;
  --header-h: 72px;
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 125, 26, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(18, 60, 102, 0.1), transparent 30%),
    var(--bg);
}

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

a {
  color: inherit;
}

.merch-page {
  padding-bottom: 110px;
}

.hero,
.section,
.metrics,
.shop-band,
.info-grid {
  width: min(1240px, 94vw);
  margin-inline: auto;
}

.hero {
  padding: 34px 0 22px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: clamp(20px, 3vw, 36px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero h1,
.section-heading h2,
.shop-band h2,
.info-card h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 8ch;
}

.hero h1 span {
  color: var(--blue);
}

.hero-text,
.section-heading p,
.shop-band p,
.info-card p,
.faq-card p,
.product-copy,
.product-specs,
.hero-points,
.info-list {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions,
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 28px 0 22px;
}

.merch-page .btn,
.sticky-order-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 16px;
  border: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.merch-page .btn:hover,
.sticky-order-bar a:hover {
  transform: translateY(-1px);
}

.merch-page .btn-primary,
.sticky-order-bar a {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--orange));
  box-shadow: 0 10px 24px rgba(18, 60, 102, 0.22);
  border-color: #fff;
  border-width: 3px;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}

.merch-page .btn-ghost {
  color: var(--blue);
  border-color: rgba(18, 60, 102, 0.18);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(1.1) blur(4px);
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  transform: translateY(-50%);
}

.hero-visual {
  min-height: 640px;
  position: relative;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 60px rgba(12, 16, 22, 0.16);
}

.hero-card img,
.product-media img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 0 118px 82px 0;
}

.hero-card-detail {
  width: min(300px, 44%);
  height: 320px;
  right: 0;
  top: 34px;
}

.hero-card-lifestyle {
  width: min(300px, 46%);
  height: 330px;
  right: 28px;
  bottom: 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px auto 8px;
}

.metric {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(18, 60, 102, 0.08);
  box-shadow: 0 16px 36px rgba(18, 60, 102, 0.07);
}

.metric-value {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--blue);
}

.metric-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: 72px 0 0;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.section-heading {
  max-width: 60ch;
  margin-bottom: 28px;
}

.section-heading h2,
.shop-band h2,
.info-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p,
.shop-band p,
.info-card p {
  margin: 12px 0 0;
  line-height: 1.7;
}

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

.option-banner {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(18, 60, 102, 0.06), rgba(239, 125, 26, 0.12));
  border: 1px solid rgba(18, 60, 102, 0.1);
  box-shadow: 0 14px 32px rgba(12, 16, 22, 0.06);
}

.option-banner-label,
.option-banner-copy,
.option-banner-price {
  margin: 0;
}

.option-banner-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.option-banner-copy {
  margin-top: 10px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 700;
}

.option-banner-price {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--blue);
  font-weight: 800;
}

.product-card,
.info-card,
.faq-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.92));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 16, 22, 0.08);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
}

.product-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 16, 22, 0.78);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.product-type {
  margin: 0 0 6px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 800;
}

.product-body h3,
.faq-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.product-copy {
  margin: 10px 0 0;
  line-height: 1.6;
}

.product-specs,
.info-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.story-panel {
  padding: 18px;
  border-radius: 22px;
  background: rgba(18, 60, 102, 0.05);
}

.story-panel p {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.story-panel ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.shop-band {
  margin-top: 72px;
  padding: 32px;
  border-radius: 34px;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 125, 26, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(18, 60, 102, 0.98), rgba(11, 34, 57, 0.98));
  color: var(--white);
  box-shadow: 0 26px 60px rgba(18, 60, 102, 0.26);
}

.shop-band .section-kicker,
.shop-band h2,
.shop-band p {
  color: var(--white);
}

.shop-band-btn {
  background: var(--white);
  color: var(--blue);
  min-width: 220px;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.9);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  grid-auto-flow: dense;
}

.gallery-card {
  border-radius: 26px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 16px 36px rgba(12, 16, 22, 0.1);
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 580px;
}

.info-grid {
  padding-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.faq-card {
  padding: 28px;
}

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

.faq-card p {
  line-height: 1.7;
}

.faq-card a {
  color: var(--blue);
  font-weight: 700;
}

.sticky-order-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(28px);
  width: min(760px, calc(100vw - 24px));
  padding: 12px 14px 12px 18px;
  border-radius: 999px;
  background: rgba(12, 16, 22, 0.9);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 20px 44px rgba(12, 16, 22, 0.28);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    visibility 0s linear 0.65s;
}

.sticky-order-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    visibility 0s linear 0s;
}

.sticky-order-bar.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.sticky-order-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-order-bar p {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.sticky-order-bar a {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 16px;
}

.sticky-order-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s ease, border-color 0.2s ease;
}

.sticky-order-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.sticky-order-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .hero-shell,
  .product-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-shell {
    align-items: start;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-card-main {
    inset: 0 72px 96px 0;
  }

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

@media (max-width: 800px) {
  .hero,
  .section,
  .metrics,
  .shop-band,
  .info-grid {
    width: min(1220px, 92vw);
  }

  .hero-shell,
  .metrics,
  .product-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy {
    padding-inline: 6px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-card {
    position: relative;
    width: auto;
    height: auto;
    right: auto;
    bottom: auto;
    top: auto;
    inset: auto;
  }

  .hero-card-main {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 5;
  }

  .hero-card-detail,
  .hero-card-lifestyle {
    aspect-ratio: 4 / 5;
  }

  .gallery-card.tall {
    grid-row: span 1;
    min-height: 320px;
  }

  .shop-band {
    padding: 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-band-btn {
    width: 100%;
  }

  .sticky-order-bar {
    border-radius: 26px;
    align-items: stretch;
    flex-direction: column;
  }

  .sticky-order-actions {
    width: 100%;
    flex-direction: column;
  }

  .sticky-order-bar a {
    width: 100%;
  }

  .sticky-order-close {
    width: 100%;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .product-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .product-actions .btn {
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .metrics {
    gap: 14px;
  }

  .metric,
  .product-body,
  .info-card,
  .faq-card {
    border-radius: 22px;
  }

  .gallery-card,
  .hero-card {
    border-radius: 22px;
  }
}
