:root {
  --bg: #f3f4f6;
  --bg-elevated: #ffffff;
  --ink: #121417;
  --ink-soft: #4a5058;
  --line: #d8dce0;
  --accent: #f08912;
  --accent-deep: #c45e08;
  --accent-hot: #ffc44d;
  --steel: #2a3038;
  --mist: #e8eaee;
  --success: #1b7a4a;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(18, 20, 23, 0.08);
  --font-display: "Syne", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(240, 137, 18, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(255, 196, 77, 0.08), transparent 50%),
    linear-gradient(180deg, #eef0f3 0%, var(--bg) 40%, #eceef2 100%);
  line-height: 1.55;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(243, 244, 246, 0.82);
  border-bottom: 1px solid rgba(18, 20, 23, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 4.25rem;
  gap: 0.75rem;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-link:hover {
  background: var(--mist);
  color: var(--accent);
}

.cart-icon {
  display: block;
}

.cart-count {
  position: absolute;
  top: 0.15rem;
  right: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

.volume-note {
  margin: -0.35rem 0 1rem;
}

.cart-deal-banner {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(27, 122, 74, 0.12), rgba(240, 137, 18, 0.08));
  border: 1px solid rgba(27, 122, 74, 0.22);
}

.cart-deal-banner strong {
  font-size: 0.92rem;
  color: var(--success);
}

.cart-deal-banner span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.cart-deal-banner.is-nudge {
  background: linear-gradient(120deg, rgba(27, 122, 74, 0.1), rgba(42, 48, 56, 0.03));
  border-color: rgba(27, 122, 74, 0.22);
}

.cart-deal-banner.is-nudge strong {
  color: var(--success);
}

.buy-cta {
  display: grid;
  gap: 0.55rem;
}

.btn-checkout-link {
  text-align: center;
}

.btn-buy.is-added {
  background: var(--success);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.cart-lines {
  display: grid;
  gap: 0.85rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--mist);
}

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-line-compact {
  grid-template-columns: 56px 1fr auto;
}

.cart-line-compact img {
  width: 56px;
  height: 56px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.cart-qty button {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.cart-qty span {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 700;
}

.cart-remove {
  width: auto !important;
  padding: 0 0.55rem;
  border: 0 !important;
  background: transparent !important;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-decoration: underline;
}

.cart-line-total {
  font-weight: 700;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(18, 20, 23, 0.45);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.28s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  background: var(--bg-elevated);
  box-shadow: -18px 0 50px rgba(18, 20, 23, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--mist);
}

.cart-drawer-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.cart-drawer-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1.15rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer-empty {
  margin: 0.5rem 0 0;
}

.cart-drawer-foot {
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--mist);
  background: #fff;
  display: grid;
  gap: 0.65rem;
}

.linkish {
  display: inline;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  color: var(--accent);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

body.cart-drawer-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer-backdrop,
  .cart-drawer-panel {
    transition: none;
  }
}

.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

body.cart-has-items .buy-cta {
  padding-bottom: 0.15rem;
}


.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 3rem;
  width: auto;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav a {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  line-height: 1;
}

.nav a:hover {
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 20, 23, 0.18) 0%, rgba(18, 20, 23, 0.08) 35%, rgba(18, 20, 23, 0.72) 100%),
    linear-gradient(90deg, rgba(18, 20, 23, 0.45) 0%, transparent 55%);
}

.hero-copy {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 4.5rem;
  color: #fff;
  max-width: 36rem;
  animation: rise 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-copy .brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  max-width: 28rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(240, 137, 18, 0.28);
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-block {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  min-height: 3.35rem;
  padding: 0.7rem 1rem;
  line-height: 1.15;
  text-align: center;
  border-radius: 16px;
}

.btn-buy-main {
  display: block;
  font-weight: 700;
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  white-space: nowrap;
}

.btn-buy-meta {
  display: block;
  max-width: 100%;
  font-size: clamp(0.68rem, 2.8vw, 0.75rem);
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Product buy section — first viewport, ready to sell */
.buy {
  padding: 4.5rem 0 3rem;
}

.buy-first {
  padding: 1.25rem 0 2.5rem;
  min-height: calc(100vh - 4.25rem);
}

.product-brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 0.35rem;
  color: var(--accent);
}

.buy-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.buy-panel .lede {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
}

.center-note {
  text-align: center;
  margin: 0.75rem 0 0;
}

.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: start;
}

.gallery {
  position: sticky;
  top: 5rem;
  width: 100%;
  min-width: 0;
}

.gallery-main {
  position: relative;
  width: min(100%, 640px);
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  max-height: min(72dvh, 640px);
  /* Keep square when height is capped */
  max-width: min(100%, 72dvh, 640px);
  background: var(--bg-elevated);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-main img,
.gallery-zoom img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.35s ease, transform 0.6s ease;
}

.gallery-main img.is-switching {
  opacity: 0.35;
  transform: scale(1.02);
}

.thumbs {
  display: none;
}

.thumb {
  display: none;
}

.model-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0.15rem 0 1.1rem;
}

.model-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-elevated);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 0 rgba(18, 20, 23, 0.04);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.model-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.model-card-text {
  display: grid;
  gap: 0.1rem;
  padding: 0.45rem 0.5rem 0.55rem;
}

.model-card-text strong {
  font-size: 0.86rem;
  line-height: 1.2;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.model-card-text small {
  font-size: 0.72rem;
  color: var(--ink-soft);
  -webkit-text-fill-color: var(--ink-soft);
  line-height: 1.25;
}

.model-card:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 137, 18, 0.45);
}

.model-card[aria-pressed="true"] {
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(240, 137, 18, 0.22);
}

.variant-grid,
.variant-option {
  display: none;
}

.buy-panel h1,
.buy-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}

.buy-panel h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  line-height: 1.1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.muted {
  color: var(--ink-soft);
}

.fine {
  font-size: 0.92rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 137, 18, 0.18);
}

.pack-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0.15rem 0 0.35rem;
}

.pack-option {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0.65rem;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elevated);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pack-option:hover {
  transform: translateY(-1px);
  border-color: #c5cad1;
}

.pack-option[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: 0 8px 22px rgba(18, 20, 23, 0.08);
}

.pack-option-best {
  position: relative;
}

.pack-option-best::after {
  content: "Best value";
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pack-qty {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.pack-total {
  font-weight: 700;
  font-size: 0.98rem;
}

.pack-meta {
  font-size: 0.72rem;
  color: var(--ink-soft);
  line-height: 1.25;
}

.pack-save-note {
  margin: 0 0 0.75rem;
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 600;
}

.qty-row,
.qty-control {
  display: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.trust-item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* Sections */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.headline-accent {
  color: var(--accent);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-head-wide {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.details-band {
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(240, 137, 18, 0.1), transparent 55%),
    radial-gradient(700px 360px at 0% 40%, rgba(42, 48, 56, 0.06), transparent 50%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55) 30%, transparent);
}

.details-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.details-hero-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.details-display {
  display: grid;
  gap: 0.15rem;
  margin: 0 0 0.85rem;
}

.details-display-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.details-display-accent {
  background: linear-gradient(90deg, var(--accent), #ff6b35);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.details-intro {
  max-width: 34rem;
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.details-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.details-stats li {
  display: grid;
  gap: 0.05rem;
  min-width: 6.5rem;
  padding: 0.7rem 0.95rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(18, 20, 23, 0.07);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(18, 20, 23, 0.05);
}

.details-stats strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.details-stats span {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.details-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 22rem;
}

.details-mosaic-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 18px 40px rgba(18, 20, 23, 0.12);
  animation: rise 0.8s ease both;
}

.details-mosaic-item-1 {
  grid-row: 1 / span 2;
  animation-delay: 0.05s;
}

.details-mosaic-item-2 { animation-delay: 0.12s; }
.details-mosaic-item-3 { animation-delay: 0.18s; }
.details-mosaic-item-4 { animation-delay: 0.24s; }

.details-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.details-mosaic-item:hover img {
  transform: scale(1.04);
}

.details-mosaic-item figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 20, 23, 0.78);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.details-ticker-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 0 1.75rem;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(18, 20, 23, 0.07);
  background: rgba(255, 255, 255, 0.45);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.details-ticker {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: details-ticker 28s linear infinite;
}

.details-ticker span {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18, 20, 23, 0.42);
}

.details-ticker span::after {
  content: "•";
  margin-left: 2rem;
  color: var(--accent);
}

.details-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.feature-bento {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem 1.15rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(18, 20, 23, 0.06);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 14px 32px rgba(18, 20, 23, 0.05);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: rise 0.75s ease both;
}

.feature-bento:nth-child(2) { animation-delay: 0.06s; }
.feature-bento:nth-child(3) { animation-delay: 0.1s; }
.feature-bento:nth-child(4) { animation-delay: 0.14s; }
.feature-bento:nth-child(5) { animation-delay: 0.18s; }
.feature-bento:nth-child(6) { animation-delay: 0.22s; }
.feature-bento:nth-child(7) { animation-delay: 0.26s; }

.feature-bento:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 137, 18, 0.2);
  box-shadow: 0 20px 40px rgba(18, 20, 23, 0.1);
}

.feature-bento-hero {
  grid-column: span 6;
  grid-row: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  padding: 0;
  min-height: 100%;
}

.feature-bento:not(.feature-bento-hero):nth-child(2),
.feature-bento:not(.feature-bento-hero):nth-child(3) {
  grid-column: span 6;
}

.feature-bento:not(.feature-bento-hero):nth-child(n + 4) {
  grid-column: span 4;
}

.feature-bento-media {
  position: relative;
  min-height: 100%;
  background: linear-gradient(145deg, #eceef2, #d8dce0);
}

.feature-bento-media img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  display: block;
}

.feature-bento-body {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1.35rem 1.3rem;
}

.feature-bento-hero .feature-mark {
  margin-bottom: 0.15rem;
}

.feature-num {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(18, 20, 23, 0.06);
}

.feature-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(240, 137, 18, 0.08);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-bento h3,
.feature-bento-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.feature-bento p,
.feature-bento-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.details-moments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.details-moment {
  position: relative;
  padding: 1.2rem 1.15rem 1.1rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1px solid rgba(18, 20, 23, 0.06);
  box-shadow: 0 14px 32px rgba(18, 20, 23, 0.05);
  overflow: hidden;
}

.details-moment::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 137, 18, 0.22), transparent 68%);
  pointer-events: none;
}

.details-moment-index {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.details-moment h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.details-moment p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.details-closer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 0.85rem;
  align-items: stretch;
}

.details-specs {
  padding: 1.35rem 1.4rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(18, 20, 23, 0.06);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 14px 32px rgba(18, 20, 23, 0.05);
}

.details-specs-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.details-specs ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.details-specs li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.details-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(240, 137, 18, 0.12);
}

.details-cta {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: 1.35rem 1.4rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(145deg, #f08912, #c45e08);
  color: #fff;
  box-shadow: 0 20px 44px rgba(240, 137, 18, 0.22);
}

.details-cta-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.details-cta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.details-cta p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.details-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.details-cta-price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.details-cta .btn {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 10px 24px rgba(18, 20, 23, 0.14);
}

.details-cta .btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

@keyframes details-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .details-ticker {
    animation: none;
  }

  .details-mosaic-item,
  .feature-bento {
    animation: none;
  }
}

.showcase {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.25rem 0 1.5rem;
  margin-bottom: 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.showcase::-webkit-scrollbar {
  height: 6px;
}

.showcase::-webkit-scrollbar-thumb {
  background: #c5cad1;
  border-radius: 99px;
}

.showcase-item {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 20, 23, 0.08);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: rise 0.7s ease both;
}

.showcase-item:nth-child(2) { animation-delay: 0.06s; }
.showcase-item:nth-child(3) { animation-delay: 0.12s; }
.showcase-item:nth-child(4) { animation-delay: 0.18s; }
.showcase-item:nth-child(5) { animation-delay: 0.24s; }
.showcase-item:nth-child(6) { animation-delay: 0.3s; }

.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(18, 20, 23, 0.12);
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.showcase-caption {
  display: block;
  padding: 0.55rem 0.7rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  width: min(960px, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  background: transparent;
  overflow: visible;
  z-index: 100;
}

.lightbox::backdrop {
  background: rgba(10, 12, 15, 0.82);
  backdrop-filter: blur(6px);
}

.lightbox-inner {
  position: relative;
  background: #0f1114;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-inner img {
  display: block;
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  background: #0f1114;
}

.lightbox-caption {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev { left: 0.55rem; }
.lightbox-next { right: 0.55rem; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

body.lightbox-open {
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.reviews-band {
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(42, 48, 56, 0.05), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
}

.reviews-social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin: 0 auto 2rem;
  max-width: 52rem;
}

.reviews-activity {
  display: flex;
  align-items: center;
}

.reviews-avatars {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.reviews-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(18, 20, 23, 0.12);
  margin-left: -12px;
  position: relative;
}

.reviews-avatars img:first-child {
  margin-left: 0;
}

.reviews-orders-pill {
  display: grid;
  gap: 0.05rem;
  margin-left: -16px;
  padding: 0.45rem 1.1rem 0.45rem 1.35rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  line-height: 1.15;
  box-shadow: 0 8px 24px rgba(18, 20, 23, 0.18);
}

.reviews-orders-pill strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.reviews-orders-pill span {
  font-size: 0.72rem;
  opacity: 0.88;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}

.reviews-aggregate-stars {
  --star-empty: #d8dce0;
  --star-fill: #f5b800;
  display: inline-grid;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(18, 20, 23, 0.12));
}

.reviews-aggregate-stars span {
  background: linear-gradient(
    90deg,
    var(--star-fill) var(--rating-pct),
    var(--star-empty) var(--rating-pct)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviews-aggregate-score {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.reviews-aggregate-count {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  background: var(--bg-elevated);
  border: 1px solid rgba(18, 20, 23, 0.06);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: 0 12px 30px rgba(18, 20, 23, 0.05);
}

.review-stars {
  display: inline-flex;
  gap: 0.12rem;
  color: var(--accent-hot);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.review-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
}

.review-meta {
  display: grid;
  gap: 0.15rem;
  margin-top: auto;
}

.review-meta strong {
  font-size: 0.92rem;
}

.feature {
  position: relative;
  background: var(--bg-elevated);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.45rem 1.35rem 1.4rem;
  border: 1px solid rgba(18, 20, 23, 0.06);
  box-shadow: 0 12px 30px rgba(18, 20, 23, 0.04);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.85;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 137, 18, 0.18);
}

.feature-mark {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.85rem;
  color: var(--accent);
}

.feature-mark svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 48rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid rgba(240, 137, 18, 0.45);
  background: var(--bg-elevated);
  border-radius: 0 12px 12px 0;
}

.site-footer {
  border-top: 0;
  padding: 3rem 0 3.25rem;
  margin-top: 0;
  background:
    linear-gradient(180deg, #eceef2 0%, #e4e7ec 100%);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 55%);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: end;
}

.footer-brand {
  margin: 0 0 0.55rem;
}

.footer-brand .brand-logo {
  height: 7rem;
}

.footer-tagline {
  margin: 0;
  color: var(--ink-soft);
  max-width: 22rem;
}

.footer-meta {
  text-align: right;
}

.footer-link {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(18, 20, 23, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Checkout */
.checkout-page {
  padding: 2rem 0 4rem;
}

.checkout-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.checkout-back {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.checkout-back:hover {
  color: var(--accent);
}

.checkout-main h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}

.checkout-lead {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.checkout-order {
  margin: 0 0 1.5rem;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid var(--mist);
}

.checkout-aside-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.checkout-aside-head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.checkout-edit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.checkout-edit:hover {
  color: var(--accent);
}

.checkout-summary-lines {
  display: grid;
  gap: 0.85rem;
}

.checkout-line {
  margin: 0;
}

.checkout-order .cart-line-compact img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
}

.checkout-order .summary-total {
  margin-top: 0.85rem;
}

.label-optional {
  font-weight: 500;
  color: var(--ink-soft);
}

.checkout-main .field {
  margin-bottom: 0;
}

.checkout-main #submit-btn {
  margin-top: 1.25rem;
}

.panel {
  background: var(--bg-elevated);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(18, 20, 23, 0.06);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.panel h1,
.panel h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.summary-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.summary-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--mist);
  padding-top: 1rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

#payment-element {
  margin: 0.5rem 0 1rem;
}

.payment-element-box {
  min-height: 3rem;
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.pay-method {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.express-checkout {
  margin: 0 0 0.85rem;
}

.pay-separator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.pay-separator::before,
.pay-separator::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.pay-loading {
  padding: 0.75rem 0;
}

.pay-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.alert {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-error {
  background: #fde8ea;
  color: #8a0c16;
}

.alert-info {
  background: #eef2f7;
  color: var(--steel);
}

.alert-success {
  background: #e7f6ee;
  color: var(--success);
}

.success-card {
  max-width: 560px;
  margin: 3rem auto;
  text-align: center;
}

.success-card h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0 0 0.6rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: #e7f6ee;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@keyframes heroIn {
  from { transform: scale(1.08); opacity: 0.7; }
  to { transform: scale(1.02); opacity: 1; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .buy-grid,
  .feature-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .details-hero,
  .details-closer,
  .details-moments {
    grid-template-columns: 1fr;
  }

  .details-mosaic {
    min-height: 18rem;
  }

  .details-bento {
    grid-template-columns: 1fr;
  }

  .feature-bento,
  .feature-bento-hero {
    grid-column: auto;
    grid-row: auto;
  }

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

  .details-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .details-cta .btn {
    width: 100%;
  }

  .showcase {
    grid-auto-columns: minmax(150px, 70vw);
  }

  .buy-first .buy-grid {
    gap: 1rem;
  }

  .buy-first .buy-panel {
    order: 0;
  }

  .buy-first .gallery {
    order: -1;
  }

  .buy-first .buy-panel .trust-strip {
    display: none;
  }

  .buy-first .gallery-main {
    width: 100%;
    max-width: min(100%, 56dvh, 420px);
    max-height: min(56dvh, 420px);
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  .buy-first .price-row {
    margin: 0.4rem 0 0.85rem;
  }

  .buy-first .field {
    margin-bottom: 0.75rem;
  }

  .buy-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(243, 244, 246, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(18, 20, 23, 0.08);
    box-shadow: 0 -10px 30px rgba(18, 20, 23, 0.08);
  }

  .buy-cta .pay-note {
    display: none;
  }

  .buy-cta .btn-buy,
  .buy-cta .btn-checkout-link {
    width: 100%;
    max-width: min(var(--max), 100%);
    margin-inline: auto;
  }

  .buy-cta .btn-buy {
    min-height: 3.5rem;
    padding: 0.7rem 1rem;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(240, 137, 18, 0.28);
  }

  body.sell-first .site-footer {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .brand-logo {
    height: 2.5rem;
  }

  .footer-brand .brand-logo {
    height: 5.75rem;
  }

  .cart-link {
    margin-left: auto;
  }

  .model-picker {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }

  .model-card-text {
    padding: 0.35rem 0.4rem 0.45rem;
  }

  .model-card-text strong {
    font-size: 0.78rem;
  }

  .model-card-text small {
    display: none;
  }

  .gallery {
    position: static;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--max), calc(100% - 1.5rem));
  }

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

  .model-picker {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 3.25rem 0;
  }

  .buy-first .gallery-main {
    width: 100%;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
