/* ========================================
   KAWIN STUDS — STEP 12 Premium Storefront
   Layered on foundation styles (customer pages)
   ======================================== */

:root {
  --brand-primary: #0a1628;
  --brand-dark: #050b14;
  --brand-mid: #132844;
  --surface: #ffffff;
  --surface-soft: #f3f6fa;
  --surface-pitch: #0e1c30;
  --text: #121a26;
  --text-muted: #5a6778;
  --border: rgba(10, 22, 40, 0.1);
  --accent: #d4a84b;
  --accent-bright: #efc56a;
  --accent-deep: #a67f2c;
  --shadow: 0 18px 40px rgba(5, 11, 20, 0.12);
  --shadow-lift: 0 28px 56px rgba(5, 11, 20, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 4.5rem;
  --max-w: 74rem;
}

body {
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(212, 168, 75, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at -10% 20%, rgba(19, 40, 68, 0.06), transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, #f0f3f7 42%, #fafbfc 100%);
}

/* ----- Header ----- */

.site-header {
  background: rgba(250, 251, 252, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background:
    linear-gradient(145deg, var(--brand-mid), var(--brand-primary));
  color: var(--accent-bright);
  box-shadow:
    inset 0 0 0 1px rgba(212, 168, 75, 0.4),
    0 8px 18px rgba(10, 22, 40, 0.2);
}

.brand-name {
  letter-spacing: 0.14em;
  color: var(--brand-primary);
}

.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-list a[data-cart-label],
.cart-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.nav-list a[data-cart-label]::before,
.cart-nav-link::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-list .nav-cta {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-mid));
  color: #fff !important;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(10, 22, 40, 0.22);
}

.nav-list .nav-cta:hover,
.nav-list .nav-cta:focus-visible {
  color: var(--accent-bright) !important;
}

/* ----- Buttons ----- */

.btn {
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(212, 168, 75, 0.32);
}

.btn-navy {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-mid));
  color: #fff;
  border-color: transparent;
}

.btn-navy:hover,
.btn-navy:focus-visible {
  color: var(--accent-bright);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
}

/* ----- Hero ----- */

.hero {
  min-height: min(92svh, 46rem);
  align-items: stretch;
  background:
    radial-gradient(ellipse 55% 70% at 85% 40%, rgba(212, 168, 75, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(30, 70, 120, 0.35), transparent 55%),
    linear-gradient(155deg, var(--brand-dark) 0%, var(--brand-primary) 42%, #163456 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  width: min(100%, var(--max-w));
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 4.5rem) var(--space) clamp(2.75rem, 8vw, 4.5rem);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: 36rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 168, 75, 0.35);
  background: rgba(212, 168, 75, 0.1);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 0.7s var(--ease) both;
}

.hero-brand {
  font-size: clamp(2.6rem, 12vw, 4.75rem);
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, #ffffff 20%, rgba(239, 197, 106, 0.92));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.hero-title {
  margin-top: 0.85rem;
  font-size: clamp(1.45rem, 5.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
  max-width: 18ch;
}

.hero-slogan {
  margin-top: 1rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  margin-top: 1.85rem;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 16rem;
  isolation: isolate;
}

.hero-visual-ring {
  position: absolute;
  width: min(92%, 24rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 75, 0.28);
  background:
    radial-gradient(circle at 50% 45%, rgba(212, 168, 75, 0.16), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 70%);
  animation: glowPulse 7s ease-in-out infinite;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  width: min(86vw, 26rem);
  aspect-ratio: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.96) translateY(0.6rem);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.hero-boot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
  user-select: none;
}

.hero-brand-label {
  position: relative;
  z-index: 2;
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-brand-dots {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.hero-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active,
.hero-dot:hover,
.hero-dot:focus-visible {
  background: var(--accent-bright);
  transform: scale(1.2);
}

.hero-boot-fallback {
  display: none;
  position: relative;
  z-index: 2;
  width: min(72vw, 20rem);
  height: min(52vw, 14.5rem);
  border-radius: 48% 52% 42% 58% / 55% 45% 55% 45%;
  transform: rotate(-22deg);
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(239, 197, 106, 0.75) 0%, rgba(30, 55, 90, 0.2) 38%, rgba(5, 11, 20, 0.92) 100%);
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.35),
    0 28px 60px rgba(0, 0, 0, 0.45);
}

.hero-visual.is-fallback .hero-showcase,
.hero-visual.is-fallback .hero-brand-label,
.hero-visual.is-fallback .hero-brand-dots {
  display: none;
}

.hero-visual.is-fallback .hero-boot-fallback {
  display: block;
}

.hero-pitch-lines {
  position: absolute;
  inset: 12% 8%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  pointer-events: none;
  z-index: 0;
}

/* keep legacy .hero-boot unused but harmless if present */
.hero-boot {
  display: none;
}

/* ----- Brand strip ----- */

.brand-strip {
  background: var(--brand-primary);
  color: #fff;
  border-block: 1px solid rgba(212, 168, 75, 0.22);
}

.brand-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.35rem var(--space);
}

.brand-strip-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 500;
}

.brand-strip-track {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.brand-strip-track::-webkit-scrollbar {
  height: 4px;
}

.brand-strip-track::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 75, 0.45);
  border-radius: 999px;
}

.brand-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ease);
}

.brand-pill:hover,
.brand-pill:focus-visible {
  background: rgba(212, 168, 75, 0.18);
  border-color: rgba(212, 168, 75, 0.55);
  color: var(--accent-bright);
  transform: translateY(-2px);
}

/* ----- Trust / features ----- */

.section-trust {
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
}

.trust-grid,
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.trust-card,
.feature-item {
  position: relative;
  padding: 1.35rem 1.25rem 1.35rem 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.trust-card:hover,
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.trust-card::before,
.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--brand-mid));
}

.feature-icon,
.trust-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, var(--brand-primary), var(--brand-mid));
  box-shadow: inset 0 0 0 1px rgba(212, 168, 75, 0.35);
}

.feature-icon::before,
.trust-icon::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: var(--accent-bright);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.feature-item:nth-child(2) .feature-icon::before,
.trust-card:nth-child(2) .trust-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4M4.93 19.07l2.83-2.83M16.24 7.76l2.83-2.83'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4M4.93 19.07l2.83-2.83M16.24 7.76l2.83-2.83'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.feature-item:nth-child(3) .feature-icon::before,
.trust-card:nth-child(3) .trust-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
}

.feature-item:nth-child(4) .feature-icon::before,
.trust-card:nth-child(4) .trust-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3C/svg%3E");
}

.feature-item h3,
.trust-card h3 {
  font-size: 1.05rem;
  color: var(--brand-primary);
}

/* ----- Sections ----- */

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.section-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}

.section-actions {
  margin-top: 1.75rem;
}

/* ----- Product cards ----- */

.product-card {
  border-radius: var(--radius-lg);
  border-color: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.product-media,
.product-visual {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 70% 20%, rgba(212, 168, 75, 0.2), transparent 42%),
    linear-gradient(160deg, #163152 0%, #0a1628 55%, #1a3a5c 100%);
}

.product-card:hover .product-image,
.product-card:focus-within .product-image {
  transform: scale(1.04);
}

.product-image {
  object-fit: contain;
  padding: 8%;
  transition: transform 0.35s var(--ease);
  background: transparent;
}

.product-body {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.15rem;
}

.product-brand {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-primary);
}

.product-model {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.product-price {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-primary);
}

.product-status-badge {
  justify-self: start;
  margin-top: 0.15rem;
}

.product-card-cta {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
}

.product-card:hover .product-card-cta,
.product-card:focus-within .product-card-cta {
  color: var(--brand-primary);
}

/* Brand / size chips */

.brand-chip,
.size-chip {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease), border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-chip:hover,
.size-chip:hover,
.brand-chip:focus-visible,
.size-chip:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 75, 0.55);
  box-shadow: var(--shadow);
}

.brand-chip strong,
.size-chip strong {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--brand-primary);
}

.product-status-badge {
  gap: 0.4rem;
}

.product-status-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Catalog / page hero */

.page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(212, 168, 75, 0.18), transparent 55%),
    linear-gradient(145deg, var(--brand-dark), var(--brand-mid));
  color: #fff;
}

.page-hero .eyebrow {
  color: var(--accent-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Catalog / page hero end */
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(212, 168, 75, 0.12), transparent 45%),
    var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.catalog-state h2 {
  color: var(--brand-primary);
}

/* Closing CTA */

.section-cta-band {
  max-width: none;
  padding: 0;
  margin: 0;
}

.cta-band {
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(212, 168, 75, 0.2), transparent 55%),
    linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  color: #fff;
  padding: clamp(3rem, 8vw, 4.5rem) var(--space);
}

.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.cta-band p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .hero-actions {
  margin-top: 0.5rem;
}

/* Footer */

.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-name {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  color: #fff;
}

.footer-slogan {
  color: var(--accent-bright);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-bright);
}

/* Detail polish */

.detail-price {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.detail-title {
  color: var(--brand-primary);
}

.gallery-media,
.gallery-main .product-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Focus */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-boot,
  .hero-boot-fallback,
  .hero-glow,
  .hero-visual-ring,
  .hero-brand,
  .hero-title,
  .hero-slogan,
  .hero-actions,
  .hero-eyebrow,
  .hero-slide,
  .btn,
  .product-card,
  .product-image,
  .brand-pill,
  .trust-card,
  .feature-item {
    animation: none !important;
    transition: none !important;
  }

  .product-card:hover,
  .product-card:focus-within {
    transform: none;
  }
}

/* Tablet+ */

@media (min-width: 640px) {
  .trust-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    gap: 1.5rem 2rem;
  }

  .hero-visual {
    min-height: 20rem;
  }

  .hero-showcase {
    width: min(70vw, 24rem);
  }
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: min(88svh, 42rem);
    padding-block: clamp(3.5rem, 8vh, 5.5rem);
  }

  .hero-visual {
    min-height: 26rem;
  }

  .hero-showcase {
    width: min(38vw, 28rem);
  }

  .trust-grid,
  .feature-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cta-band-inner {
    grid-template-columns: 1.4fr auto;
    align-items: end;
  }
}
