/* ==========================================================================
   Pars & Parlays Site Styles
   Relative-path friendly / SGW project conventions
   ========================================================================== */


/* ==========================================================================
   01. Theme Tokens
   ========================================================================== */

:root {
  --bg: #07090d;
  --bg-soft: #10151d;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #f8f4ea;
  --muted: #b8b3a7;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #d8ff3f;
  --accent-2: #2f7df6;
  --gold: #d8af62;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1160px;
  --shop-container: 1550px;
  --header-h: 82px;
}

.theme-light-clubhouse {
  --bg: #f4efe5;
  --bg-soft: #fffaf0;
  --card: rgba(20, 26, 32, 0.07);
  --card-strong: rgba(20, 26, 32, 0.11);
  --text: #121820;
  --muted: #58606b;
  --line: rgba(18, 24, 32, 0.14);
  --accent: #1d6f43;
  --accent-2: #153f80;
  --gold: #a9772d;
}

.theme-cobalt-chaos {
  --accent: #2f7df6;
  --accent-2: #d8ff3f;
  --gold: #f2c14e;
}

.theme-green-fairway {
  --accent: #18a558;
  --accent-2: #a7f542;
  --gold: #d6a84f;
}

.theme-gray-tour {
  --bg: #111315;
  --bg-soft: #1d2227;
  --accent: #bfc7d5;
  --accent-2: #6a86aa;
  --gold: #c8a86b;
}

.theme-black-gold {
  --bg: #050505;
  --bg-soft: #10100e;
  --accent: #d8af62;
  --accent-2: #f0d28b;
  --gold: #d8af62;
}

.theme-blue-steel {
  --bg: #07111f;
  --bg-soft: #101d2d;
  --accent: #2d6cff;
  --accent-2: #001f8f;
  --gold: #c9a35f;
}


/* ==========================================================================
   02. Base / Reset
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.65;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 0%),
      color-mix(in srgb, var(--accent) 16%, transparent),
      transparent 26%
    );
  transition: opacity 0.25s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

code {
  color: var(--accent);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.shop-container,
.product-grid.container {
  width: min(var(--shop-container), calc(100% - 40px));
  max-width: var(--shop-container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: -999px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--accent);
  color: #000;
  border-radius: 10px;
}

.skip-link:focus {
  left: 8px;
}


/* ==========================================================================
   03. Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: var(--accent);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-3deg) scale(1.04);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 22%, transparent);
}

.brand-text em {
  color: var(--accent);
  font-style: normal;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  color: var(--muted);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a.active {
  color: var(--accent);
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.primary-nav a:hover {
  transform: translateY(-1px);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 14px;
  color: var(--text) !important;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
}


/* ==========================================================================
   04. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  color: #07100a;
  background: var(--accent);
  border-color: transparent;
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.78rem;
}

.btn.disabled,
.btn[aria-disabled="true"] {
  opacity: 0.72;
  pointer-events: none;
}


/* ==========================================================================
   05. Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(72vh - var(--header-h));
  padding: 78px 0 110px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 22% 20%,
      color-mix(in srgb, var(--accent) 22%, transparent),
      transparent 28%
    ),
    linear-gradient(110deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35)),
    url("../images/hero-header.png");
  background-size: cover;
  background-position: center 65%;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "PARS & PARLAYS";
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(4rem, 13vw, 12rem);
  font-weight: 1000;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}

.hero-copy {
  max-width: 900px;
}

.hero-copy h1 {
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
	 max-width: 900px;
}

.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.center-actions {
  justify-content: center;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
    filter: saturate(1);
  }

  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
    filter: saturate(1.12);
  }
}

@media (max-width: 760px) {
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.45)),
      url("../images/hero-header-mobile.png");
    background-position: center center;
  }
}


/* ==========================================================================
   06. Typography
   ========================================================================== */

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

.text-link {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}


/* ==========================================================================
   07. Sections / Layout Blocks
   ========================================================================== */

.section {
  padding: 96px 0;
}

.section-head {
  margin-bottom: 34px;
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.vibe-band {
  background: linear-gradient(135deg, var(--bg-soft), var(--bg));
  border-block: 1px solid var(--line);
}

.vibe-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.vibe-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contrast-pop {
  padding: 64px;
  color: #101820;
  background: #f7f3e8;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.contrast-pop .eyebrow {
  color: #1d6f43;
}

.contrast-pop p {
  color: #4e5661;
}

.cta-panel {
  padding: 58px 24px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0,
      color-mix(in srgb, var(--accent) 22%, transparent),
      transparent 45%
    ),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
}

.drop-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--card-strong), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.drop-card h2 {
  margin: 10px 0 14px;
  font-size: 2rem;
}

.drop-card p {
  color: var(--muted);
}

.drop-card:hover {
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--accent) 10%, var(--card-strong)),
      rgba(255, 255, 255, 0.055)
    );
}

.stat-stack {
  display: grid;
  gap: 14px;
}

.stat-stack div {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.stat-stack strong {
  display: block;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

.stat-stack span {
  color: var(--muted);
  font-weight: 800;
}


/* ==========================================================================
   08. Marquee
   ========================================================================== */

.marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: var(--accent);
  color: #071018;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  padding-right: 60px;
  white-space: nowrap;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ==========================================================================
   09. Category Cards - Homepage
   ========================================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.category-tile {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 200px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--card), var(--card-strong));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  isolation: isolate;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background:
    radial-gradient(
      circle at 30% 20%,
      color-mix(in srgb, var(--accent) 22%, transparent),
      transparent 35%
    );
  transition: 0.25s ease;
}

.category-tile span {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 1000;
  letter-spacing: -0.05em;
  transition:
    transform 0.24s ease,
    color 0.24s ease;
}

.category-tile:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.category-tile:hover::before {
  transform: scale(1.18);
}

.category-tile:hover span {
  transform: translateX(6px);
  color: #fff;
}

.category-tile.tall {
  grid-row: span 2;
}

.category-tile.wide {
  grid-column: span 2;
}


/* ==========================================================================
   10. Shop Category Rail
   ========================================================================== */

.shop-category-rail {
  position: sticky;
  top: 82px;
  z-index: 20;
  background: rgba(6, 12, 18, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-category-inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-category-inner::-webkit-scrollbar {
  display: none;
}

.shop-category-link {
  position: relative;
  flex: 0 0 auto;
  padding: 20px 0 17px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease;
}

.shop-category-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--accent, #9cff3a);
  transition: right 220ms ease;
}

.shop-category-link:hover,
.shop-category-link:focus-visible,
.shop-category-link.is-active {
  color: #fff;
}

.shop-category-link:hover::after,
.shop-category-link:focus-visible::after,
.shop-category-link.is-active::after {
  right: 0;
}


/* ==========================================================================
   11. Product Grid / Product Cards
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);

  box-shadow: var(--shadow);
  isolation: isolate;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-9px);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.product-image.real-img {
  overflow: hidden;
}

.product-image img,
.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card:hover .product-image {
  transform: scale(1.04);
  filter: saturate(1.18) contrast(1.06);
}

.product-body,
.product-card-body,
.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-body h3 {
  margin: 12px 0 10px;
}

.product-body p,
.product-description {
  flex: 1;
  color: var(--muted);
}

.product-price {
  color: var(--accent, #d7ff38);
  font-weight: 900;
}

.placeholder-img {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 22%, transparent),
      rgba(255, 255, 255, 0.08)
    ),
    radial-gradient(circle at 70% 20%, var(--gold), transparent 24%);
}

.placeholder-img.alt {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06),
      color-mix(in srgb, var(--accent-2) 24%, transparent)
    );
}

.placeholder-img.third {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--gold) 25%, transparent),
      rgba(255, 255, 255, 0.05)
    );
}


/* ==========================================================================
   12. Product Badges / Buy Buttons
   ========================================================================== */

.product-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  color: #071018;
  background: var(--accent, #9cff3a);
  border: 0;
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card .btn,
.product-card .btn-primary,
.product-buy,
.buy-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 15px 22px;
  color: #06100b;
  background: #9cff3a;
  border: 2px solid #d7ff71;
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(6, 16, 11, 0.3),
    0 0 0 1px rgba(156, 255, 58, 0.45),
    0 14px 34px rgba(156, 255, 58, 0.32);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateZ(0);
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.product-card .btn::before,
.product-card .btn-primary::before,
.product-buy::before,
.buy-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.22) 0,
      rgba(255, 255, 255, 0.22) 6px,
      transparent 6px,
      transparent 12px
    );
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.product-card .btn::after,
.product-card .btn-primary::after,
.product-buy::after,
.buy-button::after {
  content: "→";
  margin-left: 10px;
  font-size: 1rem;
  transform: translateX(0);
  transition: transform 160ms ease;
}

.product-card .btn:hover,
.product-card .btn:focus-visible,
.product-buy:hover,
.buy-button:hover {
  transform: translateY(-3px) scale(1.025);
  color: #06100b;
  background: #caff00;
  border-color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(6, 16, 11, 0.35),
    0 0 24px rgba(202, 255, 0, 0.9),
    0 22px 54px rgba(156, 255, 58, 0.48);
}

.product-card .btn:hover::before,
.product-card .btn:focus-visible::before,
.product-buy:hover::before,
.buy-button:hover::before {
  transform: translateX(0);
}

.product-card .btn:hover::after,
.product-card .btn:focus-visible::after,
.product-buy:hover::after,
.buy-button:hover::after {
  transform: translateX(4px);
}


/* ==========================================================================
   13. Footer
   ========================================================================== */

.site-footer {
  padding: 38px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.footer-grid strong {
  color: var(--text);
  font-size: 1.2rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}


/* ==========================================================================
   14. Motion / Reveals
   ========================================================================== */

.no-js .reveal-up,
.no-js .reveal-pop,
.no-js .reveal-left,
.no-js .reveal-right,
.no-js .stagger-item {
  opacity: 1;
  transform: none;
}

.reveal-up,
.reveal-pop {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-pop {
  transform: scale(0.96);
}

.reveal-up.is-visible,
.reveal-pop.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-left,
.reveal-right,
.stagger-item {
  opacity: 0;
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.stagger-item {
  transform: translateY(26px) scale(0.98);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.stagger-item.is-visible {
  opacity: 1;
  transform: none;
}

.stagger-item:nth-child(2) {
  transition-delay: 0.08s;
}

.stagger-item:nth-child(3) {
  transition-delay: 0.16s;
}

.stagger-item:nth-child(4) {
  transition-delay: 0.24s;
}

.stagger-item:nth-child(5) {
  transition-delay: 0.32s;
}

.stagger-item:nth-child(6) {
  transition-delay: 0.40s;
}

.stagger-item:nth-child(7) {
  transition-delay: 0.48s;
}

.stagger-item:nth-child(8) {
  transition-delay: 0.56s;
}

.pulse-dot {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-right: 0.4em;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent);
  animation: pulseDot 1.7s infinite;
}

@keyframes pulseDot {
  70% {
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 0%, transparent);
  }

  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent);
  }
}


/* ==========================================================================
   15. Sheen / Hover Effects
   ========================================================================== */

.brand-mark,
.nav-cta,
.category-tile,
.product-card,
.drop-card,
.stat-stack div,
.cta-panel {
  will-change: transform;
}

.brand-mark::after,
.product-card::after,
.category-tile::after,
.drop-card::after {
  content: "";
  position: absolute;
  inset: -120% -60%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.22), transparent 62%);
  transform: translateX(-65%) rotate(8deg);
  transition:
    transform 0.65s ease,
    opacity 0.25s ease;
}

.brand:hover .brand-mark::after,
.product-card:hover::after,
.category-tile:hover::after,
.drop-card:hover::after {
  opacity: 1;
  transform: translateX(65%) rotate(8deg);
}


/* ==========================================================================
   16. Admin Base

   ========================================================================== */

.admin-body {
  color: #17202a;
  background: #eef2f6;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  padding: 24px;
  color: #fff;
  background: #0d1722;
}

.admin-sidebar a {
  display: block;
  padding: 12px 14px;
  color: #c9d3df;
  font-weight: 800;
  border-radius: 12px;
}

.admin-sidebar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.admin-main {
  padding: 34px;
}

.admin-card {
  margin-bottom: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(16, 34, 56, 0.08);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
	color: #07111F;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: 12px;
  font: inherit;
  border: 1px solid #ced8e3;
  border-radius: 12px;
}


/* ==========================================================================
   17. SGW-Style Admin Dashboard Shell
   ========================================================================== */

.admin-app {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  color: #152231;
  background: #eef3f7;
}

.admin-app .admin-sidebar {
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: 22px;
  color: #fff;
  background: linear-gradient(180deg, #07111f, #0d1722);
  box-shadow: 18px 0 60px rgba(10, 22, 34, 0.12);
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.admin-logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #07111f;
  font-weight: 1000;
  background: #d8ff3f;
  border-radius: 14px;
}

.admin-logo strong {
  display: block;
  line-height: 1.05;
}

.admin-logo span {
  color: #aab8c7;
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-app .admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-app .admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #c9d3df;
  font-weight: 850;
  border-radius: 14px;
  transition: 0.2s ease;
}

.admin-app .admin-sidebar a:hover,
.admin-app .admin-sidebar a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(3px);
}

.admin-app .admin-main {
  padding: 28px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-header h1 {
  color: #142234;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.admin-header p {
  margin: 0.35rem 0 0;
  color: #617083;
  font-weight: 700;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-app .admin-card {
  position: relative;
  margin-bottom: 22px;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(16, 34, 56, 0.08);
}

.admin-app .admin-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #d8ff3f;
  opacity: 0.95;
}

.admin-hero {
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, #081220, #17263a);
  border: none;
}

.admin-hero::before {
  width: 100%;
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 255, 63, 0.3), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(47, 125, 246, 0.28), transparent 28%);
}

.admin-hero > * {
  position: relative;
  z-index: 1;
}

.admin-hero h2 {
  color: #fff;
}

.admin-hero p {
  max-width: 720px;
  color: #c7d1dd;
}

.admin-app .admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
}

.admin-feature-card p {
  color: #617083;
}

.admin-feature-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.admin-stat {
  color: #142234;
  font-size: 2.4rem;
  font-weight: 1000;
  line-height: 1;
}

.admin-app .admin-field label {
  display: block;
  margin-bottom: 6px;
  color: #1b2a3a;
  font-weight: 900;
}

.admin-app .admin-field input,
.admin-app .admin-field textarea,
.admin-app .admin-field select {
  width: 100%;
  padding: 12px 13px;
  font: inherit;
  background: #fbfdff;
  border: 1px solid #ced8e3;
  border-radius: 14px;
}

.admin-app .admin-field input:focus,
.admin-app .admin-field textarea:focus,
.admin-app .admin-field select:focus {
  border-color: #2f7df6;
  outline: 3px solid rgba(47, 125, 246, 0.15);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e4ebf2;
}

.admin-table th {
  color: #647386;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-pill {
  display: inline-flex;
  padding: 5px 9px;
  color: #334155;
  background: #eef3f7;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.admin-note {
  color: #617083;
  font-size: 0.93rem;
}


/* ==========================================================================
   18. Responsive
   ========================================================================== */

@media (max-width: 1300px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .admin-app .admin-sidebar {
    position: relative;
    min-height: auto;
  }

  .admin-app .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contrast-pop {
    padding: 34px 22px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 20px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .drop-card {
    max-width: 520px;
  }

  .category-grid,
  .admin-shell,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .category-tile.tall,
  .category-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .split-head,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }
}

@media (max-width: 760px) {
  .shop-category-rail {
    top: 70px;
  }

  .shop-category-inner {
    gap: 22px;
  }

  .shop-category-link {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   19. Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  body::before {
    display: none;
  }

  .hero-bg,
  .pulse-dot {
    animation: none;
  }

  .reveal-up,
  .reveal-pop,
  .reveal-left,
  .reveal-right,
  .stagger-item {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   Shop Hero
========================================================= */

.shop-hero {
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 140px 0 54px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
}

.shop-hero h1 {
  max-width: 900px;
}

.shop-hero .hero-lede {
  max-width: 680px;
}


/* =========================================================
   FEATURE REEL
========================================================= */

.feature-reel {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 255, 63, 0.32), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(82, 168, 255, 0.38), transparent 32%),
    linear-gradient(135deg, #0047ff 0%, #001f8f 100%);
  color: #fff;
}

.feature-slide {
  position: absolute;
  inset: 0;
  min-height: 760px;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.feature-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.feature-art {
  position: absolute;
  inset: 36px 24px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.feature-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.66) 0%,
      rgba(0, 0, 0, 0.36) 42%,
      rgba(0, 0, 0, 0.08) 100%
    );
  pointer-events: none;
}

.feature-content {
  position: relative;
  z-index: 4;
  width: min(1400px, calc(100% - 80px));
  max-width: none;
  margin: 0 auto;
}

.feature-content h2 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.8rem, 6.4vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
}

.feature-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.feature-btn {
  margin-top: 30px;
  background: #071018;
  color: #d8ff3f;
}

.feature-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
}

.feature-arrow:hover,
.feature-arrow:focus-visible {
  color: #06100b;
  background: #d8ff3f;
  border-color: #d8ff3f;
}

.feature-dots {
  display: flex;
  gap: 8px;
}

.feature-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.feature-dots button.is-active {
  background: #d8ff3f;
}

@media (max-width: 760px) {
  .feature-reel,
  .feature-slide {
    min-height: 680px;
  }

  .feature-slide {
    align-items: end;
    padding-bottom: 92px;
  }

  .feature-art {
    inset: 24px 18px 210px;
    border-radius: 22px;
  }

  .feature-art::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.52) 100%
      );
  }

  .feature-content {
    width: min(100% - 36px, 680px);
  }

  .feature-content h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .feature-content p:not(.eyebrow) {
    font-size: 1rem;
  }
}


/* ==========================================================================
   21. Feature Reel Responsive
   ========================================================================== */

@media (max-width: 760px) {
  .feature-reel {
    min-height: 620px;
    margin: 0;
    padding: 0;
  }

  .feature-slide {
    position: absolute;
    inset: 0;
    min-height: 620px;
    width: 100%;
    padding: 0;
    margin: 0;
    transform: none;
  }

  .feature-art {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    max-width: none;
    margin: 0;
    transform: translateX(-50%);
    border-radius: 0;
  }

  .feature-art img {
    width: 100vw;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
  }

  .feature-content {
    position: relative;
    z-index: 5;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 220px;
  }
}


/* ==========================================================================
   22. Backdrop Typography Accents
   ========================================================================== */

.featured-products.has-backdrop-type,
.vibe-band.has-backdrop-type,
.cta-section.has-backdrop-type {
  position: relative;
  overflow: hidden;
}

.featured-products.has-backdrop-type > .container,
.vibe-band.has-backdrop-type > .container,
.cta-section.has-backdrop-type > .container {
  position: relative;
  z-index: 2;
}

.backdrop-type {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(4.5rem, 13vw, 14rem);
  font-weight: 1000;
  line-height: 0.78;
  letter-spacing: -0.095em;
  text-transform: uppercase;
  white-space: nowrap;
	}

.backdrop-type-products {
  top: -0.16em;
  right: -0.08em;
  color: rgba(255, 255, 255, 0.020);
}

.backdrop-type-vibe {
  left: -0.08em;
  bottom: -0.16em;
  color: rgba(216, 255, 63, 0.020);
}

.backdrop-type-cta {
  top: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(216, 255, 63, 0.020);
}

@media (max-width: 900px) {
  .backdrop-type {
    font-size: clamp(3.4rem, 16vw, 8rem);
    letter-spacing: -0.08em;
  }

  .backdrop-type-products {
    top: -0.08em;
    right: -0.45em;
  }

  .backdrop-type-vibe {
    top: -0.08em;
    bottom: auto;
    left: -0.35em;
  }

  .backdrop-type-cta {
    top: -0.08em;
    left: 50%;
  }
}


.backdrop-type-products {
  right: -0.08em;
  bottom: -0.05em;
  top: auto;
}

.backdrop-type-vibe {
  left: -0.08em;
  bottom: -0.05em;
  top: auto;
}

.backdrop-type-cta {
  left: 50%;
  bottom: -0.05em;
  top: auto;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .backdrop-type {
    font-size: clamp(3.4rem, 16vw, 8rem);
    letter-spacing: -0.08em;
  }

  .backdrop-type-products {
    right: -0.25em;
    bottom: -0.05em;
    top: auto;
  }

  .backdrop-type-vibe {
    left: -0.20em;
    bottom: -0.05em;
    top: auto;
  }

  .backdrop-type-cta {
    left: 50%;
    bottom: -0.05em;
    top: auto;
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   23. Footer Upate
   ========================================================================== */


.site-footer p {
  max-width: 420px;
  margin: 8px 0 0;
}

.powered-by {
  font-size: 0.85rem;
  opacity: 0.8;
}

.powered-by a {
  color: var(--accent);
  font-weight: 900;
}


/* ==========================================================================
   Policy Pages
   ========================================================================== */

.policy-section {
  padding: 80px 0;
}

.policy-card {
  position: relative;
  padding: 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.policy-card h2 {
  margin: 42px 0 14px;
  font-size: 1.6rem;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  padding-left: 24px;
}

.policy-card li {
  margin-bottom: 10px;
}

.policy-card strong {
  color: var(--text);
}

.policy-card a {
  color: var(--accent);
  font-weight: 800;
}

.policy-updated {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}


/* ==========================================================================
  Internal page updates
   ========================================================================== */

.internal-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.internal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}

.internal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.content-section {
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}


.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}


/* ==========================================================================
   Product Detail Pages
   ========================================================================== */

.product-detail-hero {
  position: relative;
  padding: 130px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%),
    linear-gradient(135deg, var(--bg-soft), var(--bg));
  border-bottom: 1px solid var(--line);
}

.product-detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.product-detail-media {
  margin: 0;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-copy h1 {
  max-width: 820px;
  margin-top: 18px;
}

.product-detail-price {
  margin: 22px 0 0;
  color: var(--accent);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 1000;
  line-height: 1;
}

.product-detail-lede {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.product-detail-buy {
  min-width: 210px;
}

.product-detail-note {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.product-detail-note strong {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-description-section {
  background: linear-gradient(135deg, var(--bg), var(--bg-soft));
}

.product-story-card {
  max-width: 940px;
}

.product-story-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.product-detail-list {
  margin: 28px 0 0;
  padding-left: 22px;
}

.product-detail-list li {
  margin-bottom: 10px;
  color: var(--muted);
}

.product-card-link {
  display: block;
}

.product-card h3 a {
  transition: color 0.2s ease;
}

.product-card h3 a:hover,
.product-card h3 a:focus-visible {
  color: var(--accent);
}

@media (max-width: 900px) {
  .product-detail-hero {
    padding: 110px 0 74px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .product-detail-hero {
    padding: 96px 0 62px;
  }

  .product-detail-copy h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }
}


/* ==========================================================================
   Premium Product Page Enhancements
   ========================================================================== */

.product-detail-hero {
  isolation: isolate;
}

.product-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 42%);
}

.product-detail-media {
  position: relative;
}

.product-detail-media::after {
  content: "Pars & Parlays";
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: rgba(255,255,255,.26);
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.product-trust-strip div {
  padding: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
}

.product-trust-strip strong {
  display: block;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.product-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.product-story-copy {
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.product-story-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.product-feature-stack {
  display: grid;
  gap: 16px;
}

.product-feature-stack article {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.product-feature-stack article::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.product-feature-stack span {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .18em;
}

.product-feature-stack h3 {
  margin: 10px 0 8px;
}

.product-feature-stack p {
  color: var(--muted);
}

.product-lifestyle-band {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 26%),
    linear-gradient(135deg, #06121f, #0b2f8a 48%, #06121f);
}

.product-lifestyle-band::before {
  content: "OWN THE ACTION";
  position: absolute;
  right: -0.12em;
  bottom: -0.18em;
  color: rgba(216, 255, 63, .08);
  font-size: clamp(4.2rem, 13vw, 14rem);
  font-weight: 1000;
  line-height: .8;
  letter-spacing: -.095em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-lifestyle-panel {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.product-lifestyle-panel h2 {
  color: #fff;
}

.product-lifestyle-panel p {
  max-width: 760px;
  color: rgba(255,255,255,.76);
  font-size: 1.12rem;
}

.product-confidence-section {
  padding-top: 70px;
  padding-bottom: 70px;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg));
}

.product-confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-confidence-card {
  padding: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.product-confidence-card strong {
  display: block;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-confidence-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .product-trust-strip,
  .product-story-layout,
  .product-confidence-grid {
    grid-template-columns: 1fr;
  }

  .product-lifestyle-band {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .product-trust-strip div,
  .product-story-copy,
  .product-feature-stack article,
  .product-confidence-card {
    padding: 22px;
  }
}

/* ==========================================================================
   SGW Commerce Cart
   ========================================================================== */

.add-to-cart-form {
  margin: 0;
}

.product-purchase-actions {
  align-items: stretch;
}

.product-purchase-actions .btn,
.product-purchase-actions button {
  height: 100%;
}

.cart-section {
  background: linear-gradient(135deg, var(--bg), var(--bg-soft));
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.36fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.cart-items-panel {
  display: grid;
  gap: 18px;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.cart-line-image {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--card);
}

.cart-line-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-line-main h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}

.cart-line-main p:not(.eyebrow) {
  color: var(--muted);
}

.cart-line-main strong,
.cart-line-total {
  color: var(--accent);
  font-weight: 1000;
}

.cart-line-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.cart-qty-form {
  display: flex;
  gap: 8px;
  align-items: end;
}

.cart-qty-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-qty-form input {
  width: 76px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.cart-qty-form button,
.cart-remove,
.cart-clear-form button {
  padding: 10px 14px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}

.cart-remove,
.cart-clear-form button {
  color: var(--muted);
}

.cart-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.035)
    );
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cart-summary h2 {
  margin-top: 6px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-summary-row strong {
  color: var(--accent);
  font-size: 1.3rem;
}

.cart-summary-note {
  color: var(--muted);
  font-size: 0.96rem;
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
}

.cart-clear-form {
  margin-top: 12px;
}

.cart-clear-form button {
  width: 100%;
}

.cart-summary-trust {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-summary-trust span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
  font-weight: 1000;
}

.cart-empty {
  padding: clamp(34px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 28px;
  text-align: center;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-line-item {
    grid-template-columns: 100px 1fr;
  }

  .cart-line-actions {
    grid-column: 1 / -1;
    justify-items: stretch;
  }
}

@media (max-width: 560px) {
  .cart-line-item {
    grid-template-columns: 1fr;
  }

  .cart-line-image {
    max-width: 180px;
  }

  .cart-qty-form {
    align-items: center;
    justify-content: space-between;
  }
}



.cart-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    font-size: 1.35rem;
    text-decoration: none;

    color: var(--text);
    transition: all .25s ease;
}

.cart-nav-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;

    min-width: 18px;
    height: 18px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent);
    color: #000;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

/* ===== Product galleries and sale pricing ===== */
.product-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 82px));
  gap: 12px;
  margin-top: 16px;
}
.product-gallery-thumb {
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
}
.product-gallery-thumb:hover { transform: translateY(-2px); }
.product-gallery-thumb.is-selected { border-color: var(--accent); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
#product-main-image { transition: opacity .18s ease; }
#product-main-image.is-changing { opacity: .28; }
.product-color-option.is-selected { border-color: var(--accent); color: var(--accent); }
.product-price-sale { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }

.product-price-sale .regular-price {
  position: relative;
  display: inline-block;
  opacity: 0.58;
  font-size: 0.86em;
  white-space: nowrap;
  text-decoration: none;
}

.product-price-sale .regular-price::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  pointer-events: none;
}

.product-price-sale .sale-price { font-weight: 1000; color: var(--accent); }
.cart-line-option { margin-bottom: 8px; }
@media (max-width: 560px) {
  .product-gallery-thumbnails { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
