:root {
  --navy: #07142d;
  --navy-2: #0b1d3d;
  --tangerine: #ff5a00;
  --tangerine-2: #ff7a1a;
  --white: #ffffff;
  --paper: #f7f8fb;
  --mist: #e7ebf2;
  --ink: #10131b;
  --muted: #6d7381;
  --shadow: 0 28px 80px rgba(7, 20, 45, 0.22);
}

* {
  box-sizing: border-box;
}

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

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

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

button,
select {
  font: inherit;
}

.shop-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(7, 20, 45, 0.06), rgba(247, 248, 251, 0) 340px),
    var(--paper);
}

.shop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1220px) / 2));
  color: var(--white);
  background: var(--navy);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 1000;
  text-transform: uppercase;
}

.logo-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--tangerine);
  box-shadow: 0 18px 38px rgba(255, 90, 0, 0.32);
}

.logo-box svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
}

.brand span:last-child {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.top-links a,
.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 1000;
  text-transform: uppercase;
}

.top-links a,
.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--tangerine);
  font-weight: 1000;
  text-transform: uppercase;
}

.product-shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 34px;
  align-items: end;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 34px;
}

.collection-callout {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 90, 0, 0.32), transparent 36%),
    var(--navy);
  box-shadow: var(--shadow);
}

.collection-callout strong {
  font-family: Impact, "Arial Narrow", Haettenschweiler, sans-serif;
  font-size: 2.1rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.collection-callout span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.4;
}

.collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 24px;
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.collection-toolbar button,
.sort-control {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(7, 20, 45, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 1000;
  text-transform: uppercase;
}

.collection-toolbar button {
  padding: 0 16px;
  cursor: pointer;
}

.collection-toolbar button.is-active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.sort-control {
  border-radius: 8px;
  padding: 0 12px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 78px;
}

.collection-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 45, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 20, 45, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(7, 20, 45, 0.16);
}

.collection-card[hidden] {
  display: none;
}

.product-image {
  display: grid;
  place-items: center;
  min-height: 265px;
  background: linear-gradient(180deg, #ffffff, #f2f4f8);
}

.product-image img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}

.card-meta {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.card-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-meta strong {
  min-height: 44px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.22;
}

.card-price {
  color: var(--tangerine);
  font-family: Impact, "Arial Narrow", Haettenschweiler, sans-serif;
  font-size: 1.85rem;
  line-height: 0.96;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--navy);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
  gap: 42px;
  align-items: start;
}

.product-media,
.purchase-panel,
.details-band,
.related-card {
  min-width: 0;
  border: 1px solid rgba(7, 20, 45, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-media {
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: auto;
}

.product-media-single {
  display: grid;
  min-height: 600px;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 90, 0, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff, #f3f5f8);
}

.product-media-single img {
  width: min(520px, 100%);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(7, 20, 45, 0.12));
}

.purchase-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
  position: sticky;
  top: 24px;
}

.kicker {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
.price {
  margin: 0;
  color: var(--navy);
  font-family: Impact, "Arial Narrow", Haettenschweiler, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
}

.stars {
  color: var(--tangerine);
  letter-spacing: 2px;
}

.description {
  margin: 0;
  color: #303745;
  font-size: 1.1rem;
  line-height: 1.5;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
  padding-top: 4px;
}

.price {
  color: var(--tangerine);
  font-size: 3rem;
  line-height: 0.9;
}

.price-note {
  color: var(--muted);
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(7, 20, 45, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.primary-button {
  width: 100%;
  min-height: 60px;
  border: 0;
  color: var(--white);
  background: var(--tangerine);
  box-shadow: 0 18px 48px rgba(255, 90, 0, 0.3);
  cursor: pointer;
}

.small-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.details-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 36px;
  margin-top: 42px;
  padding: 34px;
}

.feature-list,
.included-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.included-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: #303745;
  font-weight: 800;
  line-height: 1.4;
}

.feature-list li::before,
.included-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--tangerine);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.related-card {
  overflow: hidden;
}

.related-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.related-card span {
  display: block;
  padding: 16px;
  color: var(--navy);
  font-weight: 1000;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .collection-hero,
  .product-layout,
  .details-band {
    grid-template-columns: 1fr;
  }

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

  .purchase-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .shop-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-links {
    justify-content: flex-start;
  }

  .product-shell {
    width: calc(100% - 32px);
    padding-top: 34px;
  }

  .collection-hero,
  .collection-toolbar,
  .collection-grid {
    width: calc(100% - 32px);
  }

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

  .purchase-panel,
  .details-band {
    padding: 22px;
  }

  .product-media-single {
    min-height: 390px;
  }

  .field-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 2.45rem;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2.1rem;
  }
}
