/* Pulsio FR — Compression (dark theme) */
:root {
  --bg: #0b0f11;
  --bg-soft: #141a1d;
  --surface: #171d21;
  --surface-2: #1e262b;
  --text: #f2f4f5;
  --text-muted: #9aa5aa;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #0a0a0a;
  --teal: #7eb3bc;
  --teal-soft: #2a3f44;
  --sale: #ff6b6b;
  --trust: #00b67a;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
  --ticker-h: 36px;
  --font: "Montserrat", system-ui, sans-serif;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Ticker */
.ticker {
  background: #050708;
  color: #fff;
  height: var(--ticker-h);
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 40s linear infinite;
  padding: 0.55rem 0;
}

.ticker-track span {
  white-space: nowrap;
  opacity: 0.95;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header--transparent {
  position: absolute;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}

.site-header--transparent:has(.mobile-nav.is-open) {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header--transparent.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 24px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
  color: #fff;
}

.nav-desktop a:hover {
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: inherit;
  color: #fff;
  opacity: 0.85;
  padding: 0;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] {
  opacity: 1;
}

.compression-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--surface-2);
  color: var(--text);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 0.35rem;
  z-index: 120;
}

.compression-menu-item {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem !important;
  border-radius: 8px;
  font-size: 0.78rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 1 !important;
}

.compression-menu-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.compression-menu-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg);
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  border-radius: 50%;
  transition: background 0.2s;
}

.site-header .icon-btn {
  color: #fff;
}

.icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.site-header .icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
  padding: 1rem 0 1.5rem;
  color: #fff;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .logo img { height: 28px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s, opacity 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: #fff;
  color: #0a0a0a;
}

.btn-primary:hover {
  background: #e8e8e8;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.btn-full {
  width: 100%;
}

.btn-light {
  background: #fff;
  color: #0a0a0a;
}

.btn-light:hover {
  background: #e8e8e8;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--ticker-h));
  display: flex;
  align-items: center;
  background: #0a0a0a;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 12, 0.15) 0%,
      rgba(8, 10, 12, 0.35) 45%,
      rgba(8, 10, 12, 0.72) 100%
    ),
    linear-gradient(
      to top,
      rgba(8, 10, 12, 0.45) 0%,
      transparent 40%
    );
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}

.hero-content {
  color: #fff;
  max-width: 520px;
  text-align: left;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-content > p {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 40ch;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover {
  background: #fff;
  color: #0a0a0a;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.hero-trust strong {
  color: var(--trust);
  font-weight: 700;
}

.hero-trust img {
  height: 16px;
  width: auto;
}

.hero-trust span {
  opacity: 0.9;
}

@media (max-width: 799px) {
  .hero-shell {
    justify-content: flex-start;
    align-items: flex-end;
    min-height: calc(100vh - var(--ticker-h));
    padding-bottom: 3rem;
  }

  .hero-media::after {
    background: linear-gradient(
      to top,
      rgba(8, 10, 12, 0.85) 0%,
      rgba(8, 10, 12, 0.45) 45%,
      rgba(8, 10, 12, 0.25) 100%
    );
  }

  .hero-media img {
    object-position: center 15%;
  }
}

/* Trustpilot reviews block */
.reviews-section {
  background: #000;
  padding: 3.5rem 0 4rem;
  color: #fff;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 2.25rem;
}

.reviews-summary-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.65rem;
}

.reviews-summary h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
}

.reviews-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.reviews-meta a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: #fff;
  margin-left: 0.15rem;
}

.tp-stars {
  display: inline-flex;
  gap: 2px;
}

.tp-star {
  width: 28px;
  height: 28px;
  background: #00b67a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tp-star::before {
  content: "★";
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.tp-star--half {
  background: linear-gradient(90deg, #00b67a 55%, #dcdce6 55%);
}

.tp-stars--sm .tp-star {
  width: 18px;
  height: 18px;
}

.tp-stars--sm .tp-star::before {
  font-size: 11px;
}

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

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-card {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 1.15rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  min-height: 210px;
}

.review-card .tp-stars {
  margin-bottom: 0.65rem;
}

.review-meta {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.review-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
}

.review-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card.is-expanded .review-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-more {
  margin-top: 0.75rem;
  padding: 0;
  border: none;
  background: none;
  color: #00b67a;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  align-self: flex-start;
  font-family: inherit;
}

.review-more:hover {
  color: #2fd696;
}

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.trust-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.trust-score strong {
  color: var(--trust);
  font-size: 1.1rem;
}

.trust-score img {
  height: 18px;
  width: auto;
}

.trust-score span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

/* Featured product */
.featured {
  background: var(--surface);
}

.featured-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .featured-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.featured-image {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.featured-info h2,
.product-info h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

.price {
  font-size: 1.75rem;
  font-weight: 800;
}

.price-compare {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.save-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sale);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.featured-info p,
.product-info .lead {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.feature-list {
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Peace of mind */
.peace {
  background: var(--bg-soft);
}

.peace-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .peace-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.peace-item {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.peace-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.peace-unit {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.peace-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.peace-item ul {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.benefits-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
}

.benefits-copy p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.benefits-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specs / included */
.specs-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.spec-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.spec-box h3 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-box ul {
  display: grid;
  gap: 0.65rem;
}

.spec-box li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.spec-box li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-box li span:last-child {
  color: var(--text-muted);
  text-align: right;
}

/* Product page */
.product-page {
  padding: 2rem 0 4rem;
}

.product-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
  }
}

.gallery-main {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
}

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

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.gallery-thumbs button {
  border: 2px solid transparent;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  aspect-ratio: 1;
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

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

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
  color: var(--text);
}

.qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
}

.qty-control input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 700;
  color: inherit;
}

.product-actions {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.trust-mini {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.trust-mini li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.trust-mini li::before {
  content: "✓";
  font-weight: 700;
  color: var(--trust);
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 200;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: var(--surface-2);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

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

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

.cart-drawer-header h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}

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

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item-top strong {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cart-item-remove {
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 0;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.85rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.05rem;
}

body.cart-open {
  overflow: hidden;
}

/* Checkout */
.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
}

.checkout-layout {
  display: grid;
  gap: 2rem;
  padding-bottom: 4rem;
}

@media (min-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.checkout-form,
.checkout-summary,
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.checkout-form fieldset {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.checkout-form legend {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text);
}

.form-row select option {
  background: var(--surface-2);
  color: var(--text);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(126, 179, 188, 0.45);
  border-color: var(--teal);
}

.form-error {
  display: block;
  color: var(--sale);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1.1em;
}

.form-error[hidden],
[hidden] {
  display: none !important;
}

.form-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-option {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.payment-option:has(input:checked) {
  border-color: var(--teal);
  background: rgba(126, 179, 188, 0.08);
}

.payment-option input {
  margin-top: 0.2rem;
  accent-color: var(--teal);
}

.payment-option-body {
  display: grid;
  gap: 0.2rem;
}

.payment-option-body strong {
  font-size: 0.95rem;
}

.payment-option-body span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-fields {
  margin-top: 0.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.card-fields[hidden] {
  display: none !important;
}

.checkout-summary h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-product {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.checkout-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.summary-lines {
  display: grid;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.summary-lines div {
  display: flex;
  justify-content: space-between;
}

.summary-lines .total {
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

/* Contact page */
.contact-page {
  padding-bottom: 0;
}

.contact-hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.contact-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 10, 12, 0.92) 0%,
    rgba(8, 10, 12, 0.45) 45%,
    rgba(8, 10, 12, 0.2) 100%
  );
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
  max-width: 620px;
  color: #fff;
}

.contact-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-hero-copy h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.contact-hero-copy p:last-child {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 42ch;
}

.contact-main {
  padding: 3rem 0 1rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }
}

.contact-aside-photo {
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}

.contact-aside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-list {
  display: grid;
  gap: 1.35rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info-block a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.contact-info-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 1.5rem 1.85rem;
}

@media (min-width: 700px) {
  .contact-form-panel {
    padding: 2rem 2rem 2.1rem;
  }
}

.contact-form-panel h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-form-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-success {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  background: rgba(0, 182, 122, 0.12);
  border: 1px solid rgba(0, 182, 122, 0.35);
  color: #b7f0d5;
  font-size: 0.92rem;
}

.contact-gallery {
  margin-top: 2.5rem;
}

.contact-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 0.35rem;
  min-height: 280px;
}

.contact-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  min-height: 220px;
}

.contact-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 0.5s ease;
}

.contact-gallery-grid figure:hover img {
  transform: scale(1.04);
}

@media (max-width: 799px) {
  .contact-gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-gallery-grid img {
    min-height: 200px;
    max-height: 280px;
  }
}

/* Content page (generic) */
.content-page {
  padding-bottom: 4rem;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.content-card h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--text-muted);
}

.content-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.4rem;
  margin: 0.5rem 0 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
}

/* FAQ page layout */
.faq-page {
  padding-bottom: 0;
}

.faq-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(126, 179, 188, 0.12), transparent 60%),
    linear-gradient(180deg, #12181b 0%, var(--bg) 100%);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.faq-hero-inner {
  max-width: 720px;
  text-align: center;
}

.faq-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.faq-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-lead {
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  max-width: 48ch;
  font-size: 1.05rem;
}

.faq-quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.faq-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s, border-color 0.15s;
  color: var(--text);
}

.faq-chip:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.22);
}

.faq-help-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: -1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .faq-help-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faq-help-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}

.faq-help-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.faq-help-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.faq-help-icon svg {
  width: 22px;
  height: 22px;
}

.faq-help-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.faq-help-card span:last-child {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.faq-sections {
  max-width: 800px;
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

.faq-section-head {
  margin-bottom: 0.85rem;
}

.faq-section-head h2 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-accordion {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-acc {
  border-bottom: 1px solid var(--border);
}

.faq-acc:last-child {
  border-bottom: none;
}

.faq-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
}

.faq-acc summary::-webkit-details-marker {
  display: none;
}

.faq-acc summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  position: relative;
}

.faq-acc-icon::before,
.faq-acc-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.faq-acc-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-acc-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-acc[open] .faq-acc-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-acc[open] summary {
  background: rgba(255, 255, 255, 0.06);
}

.faq-acc-body {
  padding: 0 1.25rem 1.2rem;
}

.faq-acc-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-acc-body a {
  text-decoration: underline;
}

.faq-cta {
  background: var(--accent);
  color: #e8eeef;
  padding: 3rem 0;
}

.faq-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.faq-cta h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
}

.faq-cta p {
  margin: 0;
  opacity: 0.85;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.faq-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.faq-cta .btn-secondary:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.faq-cta .btn-primary {
  background: #fff;
  color: #0a0a0a;
}

.faq-cta .btn-primary:hover {
  background: #e8e8e8;
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid {
  border-color: var(--sale);
}

.form-row input.is-valid {
  border-color: rgba(0, 182, 122, 0.65);
}

.thankyou-page {
  padding: 3rem 0 4.5rem;
}

.thankyou-wrap {
  max-width: 920px;
}

.thankyou-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.thankyou-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(0, 182, 122, 0.15);
  color: var(--trust);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-check svg {
  width: 36px;
  height: 36px;
}

.thankyou-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
}

.thankyou-hero p {
  margin: 0 auto 1.25rem;
  color: var(--text-muted);
  max-width: 46ch;
}

.thankyou-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 800px) {
  .thankyou-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.thankyou-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}

.thankyou-card h2 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thankyou-items {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.thankyou-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.thankyou-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}

.thankyou-item strong {
  display: block;
  font-size: 0.9rem;
}

.thankyou-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.thankyou-item-price {
  font-weight: 700 !important;
  color: var(--text) !important;
}

.thankyou-totals {
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.thankyou-details {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.thankyou-details li {
  display: grid;
  gap: 0.15rem;
}

.thankyou-details span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.thankyou-details strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.thankyou-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.thankyou-note a {
  color: var(--teal);
  text-decoration: underline;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.thankyou-empty {
  color: var(--text-muted);
  margin: 0;
}

/* legacy thank-you class */
.thank-you {
  text-align: center;
  padding: 4rem 0 5rem;
  max-width: 520px;
  margin: 0 auto;
}

.thank-you h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
}

.thank-you p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.order-id {
  display: inline-block;
  background: var(--bg-soft);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: #050708;
  color: #e8eeef;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 32ch;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: min(100% - 2rem, var(--max));
}

.footer-payments img {
  height: 24px;
  width: 38px;
  object-fit: contain;
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
}

/* Catalog grid (home) */
.catalog-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.catalog-card-media {
  aspect-ratio: 1;
  background: var(--bg-soft);
  display: block;
}

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

.catalog-card-body {
  padding: 1.15rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.catalog-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.catalog-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.catalog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.catalog-card-actions .btn {
  padding: 0.7rem 1.1rem;
  font-size: 0.72rem;
}

/* Product tabs */
.product-tabs-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .product-tabs-layout {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.product-tabs-panel {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.75rem;
  position: sticky;
  top: calc(var(--header-h) + var(--ticker-h) + 1rem);
}

.product-tabs-label {
  margin: 0 0 0.5rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 0.65rem 0.7rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  transition: background 0.15s;
}

.product-tab:hover {
  background: rgba(255, 255, 255, 0.06);
}

.product-tab.is-active {
  background: rgba(255, 255, 255, 0.1);
}

.product-tab img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg);
  flex-shrink: 0;
}

@media (max-width: 959px) {
  .product-tabs-panel {
    position: static;
  }
  .product-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-1 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }


/* Thank you page — split layout */
.thankyou-page { display: none !important; }

.ty-page {
  min-height: calc(100vh - 72px);
}

.ty-split {
  display: grid;
  min-height: calc(100vh - 72px);
}

@media (min-width: 900px) {
  .ty-split {
    grid-template-columns: 1fr 1fr;
  }
}

.ty-media {
  position: relative;
  min-height: 280px;
  background: #000;
  overflow: hidden;
}

.ty-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  min-height: 280px;
}

@media (min-width: 900px) {
  .ty-media img {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }
}

.ty-media-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: #fff;
}

.ty-media-caption span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.35rem;
  opacity: 0.85;
}

.ty-media-caption p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  max-width: 16ch;
  line-height: 1.3;
}

.ty-content {
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .ty-content {
    padding: 3.5rem 3rem 4rem;
  }
}

.ty-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.ty-content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.ty-lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.ty-orderbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem 0 1.35rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.ty-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.ty-orderbar strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.ty-items {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.ty-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.85rem;
  align-items: center;
}

.ty-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: var(--bg-soft);
}

.ty-item-info strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.ty-item-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ty-item-price {
  font-weight: 700;
  font-size: 0.95rem;
}

.ty-meta {
  display: grid;
  gap: 1rem;
}

.ty-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.05rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.ty-meta-block p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.ty-support {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ty-support a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ty-empty {
  padding: 1rem 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.ty-empty p { margin: 0; }
