:root {
  --black: #050505;
  --ink: #171717;
  --muted: #6d6d6d;
  --line: #e5e5e5;
  --soft: #f7f7f7;
  --white: #ffffff;
  --gold: #f4c44c;
  --gold-dark: #b07c16;
  --red: #d81725;
  --blue: #1372f0;
  --green: #0a8f64;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.cookie-bar {
  position: relative;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 48px);
  background: #111;
  color: var(--white);
}

.cookie-bar strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.cookie-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.cookie-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contained-link,
.pill-button,
.cta,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 800;
}

.contained-link {
  padding: 0 24px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.locale-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-size: 0.92rem;
}

.locale-panel div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pill-button {
  border: 0;
  padding: 0 22px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.pill-button.dark {
  background: var(--black);
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 207px;
}

.brand img {
  width: 207px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 800;
}

.desktop-nav a {
  padding: 26px 0;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
  border-bottom-color: var(--black);
}

.utility-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.utility {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
}

.utility:hover {
  background: var(--soft);
}

.utility svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.mobile-menu,
.search-drawer,
.account-popover {
  position: fixed;
  z-index: 115;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu.is-open,
.search-drawer.is-open,
.account-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu {
  top: 76px;
  right: 16px;
  display: grid;
  gap: 6px;
  width: min(320px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 18px;
}

.mobile-menu a,
.account-popover a {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}

.mobile-menu a:hover,
.account-popover a:hover {
  background: var(--soft);
}

.search-drawer {
  top: 88px;
  left: 50%;
  width: min(680px, calc(100vw - 32px));
  padding: 22px;
  border-radius: 22px;
  transform: translate(-50%, -10px);
}

.search-drawer.is-open {
  transform: translate(-50%, 0);
}

.search-drawer label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.search-drawer div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-drawer input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
}

.search-drawer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.account-popover {
  top: 76px;
  right: 52px;
  display: grid;
  width: 240px;
  padding: 12px;
  border-radius: 18px;
}

.offer-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 58px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: #f7f7f7;
  text-align: center;
}

.offer-banner div {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.offer-banner a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.anchor-nav {
  position: sticky;
  top: 76px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.anchor-title span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 800;
}

.anchor-title strong {
  display: block;
  font-size: clamp(0.9rem, 1.4vw, 1.08rem);
}

.anchor-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.anchor-tabs a:hover {
  color: var(--black);
}

.anchor-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-link {
  min-height: 40px;
  padding: 0 6px;
  color: var(--black);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.62fr);
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(30px, 4vw, 56px) clamp(18px, 4vw, 56px) clamp(42px, 7vw, 82px);
  background: var(--white);
}

.gallery-area {
  min-width: 0;
}

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

.product-shot {
  margin: 0;
  overflow: hidden;
  min-height: 250px;
  border-radius: 22px;
  background: var(--soft);
  position: relative;
}

.product-shot.large {
  grid-row: span 2;
  min-height: 522px;
}

.product-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.product-shot figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.thumbnail-row button {
  width: 58px;
  height: 58px;
  border: 2px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(244, 196, 76, 0.2), transparent),
    var(--soft);
  cursor: pointer;
}

.thumbnail-row button:first-child {
  border-color: var(--black);
}

.buy-panel {
  position: sticky;
  top: 172px;
  min-width: 0;
  padding-bottom: 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.eyebrow,
.section-heading span,
.wide-band span,
.choice-grid article > span,
.offer-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.9vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.subhead {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 800;
}

.info-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.info-block h2 {
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
}

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

.info-grid div {
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
}

.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.info-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--black);
  font-size: 1.25rem;
}

.offer-card {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(244, 196, 76, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 196, 76, 0.28), transparent 34%),
    #fff9e8;
}

.offer-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 1.22rem;
  text-transform: uppercase;
}

.offer-card ul {
  margin: 0;
  padding-left: 18px;
  color: #4a3c17;
  font-weight: 700;
}

.buy-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  text-transform: uppercase;
}

.cta.primary {
  background: var(--black);
  color: var(--white);
}

.cta.secondary {
  background: var(--gold);
  color: var(--black);
}

.legal-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.choice-section,
.detail-section,
.faq-section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.choice-section {
  background: var(--soft);
}

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

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.detail-copy h2,
.wide-band h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.choice-grid article {
  min-height: 300px;
  padding: 26px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.choice-grid h3 {
  margin: 12px 0 12px;
  font-size: 1.55rem;
}

.choice-grid p {
  color: var(--muted);
}

.choice-grid a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.detail-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.spec-list {
  display: grid;
  gap: 12px;
}

.spec-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list strong {
  font-size: 1.05rem;
}

.spec-list span {
  color: var(--muted);
}

.wide-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(48px, 7vw, 76px) clamp(18px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
}

.wide-band span {
  color: rgba(255, 255, 255, 0.6);
}

.wide-band h2 {
  max-width: 850px;
}

.faq-section {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 1.06rem;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.footer-category {
  min-height: 280px;
  padding: 32px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.footer-category:last-child {
  border-right: 0;
}

.footer-category h3 {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.footer-category a {
  display: block;
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-category a:hover {
  color: var(--black);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.68);
}

.popup-overlay.is-hidden {
  display: none;
}

.popup-card {
  position: relative;
  width: min(440px, 100%);
  overflow: hidden;
  border: 1px solid rgba(244, 196, 76, 0.6);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 0%, rgba(244, 196, 76, 0.22), transparent 30%),
    #080808;
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.44);
}

.popup-card img {
  width: 100%;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
}

.popup-close::before,
.popup-close::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: var(--black);
}

.popup-close::before {
  transform: rotate(45deg);
}

.popup-close::after {
  transform: rotate(-45deg);
}

.popup-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 18px 8px;
}

.popup-buttons a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
}

.popup-buttons a:first-child {
  background: var(--white);
}

.popup-card p {
  margin: 0;
  padding: 10px 22px 22px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.popup-card p span {
  color: #ff4d4d;
}

.gold-particle {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(244, 196, 76, 0.8);
  animation: floaty 5s ease-in-out infinite;
}

.gold-particle.one {
  left: 34px;
  top: 38px;
}

.gold-particle.two {
  right: 44px;
  top: 128px;
  animation-delay: 1.2s;
}

.gold-particle.three {
  left: 68px;
  bottom: 112px;
  animation-delay: 2.4s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-18px);
    opacity: 1;
  }
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1160px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .global-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .utility-list {
    justify-self: end;
  }

  .anchor-nav,
  .product-hero,
  .detail-section,
  .wide-band {
    grid-template-columns: 1fr;
  }

  .anchor-tabs {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .buy-panel {
    position: static;
  }

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

  .footer-category {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .cookie-bar,
  .locale-panel,
  .offer-banner,
  .anchor-nav,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .cookie-bar {
    padding: 14px 16px;
  }

  .locale-panel,
  .offer-banner {
    align-items: stretch;
    text-align: left;
    padding: 12px 16px;
  }

  .locale-panel div,
  .offer-banner div {
    display: grid;
    justify-content: start;
  }

  .global-header {
    grid-template-columns: auto 1fr auto;
    min-height: 66px;
    padding: 0 14px;
  }

  .brand {
    min-width: 156px;
  }

  .brand img {
    width: 156px;
  }

  body .global-header .utility-list {
    display: none !important;
  }

  .menu-button {
    justify-self: end;
  }

  .anchor-nav {
    top: 66px;
    min-height: 0;
    padding: 14px 16px;
  }

  .anchor-actions,
  .buy-actions,
  .popup-buttons {
    grid-template-columns: 1fr;
  }

  .product-hero,
  .choice-section,
  .detail-section,
  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-grid,
  .info-grid,
  .choice-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .product-shot,
  .product-shot.large {
    min-height: 300px;
  }

  .choice-grid article {
    min-height: auto;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-category {
    min-height: 0;
    border-right: 0;
  }
}
