/* Custom 3D TX — draft site styles
   Dark tech ecommerce chrome (dbrand-energy layout only)
   Accents: pink + cyan from logo / vial colors — NOT cream cottage / Texas red */

:root {
  /* Mapped carefully so existing var() consumers keep working on dark */
  --navy: #e8eaed;              /* was #0b1f3a — primary UI text / links */
  --navy-deep: #f4f5f7;         /* was #061428 — headlines */
  --navy-trust: #050505;        /* was #07182e — trust bar */
  --navy-fill: #111111;         /* solid fills that formerly used navy */
  --steel: #9aa3ad;             /* was #5b6b7c */
  --steel-light: #6b7380;       /* was #8a97a6 */
  --cream: #000000;             /* was #f7f3ec — pure black canvas */
  --cream-dark: #0e0e0e;        /* was #ebe4d8 — inset / alt */
  --white: #ffffff;             /* keep for text on accents */
  --surface: #121212;           /* charcoal panels (replaces white fills) */
  --surface-2: #181818;         /* elevated charcoal */
  --texas-red: #e85a8c;         /* was #b22234 — pink/magenta accent */
  --texas-red-dark: #c73d72;    /* was #8e1a28 */
  --accent-cyan: #2bb8d6;
  --accent-cyan-dark: #1f9bb5;
  --ink: #f0f2f5;               /* was #142033 */
  --muted: #9aa3ad;             /* was #5a6573 */
  --wash-pink: rgba(232, 90, 140, 0.34);
  --wash-blue: rgba(43, 184, 214, 0.30);
  --wash-pink-soft: rgba(232, 90, 140, 0.18);
  --wash-blue-soft: rgba(122, 215, 232, 0.16);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.16);
  --radius: 12px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  --font: "Segoe UI", system-ui, -apple-system, "Liberation Sans", sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, "Liberation Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.55;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 90% 55% at 12% -10%, rgba(232, 90, 140, 0.10), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(43, 184, 214, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232, 90, 140, 0.05), transparent 55%),
    /* fine tech grid */
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #000000 0%, #050505 100%);
  background-size:
    auto, auto, auto,
    48px 48px, 48px 48px,
    auto;
  background-attachment: fixed;
  position: relative;
}

/* Subtle tech noise — low opacity, normal blend (not paper grain multiply) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: normal;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 0.6px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.02) 0.5px, transparent 0.65px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 2px 3px;
}


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

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-cyan);
  color: #061018;
  padding: 0.75rem 1rem;
  z-index: 100;
}

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

.wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo img,
.logo .logo-img {
  width: auto;
  height: 64px;
  max-width: min(280px, 58vw);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
  transition: transform 180ms ease, filter 180ms ease;
}

.logo:hover img,
.logo:hover .logo-img {
  transform: scale(1.04) translateY(-1px);
  filter: drop-shadow(0 10px 24px rgba(43, 184, 214, 0.18));
}

.logo-text-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header .header-inner {
  padding: 0.65rem 0;
}

@media (min-width: 900px) {
  .logo img,
  .logo .logo-img {
    height: 76px;
    max-width: 340px;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.logo-text span {
  font-size: 0.78rem;
  color: var(--steel);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  transition:
    color var(--motion-duration-fast, 180ms) ease,
    border-color var(--motion-duration-fast, 180ms) ease,
    background-color var(--motion-duration-fast, 180ms) ease,
    box-shadow var(--motion-duration-fast, 180ms) ease,
    transform var(--motion-duration-fast, 180ms) ease;
}

.nav a:hover {
  color: #fff;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  transform: none;
}

.nav a:focus-visible {
  outline: 2px solid var(--texas-red);
  outline-offset: 2px;
}

.nav a[aria-current="page"],
.nav a.is-active {
  border-color: transparent;
  background: rgba(43, 184, 214, 0.16);
  color: var(--accent-cyan);
  box-shadow: none;
}

.nav a[aria-current="page"]:hover,
.nav a.is-active:hover {
  color: var(--accent-cyan);
  border-color: transparent;
  background: rgba(43, 184, 214, 0.22);
}

/* Hero */
.hero,
.hero.hero-wash {
  padding: 2.75rem 0 2.5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 20% 40%, var(--wash-pink), transparent 58%),
    radial-gradient(ellipse 60% 70% at 85% 70%, var(--wash-blue), transparent 55%),
    #000000;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      -32deg,
      transparent,
      transparent 14px,
      rgba(255, 255, 255, 0.03) 14px,
      rgba(255, 255, 255, 0.03) 15px
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.hero-copy {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.5rem 0.25rem;
}

.hero-visual {
  order: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
  background: rgba(43, 184, 214, 0.10);
  color: var(--accent-cyan);
  font-family: ui-monospace, "SFMono-Regular", "Liberation Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--navy-deep);
}

.lede {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-cyan);
  color: #061018;
  border-color: var(--accent-cyan);
}

.btn-primary:hover {
  background: var(--accent-cyan-dark);
  border-color: var(--accent-cyan-dark);
  color: #061018;
}


.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn:disabled,
.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  filter: saturate(0.85);
}

.hero-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.card-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.offer-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.offer-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(43, 184, 214, 0.18);
  color: var(--accent-cyan);
  font-size: 0.9rem;
  border: 1px solid rgba(43, 184, 214, 0.35);
}

.offer-list strong {
  display: block;
  color: var(--navy-deep);
}

.offer-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.85rem;
  color: var(--steel);
}

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

.section-alt {
  background: rgba(20, 20, 20, 0.72);
  border-block: 1px solid var(--border);
  backdrop-filter: blur(2px);
}

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

.section-head h2,
.about-grid h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-head p,
.about-grid p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.card:hover,
.shop-card:hover {
  border-color: var(--border-strong);
}

.section .card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.card h3 {
  margin: 0.35rem 0 0.45rem;
  color: var(--navy-deep);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.facts {
  margin: 0;
  background: var(--surface-2);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  display: grid;
  gap: 1.1rem;
  border: 1px solid var(--border);
}

.facts dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.2rem;
}

.facts dd {
  margin: 0;
  font-weight: 600;
}

.facts div + div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Contact */
.contact-panel {
  background: var(--surface);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-block {
  background: var(--cream);
  border-radius: 12px;
  padding: 1rem 1.05rem;
}

.contact-block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--navy);
}

.contact-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.placeholder {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: rgba(232, 90, 140, 0.12);
  color: var(--texas-red-dark);
  font-family: ui-monospace, "Liberation Mono", monospace;
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  max-width: 32rem;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--steel);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--cream-dark);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(43, 184, 214, 0.2);
}

.contact-form .btn:disabled,
.contact-form input:disabled,
.contact-form textarea:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Checkout placeholder */
.checkout-banner {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px dashed var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--steel);
  font-size: 0.92rem;
  text-align: center;
}

.checkout-banner strong {
  color: var(--navy);
}

/* Footer */
.site-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.85);
  padding: 1.6rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer-inner p {
  margin: 0;
}

.footer-meta {
  margin-top: 0.35rem !important;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Product / shop grid */
.cards-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  gap: 0.85rem;
}

@media (min-width: 1100px) {
  .cards-three {
    /* denser rail energy — still 3 SKUs today, tighter rhythm */
    gap: 0.75rem;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}


.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: -0.15rem -0.15rem 0.65rem;
}

.product-shot {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
  border: 1px solid var(--border);
}

.product-shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: #f5f5f5;
}

.product-shot figcaption {
  padding: 0.35rem 0.5rem 0.45rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  background: #0e0e0e;
}

.product-tagline {
  margin: 0 0 0.55rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  font-size: 0.95rem !important;
}

.product-bullets {
  margin: 0 0 0.35rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-bullets li {
  margin-bottom: 0.3rem;
}

.product-bullets li:last-child {
  margin-bottom: 0;
}

.product-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  margin: -0.15rem -0.15rem 0.65rem;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(43, 184, 214, 0.08), rgba(232, 90, 140, 0.10)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.04) 8px,
      rgba(255, 255, 255, 0.04) 16px
    );
  border: 1px dashed var(--border-strong);
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta {
  margin: 0.4rem 0 0 !important;
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--texas-red) !important;
}

.product-actions {
  margin-top: 0.5rem;
}

.shop-footnote {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--steel);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .cards-three {
    grid-template-columns: 1fr;
  }
}

/* Color option swatches (same SKU) */
.product-shot.is-active {
  border-color: var(--texas-red);
  box-shadow: 0 0 0 2px rgba(232, 90, 140, 0.35);
}

.color-options {
  margin: 0.35rem 0 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.color-options legend {
  padding: 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  border-radius: 999px;
  border: 2px solid var(--border-strong);
  background: var(--surface);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.swatch:has(input:checked) {
  border-color: var(--texas-red);
  box-shadow: 0 0 0 1px rgba(232, 90, 140, 0.3);
}

.swatch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.swatch-chip {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
}

.swatch-pink {
  background: linear-gradient(145deg, #f7a8c4, #e85a8c);
}

.swatch-blue {
  background: linear-gradient(145deg, #7ad7e8, #2bb8d6);
}

.color-note {
  margin: 0.55rem 0 0 !important;
  font-size: 0.78rem !important;
  color: var(--steel) !important;
}

.product-price {
  margin: 0.55rem 0 0.15rem !important;
  color: var(--navy-deep) !important;
}

.price-amount {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
  margin-left: 0.2rem;
}

/* —— Rebuild additions (product-led homepage + PDP) —— */

.nav-cart {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  font-size: 0.82rem !important;
}

.nav-cart:hover {
  border-color: rgba(232, 90, 140, 0.55) !important;
  color: var(--texas-red) !important;
}

.hero-pills {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-pills li {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.hero-visual {
  position: relative;
  background: #0c0c0c;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 22px 48px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(232, 90, 140, 0.14),
    0 0 80px rgba(43, 184, 214, 0.12);
  border: 1px solid var(--border);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 35%, var(--wash-pink), transparent 55%),
    radial-gradient(circle at 78% 70%, var(--wash-blue), transparent 52%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  opacity: 0.7;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Trust strip */
.trust-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    var(--navy-trust);
  color: rgba(255, 255, 255, 0.94);
  padding: 1.1rem 0;
  border-block: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  text-align: center;
}

.trust-strip-inner p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.trust-icon {
  opacity: 0.75;
  font-size: 0.85rem;
}

/* Featured block */
.featured-block .featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  align-items: start;
  background:
    radial-gradient(ellipse 55% 70% at 18% 40%, var(--wash-pink-soft), transparent 60%),
    radial-gradient(ellipse 50% 65% at 30% 80%, var(--wash-blue-soft), transparent 55%),
    var(--surface);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.featured-gallery {
  display: block;
  margin: 0;
  position: relative;
}

.featured-gallery .product-shot,
.pdp-main-gallery .product-shot {
  /* visibility handled by motion crossfade (stacked grid + opacity) */
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.featured-gallery .product-shot.is-active,
.pdp-main-gallery .product-shot.is-active {
  border-color: var(--border);
  box-shadow: none;
}

.featured-gallery .product-shot img,
.pdp-main-gallery .product-shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.featured-copy h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.featured-copy .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

/* Shop card link */
.shop-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.shop-card-link:hover h3 {
  color: var(--accent-cyan);
}

.coming-soon-card .product-thumb {
  margin-bottom: 0.75rem;
}

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

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f2f2;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.45rem 0.6rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--navy-deep);
  background: #000;
}

/* About short */
.about-short {
  max-width: 40rem;
}

.about-short h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--navy-deep);
}

.about-short p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Shipping teaser */
.shipping-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.shipping-teaser h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy-deep);
}

.shipping-teaser p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--white);
}

/* PDP */
.pdp {
  padding: 1.5rem 0 3.5rem;
}

.breadcrumb {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--steel);
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--texas-red);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.pdp-main-gallery {
  display: block;
  margin: 0 0 0.75rem;
  padding: 0.65rem;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 70% 70% at 35% 40%, var(--wash-pink-soft), transparent 60%),
    radial-gradient(ellipse 65% 65% at 70% 70%, var(--wash-blue-soft), transparent 55%),
    rgba(16, 16, 16, 0.85);
  border: 1px solid var(--border);
}

.pdp-thumbs {
  display: flex;
  gap: 0.55rem;
}

.pdp-thumb {
  padding: 0;
  border: 2px solid var(--border-strong);
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
  cursor: pointer;
  width: 72px;
  height: 72px;
}

.pdp-thumb.is-active {
  border-color: var(--texas-red);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.pdp-bullets {
  margin: 1rem 0;
  font-size: 1rem;
}

.pdp-actions {
  margin: 1.15rem 0 1.5rem;
}

.btn-wide {
  min-width: 11rem;
  width: 100%;
  max-width: 28rem;
  border-radius: 10px;
}

.pdp-trust {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.pdp-trust-heading {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

.pdp-trust ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pdp-trust li {
  margin-bottom: 0.4rem;
}

.pdp-trust li:last-child {
  margin-bottom: 0;
}

/* Policy page */
.policy-page {
  max-width: 40rem;
}

.policy-page h1 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-deep);
}

.policy-page h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.policy-page p {
  color: var(--muted);
}

@media (max-width: 860px) {
  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .featured-block .featured-grid,
  .pdp-grid,
  .gallery-grid,
  .contact-grid-two {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
}

/* —— Motion (subtle / premium D2C) —— */

:root {
  --motion-duration: 0.45s;
  --motion-duration-fast: 0.22s;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-rise: 14px;
  --shadow-lift: 0 16px 36px rgba(0, 0, 0, 0.55);
  --shadow-btn-lift: 0 10px 22px rgba(43, 184, 214, 0.28);
}

/* Soft cross-document page transitions (Chromium+); ignored elsewhere */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
  animation-timing-function: var(--motion-ease);
}

#main {
  view-transition-name: main-content;
}

/* 1. Soft page enter */
#main {
  opacity: 0;
  transform: translateY(var(--motion-rise));
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
}

body.is-ready #main {
  opacity: 1;
  transform: none;
}

/* 2. Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(var(--motion-rise));
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Stagger helpers (set by JS via --reveal-delay) */
.reveal-delay-1 { --reveal-delay: 60ms; }
.reveal-delay-2 { --reveal-delay: 120ms; }
.reveal-delay-3 { --reveal-delay: 180ms; }
.reveal-delay-4 { --reveal-delay: 240ms; }

/* 3. Product card + button hover lift */
.card,
.featured-grid,
.shipping-teaser,
.contact-panel,
.hero-visual {
  transition:
    transform var(--motion-duration-fast) var(--motion-ease),
    box-shadow var(--motion-duration-fast) var(--motion-ease),
    border-color var(--motion-duration-fast) ease;
}

.card:hover,
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.featured-grid:hover {
  box-shadow: var(--shadow-lift);
}

.btn {
  transition:
    transform var(--motion-duration-fast) var(--motion-ease),
    box-shadow var(--motion-duration-fast) var(--motion-ease),
    background-color var(--motion-duration-fast) ease,
    border-color var(--motion-duration-fast) ease,
    color var(--motion-duration-fast) ease,
    opacity var(--motion-duration-fast) ease;
}

.btn:not(:disabled):not(.btn-disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-lift);
}

.btn:not(:disabled):not(.btn-disabled):active {
  transform: translateY(0);
  box-shadow: none;
}

.nav a {
  transition: color var(--motion-duration-fast) ease;
}

.shop-card-link h3 {
  transition: color var(--motion-duration-fast) ease;
}

/* 5. Swatch / thumbnail transitions */
.swatch {
  transition:
    border-color var(--motion-duration-fast) ease,
    box-shadow var(--motion-duration-fast) ease,
    transform var(--motion-duration-fast) var(--motion-ease),
    background-color var(--motion-duration-fast) ease;
}

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

.pdp-thumb {
  transition:
    border-color var(--motion-duration-fast) ease,
    transform var(--motion-duration-fast) var(--motion-ease),
    box-shadow var(--motion-duration-fast) ease;
}

.pdp-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.product-shot {
  transition:
    border-color var(--motion-duration-fast) ease,
    box-shadow var(--motion-duration-fast) ease,
    opacity 0.38s var(--motion-ease);
}

/* Featured + PDP gallery: crossfade stacked shots */
.featured-gallery,
.pdp-main-gallery {
  display: grid;
}

.featured-gallery .product-shot,
.pdp-main-gallery .product-shot {
  grid-area: 1 / 1;
  display: block;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s var(--motion-ease);
}

.featured-gallery .product-shot.is-active,
.pdp-main-gallery .product-shot.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  border-color: var(--border);
  box-shadow: none;
}

.gallery-item {
  transition:
    transform var(--motion-duration-fast) var(--motion-ease),
    box-shadow var(--motion-duration-fast) var(--motion-ease);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

/* Reduced motion: disable / minimize */
@media (prefers-reduced-motion: reduce) {
  .logo:hover img,
  .logo:hover .logo-img {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  @view-transition {
    navigation: none;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  #main {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.is-ready #main {
    opacity: 1;
    transform: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .card,
  .featured-grid,
  .shipping-teaser,
  .contact-panel,
  .hero-visual,
  .btn,
  .swatch,
  .pdp-thumb,
  .product-shot,
  .gallery-item,
  .nav a,
  .shop-card-link h3 {
    transition: none !important;
  }

  .card:hover,
  .shop-card:hover,
  .gallery-item:hover,
  .btn:not(:disabled):not(.btn-disabled):hover,
  .swatch:hover,
  .pdp-thumb:hover {
    transform: none;
    box-shadow: inherit;
  }

  .featured-gallery .product-shot,
  .pdp-main-gallery .product-shot {
    transition: none;
  }

  /* Instant swap still works via opacity, no animate */
  .featured-gallery .product-shot:not(.is-active),
  .pdp-main-gallery .product-shot:not(.is-active) {
    opacity: 0;
  }

  .featured-gallery .product-shot.is-active,
  .pdp-main-gallery .product-shot.is-active {
    opacity: 1;
  }
}

/* If JS is unavailable, never leave content hidden */
@media (scripting: none) {
  #main {
    opacity: 1;
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* —— VP dark-tech polish: PDP HUD + line Buy (still disabled) —— */
.pdp-main-gallery {
  background:
    radial-gradient(ellipse 70% 70% at 35% 40%, var(--wash-pink-soft), transparent 60%),
    radial-gradient(ellipse 65% 65% at 70% 70%, var(--wash-blue-soft), transparent 55%),
    #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 20px 50px rgba(0, 0, 0, 0.55);
  position: relative;
}

.pdp-main-gallery::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(43, 184, 214, 0.12);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.pdp-info {
  border-top: 1px solid var(--border);
  padding-top: 0.35rem;
}

.pdp-info .product-price {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem !important;
}

.pdp-actions .btn-wide.btn-primary.btn-disabled,
.pdp-actions .btn-wide.btn-disabled {
  /* line-style cart CTA look — outline, not solid fill — still disabled */
  background: transparent !important;
  color: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 6px;
  font-family: ui-monospace, "SFMono-Regular", "Liberation Mono", Menlo, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  opacity: 0.7;
  filter: none;
}

.pdp-trust {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 0 0;
}

.featured-grid {
  background:
    radial-gradient(ellipse 55% 70% at 18% 40%, var(--wash-pink-soft), transparent 60%),
    radial-gradient(ellipse 50% 65% at 30% 80%, var(--wash-blue-soft), transparent 55%),
    var(--surface);
  border-radius: calc(var(--radius) + 8px);
}

/* Compact nav link size */
.nav {
  gap: 0.2rem;
}

.logo img,
.logo .logo-img {
  height: 52px;
  max-width: min(240px, 52vw);
}

@media (min-width: 900px) {
  .logo img,
  .logo .logo-img {
    height: 60px;
    max-width: 280px;
  }
}

/* Dense footer energy */
.site-footer {
  padding: 2rem 0 2.25rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.footer-meta {
  margin-top: 0 !important;
}

@media (max-width: 860px) {
  .hero-copy,
  .hero-visual {
    order: unset;
  }
  .hero-grid {
    padding: 1rem;
  }
}



/* —— Dbrand-like interactivity (hero cycle, boulders, rail, pans) —— */

/* Hero stacked crossfade */
.hero-visual .hero-cycle {
  display: grid;
  position: relative;
  z-index: 1;
}

.hero-cycle-shot {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--motion-ease);
  z-index: 0;
}

.hero-cycle-shot.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-cycle-shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s var(--motion-ease);
  will-change: transform;
}

.hero-visual.is-blue {
  box-shadow:
    0 0 0 1px var(--border),
    0 22px 48px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(43, 184, 214, 0.22),
    0 0 50px rgba(232, 90, 140, 0.08);
}

.hero-visual.is-pink {
  box-shadow:
    0 0 0 1px var(--border),
    0 22px 48px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(232, 90, 140, 0.22),
    0 0 50px rgba(43, 184, 214, 0.08);
}

.hero-cycle-meta {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-cycle-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cycle-dot.is-active {
  background: var(--accent-cyan);
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(43, 184, 214, 0.55);
}

.hero-cycle-dot[data-cycle-dot="pink"].is-active {
  background: var(--texas-red);
  box-shadow: 0 0 10px rgba(232, 90, 140, 0.55);
}

/* Boulder / HUD animated borders */
@property --boulder-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.tech-border,
.tech-border-soft {
  position: relative;
  isolation: isolate;
}

.tech-border::after,
.tech-border-soft::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--boulder-angle, 0deg),
    transparent 0%,
    rgba(43, 184, 214, 0.0) 8%,
    rgba(43, 184, 214, 0.75) 14%,
    transparent 22%,
    transparent 48%,
    rgba(232, 90, 140, 0.7) 56%,
    transparent 64%,
    transparent 82%,
    rgba(43, 184, 214, 0.45) 90%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  opacity: 0.85;
  animation: boulder-spin 9s linear infinite;
}

.tech-border-soft::after {
  opacity: 0.55;
  animation-duration: 12s;
  inset: 0;
}

.tech-border::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(43, 184, 214, 0.08),
    0 0 0 1px rgba(232, 90, 140, 0.05);
  pointer-events: none;
  z-index: 4;
  opacity: 0.9;
}

/* Keep pink/blue wash + add inset HUD frame on hero */
.hero-visual.tech-border::after {
  inset: 0;
}

.hero-visual.tech-border::before {
  inset: 0;
  border-radius: inherit;
  border: none;
  box-shadow: none;
  opacity: 0.7;
  background:
    radial-gradient(circle at 28% 35%, var(--wash-pink), transparent 55%),
    radial-gradient(circle at 78% 70%, var(--wash-blue), transparent 52%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  /* HUD inset drawn via outline-like inner stroke */
  outline: 1px solid rgba(43, 184, 214, 0.14);
  outline-offset: -12px;
  z-index: 0;
}

@keyframes boulder-spin {
  to {
    --boulder-angle: 360deg;
  }
}

/* Active nav boulder underline */
.nav a.nav-boulder,
.nav a[aria-current="page"] {
  position: relative;
  color: var(--accent-cyan);
}

.nav a.nav-boulder::after,
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.2rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-cyan),
    var(--texas-red),
    transparent
  );
  background-size: 200% 100%;
  animation: nav-boulder-slide 3.2s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes nav-boulder-slide {
  0% { background-position: 100% 0; opacity: 0.55; }
  50% { background-position: 0% 0; opacity: 1; }
  100% { background-position: -100% 0; opacity: 0.55; }
}

/* Featured / PDP wells */
.featured-grid.tech-border,
.pdp-gallery.tech-border {
  overflow: visible;
}

.featured-photo,
.pdp-main-gallery {
  position: relative;
}

.pdp-main-gallery::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(43, 184, 214, 0.18),
    0 0 24px rgba(232, 90, 140, 0.12);
  animation: well-glow 4.5s ease-in-out infinite alternate;
  opacity: 0.7;
}

@keyframes well-glow {
  from {
    box-shadow:
      0 0 0 1px rgba(43, 184, 214, 0.14),
      0 0 18px rgba(232, 90, 140, 0.08);
  }
  to {
    box-shadow:
      0 0 0 1px rgba(232, 90, 140, 0.22),
      0 0 28px rgba(43, 184, 214, 0.16);
  }
}

/* Shop rail + stacked gallery */
.shop-card.shop-rail {
  transition:
    transform var(--motion-duration-fast) var(--motion-ease),
    box-shadow var(--motion-duration-fast) var(--motion-ease),
    border-color var(--motion-duration-fast) ease;
}

.shop-card.shop-rail:hover,
.shop-card.shop-rail:focus-within {
  transform: translateY(-5px) translateX(var(--rail-x, 2px));
  box-shadow: var(--shadow-lift);
}

.shop-gallery-stack {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  overflow: hidden;
  border-radius: 10px;
}

.shop-gallery-stack .product-shot {
  grid-area: 1 / 1;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--motion-ease), border-color 0.25s ease;
  margin: 0;
}

.shop-gallery-stack .product-shot.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.shop-gallery-stack .product-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}

.shop-card .product-gallery,
.shop-card .product-thumb {
  transition: transform 0.35s var(--motion-ease);
  will-change: transform;
}

/* Scroll pan / reveal strengthen */
.can-scroll-pan {
  --pan-y: 10px;
}

.can-scroll-pan img {
  transition:
    transform 0.9s var(--motion-ease),
    opacity 0.55s var(--motion-ease);
}

.gallery-item.scroll-pan img {
  transform: translate3d(0, var(--pan-y, 10px), 0) scale(1.04);
}

.gallery-item.scroll-pan.is-inview {
  border-color: rgba(43, 184, 214, 0.28);
}

.featured-photo.can-scroll-pan.is-inview .product-shot.is-active img {
  animation: soft-kenburns 8s ease-in-out infinite alternate;
}

@keyframes soft-kenburns {
  from { transform: scale(1.0) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-1.5%, -1%, 0); }
}

.reveal.gallery-item,
.reveal.hero-visual,
.reveal.card {
  transform: translateY(var(--motion-rise)) scale(0.985);
}

.reveal.gallery-item.is-visible,
.reveal.hero-visual.is-visible,
.reveal.card.is-visible {
  transform: none;
}

.site-header.has-tech-border {
  box-shadow:
    0 1px 0 rgba(43, 184, 214, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.site-header.has-tech-border::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(43, 184, 214, 0.55) 22%,
    rgba(232, 90, 140, 0.55) 50%,
    rgba(43, 184, 214, 0.4) 78%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: header-boulder 7s linear infinite;
  pointer-events: none;
  opacity: 0.85;
}

@keyframes header-boulder {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tech-border::after,
  .tech-border-soft::after,
  .nav a.nav-boulder::after,
  .nav a[aria-current="page"]::after,
  .site-header.has-tech-border::after,
  .pdp-main-gallery::after {
    animation: none !important;
  }

  .hero-cycle-shot,
  .hero-cycle-shot img,
  .shop-gallery-stack .product-shot,
  .can-scroll-pan img,
  .shop-card .product-gallery,
  .shop-card .product-thumb {
    transition: none !important;
  }

  .hero-cycle-shot img,
  .gallery-item.scroll-pan img,
  .featured-photo.can-scroll-pan.is-inview .product-shot.is-active img {
    transform: none !important;
    animation: none !important;
  }

  .shop-card.shop-rail:hover,
  .shop-card.shop-rail:focus-within {
    transform: none;
  }

  .tech-border::after,
  .tech-border-soft::after {
    background: linear-gradient(
      135deg,
      rgba(43, 184, 214, 0.45),
      transparent 35%,
      transparent 65%,
      rgba(232, 90, 140, 0.4)
    );
    opacity: 0.5;
  }
}

@supports not (background: conic-gradient(red, blue)) {
  .tech-border::after,
  .tech-border-soft::after {
    background: linear-gradient(
      135deg,
      rgba(43, 184, 214, 0.5),
      transparent 40%,
      rgba(232, 90, 140, 0.4)
    );
    animation: none;
  }
}


.shop-card.tech-border-soft {
  overflow: visible;
}
