﻿@import url("https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200..700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

:root {
  --sunset-orange: #E16A3D;
  --tangerine: #FFA45D;
  --pine: #016A6D;
  --nile-blue: #043E52;

  --rose-1: color-mix(in srgb, #ffffff 84%, var(--tangerine) 16%);
  --rose-2: color-mix(in srgb, #ffffff 72%, var(--tangerine) 28%);
  --rose-3: color-mix(in srgb, var(--tangerine) 62%, var(--sunset-orange) 38%);
  --rose-4: var(--sunset-orange);
  --rose-5: var(--nile-blue);
  --sun: var(--tangerine);
  --rust: var(--sunset-orange);
  --plum: var(--nile-blue);
  --indigo: var(--nile-blue);

  --bg: color-mix(in srgb, #ffffff 88%, var(--tangerine) 12%);
  --ink: #053447;
  --muted: rgba(4, 62, 82, 0.78);
  --accent: var(--sunset-orange);
  --accent-2: var(--tangerine);
  --accent-3: var(--pine);
  --panel: rgba(255, 255, 255, 0.58);
  --panel-2: rgba(255, 164, 93, 0.17);
  --border-soft: 1px solid rgba(4, 62, 82, 0.16);
  --shadow: 0 24px 56px rgba(4, 62, 82, 0.24);
  --shadow-soft: 0 14px 34px rgba(4, 62, 82, 0.16);
  --glass-reflection: linear-gradient(120deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.02) 58%);
  --glass-border-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 164, 93, 0.42), rgba(1, 106, 109, 0.34));
  --glass-surface:
    linear-gradient(160deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(145deg, rgba(255, 164, 93, 0.22), rgba(1, 106, 109, 0.1));
  --glass-corner-top: rgba(255, 255, 255, 0.52);
  --glass-corner-bottom: rgba(255, 164, 93, 0.36);
  --state-primary: linear-gradient(135deg, var(--sunset-orange), var(--tangerine));
  --state-secondary: linear-gradient(135deg, color-mix(in srgb, var(--pine), #ffffff 8%), var(--pine));
  --focus-ring: 0 0 0 3px color-mix(in srgb, var(--tangerine), #ffffff 62%);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --grid-gap: 24px;
  --font-display: "Yanone Kaffeesatz", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --snow: rgba(255, 248, 244, 0.92);
  --snow-glow: rgba(167, 141, 120, 0.48);
  --public-bg-image:
    url("../assets/background/bodybg3.jpg"),
    url("../assets/background/bodybg3.jpg"),
    url("../assets/background/bodybg3.jpg");
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="dark"] body {
  --bg: #032a39;
  --ink: #eef8fb;
  --muted: rgba(220, 243, 248, 0.8);
  --accent: var(--sunset-orange);
  --accent-2: var(--tangerine);
  --accent-3: color-mix(in srgb, var(--pine) 72%, #9ee9e2 28%);
  --panel: rgba(4, 62, 82, 0.62);
  --panel-2: rgba(1, 106, 109, 0.3);
  --border-soft: 1px solid rgba(255, 164, 93, 0.26);
  --shadow: 0 24px 62px rgba(0, 18, 28, 0.58);
  --shadow-soft: 0 14px 34px rgba(0, 18, 28, 0.46);
  --snow: rgba(238, 248, 251, 0.92);
  --snow-glow: rgba(255, 164, 93, 0.34);
  --glass-reflection: linear-gradient(120deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 62%);
  --glass-border-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 164, 93, 0.4), rgba(1, 106, 109, 0.32));
  --glass-surface:
    linear-gradient(160deg, rgba(5, 72, 92, 0.58), rgba(5, 72, 92, 0.34) 44%, rgba(4, 62, 82, 0.22) 100%),
    linear-gradient(145deg, rgba(255, 164, 93, 0.16), rgba(1, 106, 109, 0.22));
  --glass-corner-top: rgba(245, 252, 255, 0.28);
  --glass-corner-bottom: rgba(255, 164, 93, 0.24);
  background-color: #032a39;
  background-image:
    linear-gradient(150deg, rgba(4, 18, 32, 0.55), rgba(4, 20, 36, 0.6)),
    var(--public-bg-image),
    radial-gradient(84rem 44rem at 8% 10%, rgba(225, 106, 61, 0.13), transparent 68%),
    radial-gradient(72rem 40rem at 90% 16%, rgba(1, 106, 109, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(2, 10, 18, 0.45) 0%, rgba(3, 14, 24, 0.42) 48%, rgba(2, 10, 18, 0.46) 100%);
  background-size: cover, cover, cover, cover, auto, auto, auto;
  background-position:
    center,
    center calc(0% + var(--bg-parallax-y-1)),
    center calc(0% + var(--bg-parallax-y-2)),
    center calc(0% + var(--bg-parallax-y-3)),
    8% calc(10% + var(--bg-parallax-y-4)),
    90% calc(16% + var(--bg-parallax-y-5)),
    center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed, fixed;
  background-blend-mode: normal, multiply, soft-light, screen, soft-light, soft-light, normal;
}

html[data-theme="dark"] body::before {
  inset: 0;
  background-image: url("../assets/background/bodybg4.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.35;
  mix-blend-mode: normal;
  filter: none;
}

html[data-theme="dark"] body::after {
  background-image:
    radial-gradient(closest-side, rgba(167, 141, 120, 0.22), transparent 72%),
    radial-gradient(closest-side, rgba(225, 212, 194, 0.24), transparent 70%),
    radial-gradient(closest-side, rgba(41, 28, 14, 0.62), transparent 74%);
  opacity: 0.39;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  --bg-parallax-y-1: 0px;
  --bg-parallax-y-2: 0px;
  --bg-parallax-y-3: 0px;
  --bg-parallax-y-4: 0px;
  --bg-parallax-y-5: 0px;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background-color: var(--bg);
  overflow-x: hidden;
  background-image:
    linear-gradient(160deg, rgba(8, 20, 34, 0.14), rgba(8, 20, 34, 0.1)),
    var(--public-bg-image),
    radial-gradient(84rem 44rem at 8% 10%, rgba(225, 106, 61, 0.07), transparent 68%),
    radial-gradient(70rem 38rem at 90% 16%, rgba(1, 106, 109, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(8, 18, 30, 0.07) 0%, rgba(8, 18, 30, 0.06) 44%, rgba(8, 18, 30, 0.08) 100%);
  background-size: cover, cover, cover, cover, auto, auto, auto;
  background-position:
    center,
    center calc(0% + var(--bg-parallax-y-1)),
    center calc(0% + var(--bg-parallax-y-2)),
    center calc(0% + var(--bg-parallax-y-3)),
    8% calc(10% + var(--bg-parallax-y-4)),
    90% calc(16% + var(--bg-parallax-y-5)),
    center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed, fixed;
  background-blend-mode: normal, multiply, soft-light, screen, soft-light, soft-light, normal;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

body::before {
  inset: 0;
  background-image: url("../assets/background/bodybg4.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.35;
  mix-blend-mode: normal;
  filter: none;
}

body::after {
  inset: -35vmax;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.39;
  filter: blur(40px) saturate(1.15);
  background-image:
    radial-gradient(closest-side, rgba(110, 71, 59, 0.34), transparent 72%),
    radial-gradient(closest-side, rgba(190, 181, 169, 0.5), transparent 70%),
    radial-gradient(closest-side, rgba(41, 28, 14, 0.24), transparent 74%);
  background-size: 58vmax 58vmax, 46vmax 46vmax, 50vmax 50vmax;
  background-position: 18% 82%, 78% 70%, 92% 36%;
  animation: bgDrift2 26s ease-in-out infinite alternate;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  --header-sep-x: -185%;
  --header-sep-opacity: 0.68;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px) saturate(172%);
  -webkit-backdrop-filter: blur(10px) saturate(172%);
  background:
    radial-gradient(120% 140% at 10% -40%, rgba(227, 247, 255, 0.22), rgba(227, 247, 255, 0) 52%),
    linear-gradient(148deg, rgba(2, 8, 24, 0.9), rgba(4, 62, 82, 0.84) 54%, rgba(1, 106, 109, 0.5)),
    linear-gradient(180deg, rgba(227, 247, 255, 0.12), rgba(227, 247, 255, 0.02) 52%, rgba(1, 8, 20, 0.16));
  border-bottom: 1px solid rgba(193, 229, 242, 0.28);
  box-shadow:
    0 16px 34px rgba(1, 12, 24, 0.44),
    inset 0 1px 0 rgba(236, 248, 252, 0.24),
    inset 0 -1px 0 rgba(2, 16, 28, 0.5);
  isolation: isolate;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  border-radius: 999px;
  pointer-events: none;
}

.site-header::before {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(232, 247, 255, 0.56) 14%,
      rgba(222, 240, 248, 0.22) 50%,
      rgba(232, 247, 255, 0.52) 86%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(180deg, rgba(235, 248, 255, 0.4) 0%, rgba(160, 214, 230, 0.08) 100%);
  backdrop-filter: blur(6px) saturate(145%);
  -webkit-backdrop-filter: blur(6px) saturate(145%);
  box-shadow:
    0 4px 12px rgba(3, 36, 50, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0.88;
}

.site-header::after {
  background:
    linear-gradient(
      108deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.02) 41%,
      rgba(255, 255, 255, 0.18) 46%,
      rgba(255, 255, 255, 0.58) 50%,
      rgba(255, 255, 255, 0.18) 54%,
      rgba(255, 255, 255, 0.02) 59%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  background-size: 220% 100%, 100% 100%;
  background-position: var(--header-sep-x) 0, 0 0;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  opacity: var(--header-sep-opacity);
  animation: headerSeparatorShine 8.6s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

html.js-ready .site-header::after {
  animation: none;
}

html[data-theme="dark"] .site-header {
  --header-sep-opacity: 0.54;
  background:
    radial-gradient(120% 140% at 12% -38%, rgba(227, 247, 255, 0.16), rgba(227, 247, 255, 0) 52%),
    linear-gradient(148deg, rgba(2, 6, 18, 0.95), rgba(3, 41, 58, 0.88) 56%, rgba(1, 82, 96, 0.52)),
    linear-gradient(180deg, rgba(227, 247, 255, 0.08), rgba(227, 247, 255, 0.01) 56%, rgba(1, 8, 20, 0.22));
  border-bottom: 1px solid rgba(193, 229, 242, 0.22);
  box-shadow:
    0 14px 30px rgba(0, 6, 16, 0.56),
    inset 0 1px 0 rgba(236, 248, 252, 0.16),
    inset 0 -1px 0 rgba(2, 16, 28, 0.62);
}

html[data-theme="dark"] .site-header::before {
  opacity: 0.62;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 11px 0;
  gap: 12px;
  position: relative;
}

.site-header,
.site-header a,
.site-header .nav-toggle,
.site-header .theme-toggle {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: -96px;
  margin-right: auto;
  flex-shrink: 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-soft);
}

.brand-text span {
  display: block;
}

.brand-text .title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-text .subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-weight: 600;
  margin-left: auto;
  margin-right: -72px;
}

html[data-theme="dark"] .main-nav {
  color: var(--ink);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.92rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  font-size: clamp(0.9rem, 0.16vw + 0.86rem, 1.02rem);
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(6, 74, 98, 0.46), rgba(3, 44, 62, 0.28));
  border: 1px solid rgba(188, 226, 241, 0.24);
  box-shadow:
    0 10px 22px rgba(2, 18, 28, 0.26),
    inset 0 1px 0 rgba(228, 247, 253, 0.2);
  backdrop-filter: blur(7px) saturate(155%);
  -webkit-backdrop-filter: blur(7px) saturate(155%);
  color: rgba(236, 228, 218, 0.9);
  transform: translate3d(0, 0, 0);
  transition: color 220ms ease, transform 220ms ease, box-shadow 260ms ease, background 260ms ease, border-color 220ms ease;
}

.main-nav a i {
  font-size: 0.92em;
  opacity: 0.96;
}

html[data-theme="dark"] .main-nav a {
  color: rgba(248, 161, 69, 0.9);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0.25);
  transform-origin: center;
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(27, 135, 170, 0.32), rgba(4, 62, 82, 0.22));
  box-shadow: inset 0 1px 0 rgba(235, 248, 255, 0.5);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: -1;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  opacity: 0.95;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: rgba(214, 239, 248, 0.38);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(2, 18, 28, 0.36),
    inset 0 1px 0 rgba(236, 248, 252, 0.28);
}

.main-nav a:hover::before,
.main-nav a.active::before {
  opacity: 1;
  transform: scale(1);
}

.cart-pill {
  background: linear-gradient(145deg, rgba(6, 74, 98, 0.52), rgba(3, 44, 62, 0.34));
  border-radius: 999px;
  min-height: 38px;
  padding: 0.5rem 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(188, 226, 241, 0.34);
  box-shadow:
    0 10px 24px rgba(2, 18, 28, 0.3),
    inset 0 1px 0 rgba(228, 247, 253, 0.24);
}

html[data-theme="dark"] .cart-pill {
  background: rgba(21, 21, 21, 0.9);
  border-color: rgba(248, 161, 69, 0.22);
}

.cart-count {
  background: var(--accent);
  color: var(--indigo);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  border: 1px solid rgba(185, 226, 241, 0.32);
  border-radius: 12px;
  width: 44px;
  height: 40px;
  justify-content: center;
  padding: 0;
  background: linear-gradient(160deg, rgba(220, 242, 250, 0.2), rgba(60, 124, 150, 0.1));
  box-shadow: 0 10px 24px rgba(4, 8, 14, 0.32);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

html[data-theme="dark"] .nav-toggle {
  background: rgba(21, 21, 21, 0.9);
  border-color: rgba(248, 161, 69, 0.24);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(41, 28, 14, 0.2);
}

.nav-toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent), white 24%);
  outline-offset: 2px;
}

.nav-toggle-box {
  width: 18px;
  display: inline-grid;
  gap: 4px;
}

.nav-toggle-line {
  height: 2px;
  width: 18px;
  border-radius: 999px;
  background: rgba(236, 228, 218, 0.92);
  transform-origin: center;
  transition: transform 260ms ease, opacity 260ms ease, background 260ms ease;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

@media (max-width: 1200px) {
  .brand {
    margin-left: -56px;
  }

  .main-nav {
    margin-right: -34px;
  }
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  padding: 0;
  border: 1px solid rgba(20, 20, 20, 0.2);
  background: rgba(240, 240, 240, 0.9);
  color: var(--accent-2);
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.theme-toggle-icon {
  width: 22px;
  height: 22px;
  display: block;
  background-image: url("../assets/icons/switch_L.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.theme-toggle-label {
  display: none;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(21, 21, 21, 0.95);
  border-color: rgba(248, 161, 69, 0.3);
  color: var(--accent);
}

html[data-theme="dark"] .theme-toggle-icon {
  background-image: url("../assets/icons/switch_D.svg");
}

.hero {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(240, 220, 200, 0.28);
  border: 1px solid rgba(20, 20, 20, 0.08);
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.2vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

body:not(.admin-body) :is(a.btn, button.btn, .ahx-btn) .btn-icon {
  width: 1.08em;
  min-width: 1.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94em;
  line-height: 1;
  transform: translateY(-0.5px);
  text-shadow: 0 1px 2px rgba(4, 62, 82, 0.22);
}

body:not(.admin-body) :is(a.btn-secondary, button.btn-secondary, .ahx-btn.ghost) .btn-icon {
  color: rgba(233, 251, 250, 0.96);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: var(--indigo);
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 18px 36px rgba(240, 120, 20, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 20, 20, 0.12);
}

.btn-danger {
  background: rgba(184, 58, 20, 0.12);
  border: 1px solid rgba(184, 58, 20, 0.35);
  color: var(--rust);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] .btn-secondary {
  background: rgba(41, 28, 14, 0.72);
  border-color: rgba(225, 212, 194, 0.22);
}

html[data-theme="dark"] .btn-danger {
  background: rgba(110, 71, 59, 0.22);
  border-color: rgba(167, 141, 120, 0.45);
  color: var(--accent-3);
}

html[data-theme="dark"] .slider-window,
html[data-theme="dark"] .statement-panel,
html[data-theme="dark"] .product-showcase,
html[data-theme="dark"] .checkout-card,
html[data-theme="dark"] .portal-card,
html[data-theme="dark"] .cta-panel,
html[data-theme="dark"] .footer {
  background: linear-gradient(160deg, rgba(41, 28, 14, 0.92), rgba(23, 6, 11, 0.9));
  border-color: rgba(225, 212, 194, 0.16);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .metric-card,
html[data-theme="dark"] .panel-item,
html[data-theme="dark"] .collection-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .card,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .product-media-card,
html[data-theme="dark"] .support-card,
html[data-theme="dark"] .detail-card,
html[data-theme="dark"] .summary-card,
html[data-theme="dark"] .checkout-block,
html[data-theme="dark"] .portal-section,
html[data-theme="dark"] .order-card,
html[data-theme="dark"] .empty-state,
html[data-theme="dark"] .stat {
  background: rgba(41, 28, 14, 0.82);
  border-color: rgba(225, 212, 194, 0.14);
  box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] .product-plate,
html[data-theme="dark"] .media-slider,
html[data-theme="dark"] .product-plate::after,
html[data-theme="dark"] .product-media-card::after,
html[data-theme="dark"] .product-showcase::before,
html[data-theme="dark"] .product-showcase::after,
html[data-theme="dark"] .statement-panel::before,
html[data-theme="dark"] .collection-card::before,
html[data-theme="dark"] .metric-card::after {
  filter: saturate(0.8);
}

html[data-theme="dark"] .cart-pill,
html[data-theme="dark"] .qty-control {
  background: rgba(41, 28, 14, 0.82);
  border-color: rgba(225, 212, 194, 0.18);
}

html[data-theme="dark"] .qty-btn {
  background: rgba(110, 71, 59, 0.28);
  border-color: rgba(167, 141, 120, 0.45);
  color: var(--accent-3);
}

html[data-theme="dark"] .main-nav.open {
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .hero-lede {
  color: var(--muted);
}

html[data-theme="dark"] .pill,
html[data-theme="dark"] .collection-tag,
html[data-theme="dark"] .signal-badge,
html[data-theme="dark"] .badge.neutral {
  background: rgba(110, 71, 59, 0.24);
  color: var(--accent-3);
  border-color: rgba(167, 141, 120, 0.42);
}

html[data-theme="dark"] .marquee {
  border-color: rgba(225, 212, 194, 0.22);
  background:
    radial-gradient(120% 140% at 6% -30%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 54%),
    linear-gradient(145deg, rgba(7, 20, 34, 0.72), rgba(10, 32, 48, 0.58));
}

html[data-theme="dark"] .marquee::before {
  background: linear-gradient(90deg, rgba(10, 24, 38, 0.94), rgba(10, 24, 38, 0));
}

html[data-theme="dark"] .marquee::after {
  background: linear-gradient(270deg, rgba(10, 24, 38, 0.94), rgba(10, 24, 38, 0));
}

html[data-theme="dark"] .marquee-item {
  color: rgba(225, 212, 194, 0.9);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .footer {
  color: var(--muted);
}

html[data-theme="dark"] .footer-column a {
  color: rgba(225, 212, 194, 0.9);
}

html[data-theme="dark"] .footer-column a:hover {
  color: var(--accent-3);
}

html[data-theme="dark"] .footer-pill {
  background: rgba(167, 141, 120, 0.2);
  color: var(--accent-3);
  border: 1px solid rgba(225, 212, 194, 0.24);
}

html[data-theme="dark"] .footer-cta {
  background: linear-gradient(160deg, rgba(41, 28, 14, 0.72), rgba(110, 71, 59, 0.45));
  border: 1px solid rgba(225, 212, 194, 0.22);
}

html[data-theme="dark"] .footer-copy,
html[data-theme="dark"] .footer-meta {
  color: rgba(225, 212, 194, 0.8);
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(240, 220, 200, 0.88));
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(240, 220, 200, 0.3), transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero-card .stat-grid {
  display: grid;
  gap: 16px;
}

.hero-slider {
  padding: 100px 0 48px;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background:
    linear-gradient(180deg, rgba(240, 240, 240, 0.9) 0%, rgba(240, 240, 220, 0.86) 45%, rgba(240, 220, 200, 0.65) 100%);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: -40% 5% auto 5%;
  height: 260px;
  background: radial-gradient(circle, rgba(240, 120, 20, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 -30% 0;
  height: 220px;
  background: radial-gradient(circle at 50% 0%, rgba(20, 20, 20, 0.12), transparent 70%);
  pointer-events: none;
}

html[data-theme="dark"] .hero-slider {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(21, 21, 21, 0.95) 50%, rgba(0, 0, 0, 0.92) 100%);
}

html[data-theme="dark"] .hero-slider::before {
  background: radial-gradient(circle, rgba(240, 121, 0, 0.22), transparent 70%);
}

html[data-theme="dark"] .hero-slider::after {
  background: radial-gradient(circle at 50% 0%, rgba(21, 21, 21, 0.5), transparent 70%);
}

.hero-slider.is-single .slider-controls {
  display: none;
}

.slider-window {
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(240, 220, 200, 0.35), rgba(240, 120, 20, 0.12));
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 20, 20, 0.08);
  overflow: hidden;
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.slider-track {
  display: flex;
  transition: transform 0.65s ease;
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 44px;
  align-items: center;
}

.slide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  margin-bottom: 14px;
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 22px;
  font-weight: 600;
}

.slide-visual {
  background: linear-gradient(160deg, rgba(240, 220, 200, 0.45), rgba(240, 120, 20, 0.2));
  border-radius: var(--radius-md);
  padding: 0;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.18);
}

.slide-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.24), transparent 70%);
  top: -80px;
  right: -60px;
}

.slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: none;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.slider-btn {
  background: rgba(240, 220, 200, 0.35);
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(20, 20, 20, 0.18);
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dot.active {
  width: 22px;
  background: var(--accent);
}

.hero-summary {
  padding-top: 12px;
}

.hero-statement .hero-grid {
  align-items: center;
  gap: 32px;
}

.hero-copy {
  max-width: 560px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.hero-lede {
  font-size: 1.1rem;
  color: rgba(89, 75, 86, 0.92);
  margin-bottom: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.metric-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25), transparent 70%);
  animation: float 7s ease-in-out infinite;
}

.metric-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.statement-panel {
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(240, 220, 200, 0.9));
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 20, 20, 0.08);
  overflow: hidden;
}

.statement-panel::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.16), transparent 70%);
  animation: float 9s ease-in-out infinite;
}

.statement-panel > * {
  position: relative;
  z-index: 1;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.panel-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  flex: 1 1 180px;
}

.panel-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  font-weight: 600;
  width: 100%;
}

.signal-badge {
  background: rgba(240, 220, 200, 0.45);
  color: var(--plum);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.panel-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-item {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: var(--shadow-soft);
}

.panel-item strong {
  display: block;
  font-weight: 600;
}

.panel-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.panel-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.collection-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.collection-card > * {
  position: relative;
  z-index: 1;
}

.collection-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240, 120, 20, 0.16);
  color: #141414;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.step-grid {
  margin-top: 24px;
}

.step-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.2), transparent 70%);
}

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.08);
  font-weight: 700;
  margin-bottom: 12px;
}

.stat {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.stat strong {
  font-size: 1.4rem;
  display: block;
  font-family: var(--font-display);
}

.section {
  padding: 68px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 680px;
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

[data-product-detail] {
  align-items: start;
}

.card {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card h3 {
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(240, 120, 20, 0.18);
  color: var(--rust);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-plate {
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(140deg, rgba(240, 220, 200, 0.3), rgba(240, 120, 20, 0.16));
  display: grid;
  place-items: center;
  min-height: 120px;
  position: relative;
  overflow: hidden;
}

.product-plate::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.18), transparent 70%);
  top: -30px;
  right: -20px;
  animation: pulse 6s ease-in-out infinite;
}

.product-plate img {
  width: 70px;
  height: 70px;
}

.product-card .product-plate {
  padding: 0;
  aspect-ratio: 4 / 3;
  display: block;
}

.product-card .product-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media {
  display: grid;
  gap: 12px;
  align-self: start;
}

.media-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(140deg, rgba(240, 220, 200, 0.35), rgba(240, 120, 20, 0.18));
  box-shadow: var(--shadow);
}

.media-slider.is-single .media-btn,
.media-slider.is-single .media-dots {
  display: none;
}

.media-track {
  display: flex;
  transition: transform 0.5s ease;
}

.media-slide {
  min-width: 100%;
  border: none;
  background: transparent;
  cursor: zoom-in;
  padding: 0;
  position: relative;
  aspect-ratio: 4 / 3;
}

.media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(240, 220, 200, 0.35);
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.media-btn.prev {
  left: 12px;
}

.media-btn.next {
  right: 12px;
}

.media-btn:hover {
  transform: translateY(calc(-50% - 1px));
  box-shadow: var(--shadow-soft);
}

.media-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.media-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(20, 20, 20, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.media-dot.active {
  width: 22px;
  background: var(--accent);
}

.photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(15, 12, 10, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.photo-viewer.open {
  opacity: 1;
  pointer-events: auto;
}

.photo-viewer.is-single .viewer-nav,
.photo-viewer.is-single .viewer-thumbs {
  display: none;
}

.viewer-surface {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  width: min(960px, 96%);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.viewer-main {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(240, 220, 200, 0.18);
}

.viewer-main img {
  width: 100%;
  height: min(520px, 70vh);
  object-fit: contain;
  background: rgba(240, 220, 200, 0.18);
}

.viewer-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 8px;
}

.viewer-thumb {
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 12px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.viewer-thumb img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
}

.viewer-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.viewer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(20, 20, 20, 0.18);
  background: rgba(240, 220, 200, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(20, 20, 20, 0.18);
  background: rgba(240, 220, 200, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.viewer-nav.prev {
  left: 18px;
}

.viewer-nav.next {
  right: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.product-price {
  color: var(--rust);
}

.pill {
  background: rgba(240, 220, 200, 0.28);
  color: var(--plum);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
}

.marquee-band {
  margin: clamp(0.6rem, 1.4vw, 1rem) 0 clamp(0.7rem, 1.6vw, 1.15rem);
  z-index: 2;
}

.marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--nile-blue), transparent 72%);
  border-radius: 999px;
  background:
    radial-gradient(120% 140% at 6% -30%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 54%),
    linear-gradient(145deg, rgba(236, 247, 252, 0.78), rgba(225, 242, 250, 0.52));
  backdrop-filter: blur(14px) saturate(165%);
  -webkit-backdrop-filter: blur(14px) saturate(165%);
  box-shadow:
    0 14px 30px color-mix(in srgb, var(--nile-blue), transparent 82%),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(28px, 5.5vw, 84px);
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(244, 250, 253, 0.96), rgba(244, 250, 253, 0));
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(244, 250, 253, 0.96), rgba(244, 250, 253, 0));
}

.marquee-track {
  --marquee-duration: 26s;
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.65rem, 1.4vw, 0.9rem) clamp(1.1rem, 2vw, 1.8rem);
  animation: marqueeFlow var(--marquee-duration) linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.marquee-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: clamp(0.67rem, 0.8rem + 0.18vw, 0.88rem);
  color: color-mix(in srgb, var(--ink), #ffffff 8%);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

.marquee-item::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent), #ffffff 32%));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent), transparent 80%);
}

body:not(.admin-body) .marquee:hover .marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none !important;
    transform: none !important;
  }
}

.cta-panel {
  background: linear-gradient(120deg, #141414, #141414);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--sun);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 120, 20, 0.4), transparent 70%);
  right: -60px;
  top: -60px;
  animation: float 10s ease-in-out infinite;
}

.cta-panel h2 {
  font-family: var(--font-display);
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
}

.site-footer {
  position: relative;
  margin-top: 60px;
  padding: 60px 0 32px;
  color: var(--indigo);
  background:
    radial-gradient(500px circle at 15% 20%, rgba(240, 220, 200, 0.36), transparent 60%),
    radial-gradient(540px circle at 85% 0%, rgba(20, 20, 20, 0.16), transparent 65%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(240, 220, 200, 0.2));
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  overflow: hidden;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(240, 120, 20, 0.24), transparent 70%);
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 28px;
  padding-inline: clamp(8px, 1vw, 16px);
  align-items: start;
}

.footer-top > * {
  min-width: 0;
  align-self: stretch;
  margin: 0;
}

.site-footer .footer-top > :is(.tw-tilt-card, .reveal) {
  width: 100%;
}

.footer-brand {
  display: grid;
  gap: 12px;
  align-content: start;
  max-width: 320px;
  height: 100%;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum);
  background: rgba(240, 220, 200, 0.3);
  border: 1px solid rgba(20, 20, 20, 0.12);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(3px, 0.4vw, 8px);
  border-radius: 16px;
  align-items: stretch;
  align-content: start;
  height: 100%;
}

.footer-column {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer .footer-links .footer-column:not(.tw-tilt-card) {
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.54), rgba(240, 220, 200, 0.2));
  border: 1px solid rgba(20, 20, 20, 0.1);
  box-shadow:
    0 8px 18px rgba(20, 20, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.footer h4 {
  font-family: var(--font-display);
  margin-bottom: 8px;
  line-height: 1.05;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  color: rgba(20, 20, 20, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-cta {
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.08), rgba(240, 220, 200, 0.3));
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  align-content: start;
  height: 100%;
}

.footer-cta .btn {
  justify-self: start;
}

.footer-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(20, 20, 20, 0.6);
  font-weight: 600;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 16px clamp(8px, 1vw, 16px) 0;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(20, 20, 20, 0.6);
}

.footer-copy {
  font-weight: 600;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
}

.footer-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  margin-right: 8px;
  background: currentColor;
  opacity: 0.55;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 90;
  isolation: isolate;
  overflow: visible;
}

.input {
  border-radius: 12px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: #fff;
  padding: 10px 14px;
  min-width: 200px;
}

.select {
  border-radius: 12px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: #fff;
  padding: 10px 14px;
}

.cart-hero {
  padding: 44px 0 14px;
}

.cart-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cart-title {
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.cart-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cart-step {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
}

.cart-step span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.6);
  font-weight: 600;
}

.cart-step strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cart-step small {
  color: var(--muted);
}

.cart-step.active {
  border-color: rgba(240, 120, 20, 0.45);
  box-shadow: 0 16px 32px rgba(240, 120, 20, 0.16);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-summary {
  position: sticky;
  top: 108px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  animation: cartItemIn 0.45s ease both;
}

.cart-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item .product-plate {
  min-height: 110px;
  padding: 12px;
  border-radius: 16px;
}

.cart-item-info {
  display: grid;
  gap: 12px;
}

.cart-item h3 {
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.cart-item .section-subtitle {
  margin-bottom: 0;
}

.cart-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cart-item-price {
  text-align: right;
  display: grid;
  gap: 2px;
}

.cart-item-price span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(20, 20, 20, 0.55);
}

.cart-item-price strong {
  font-size: 1.1rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: rgba(240, 220, 200, 0.25);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qty-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.qty-value {
  min-width: 26px;
  text-align: center;
  font-weight: 600;
}

.cart-remove {
  background: transparent;
  border: none;
  color: var(--accent-2);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.cart-remove:hover {
  color: var(--accent);
}

.summary-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  animation: summaryPop 0.45s ease both;
}

.summary-card h3 {
  font-family: var(--font-display);
  margin: 0;
}

.summary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(20, 20, 20, 0.6);
  font-weight: 600;
}

.summary-badge {
  background: rgba(240, 220, 200, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--plum);
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.summary-actions {
  display: grid;
  gap: 10px;
}

.summary-actions .btn {
  width: 100%;
}

.summary-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.empty-state {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px dashed rgba(20, 20, 20, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  text-align: center;
}

.checkout-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.checkout-heading .section-subtitle {
  margin-bottom: 0;
}

.checkout-layout {
  align-items: start;
}

.checkout-card {
  position: relative;
  padding: 26px;
  display: grid;
  gap: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 220, 200, 0.9));
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.checkout-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(240, 120, 20, 0.25), transparent 70%);
  z-index: 0;
}

.checkout-card > * {
  position: relative;
  z-index: 1;
}

.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.checkout-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.checkout-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.checkout-block {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.checkout-block-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkout-block-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.form-hint {
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-actions {
  display: grid;
  gap: 8px;
}

.checkout-card .input:focus {
  outline: 2px solid rgba(240, 120, 20, 0.35);
  border-color: rgba(240, 120, 20, 0.45);
  box-shadow: 0 0 0 4px rgba(240, 120, 20, 0.12);
}

.summary-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.portal-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.track-page .track-heading {
  gap: 10px;
  margin-bottom: 22px;
}

.track-page .track-heading .chip {
  width: max-content;
}

.track-page .track-heading-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portal-heading .section-subtitle {
  margin-bottom: 0;
}

.portal-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: start;
}

.track-page .track-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.55fr);
  gap: 20px;
}

.portal-card {
  position: relative;
  padding: 26px;
  display: grid;
  gap: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 220, 200, 0.9));
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow);
}

.track-page .track-card {
  gap: 14px;
}

.portal-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.portal-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.portal-section {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.track-page .track-login-panel {
  gap: 14px;
}

.track-login-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.track-login-panel [data-track-submit][aria-busy="true"] {
  opacity: 0.86;
  pointer-events: none;
}

.track-pass-toggle {
  border: 1px solid rgba(20, 20, 20, 0.18);
  background: rgba(240, 220, 200, 0.36);
  color: rgba(20, 20, 20, 0.82);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.track-pass-toggle:hover {
  background: rgba(240, 220, 200, 0.56);
  transform: translateY(-1px);
}

.track-status {
  min-height: 1.35em;
}

.track-status[data-state="success"] {
  color: #0f7b58;
}

.track-status[data-state="error"] {
  color: #9e2f1e;
}

.track-status[data-state="warning"] {
  color: #8f5d0d;
}

.track-status[data-state="loading"] {
  color: var(--muted);
}

.portal-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portal-profile-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.portal-orders {
  display: grid;
  gap: 12px;
}

.track-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.order-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20, 20, 20, 0.08);
  display: grid;
  gap: 10px;
}

.track-page .order-card {
  animation: summaryPop 360ms ease both;
}

.order-card.is-highlighted {
  border-color: rgba(240, 120, 20, 0.6);
  box-shadow: 0 12px 30px rgba(240, 120, 20, 0.18);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.order-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.track-copy-btn {
  border: 1px solid rgba(20, 20, 20, 0.18);
  background: rgba(240, 220, 200, 0.36);
  color: rgba(20, 20, 20, 0.86);
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.track-copy-btn:hover {
  background: rgba(240, 220, 200, 0.52);
  transform: translateY(-1px);
}

.track-tip-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0 0 0 18px;
}

.track-tip-list li {
  color: var(--muted);
  line-height: 1.5;
}

.is-hidden {
  display: none;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge.success {
  background: rgba(240, 220, 200, 0.4);
  color: var(--plum);
}

.badge.warn {
  background: rgba(240, 120, 20, 0.25);
  color: var(--rust);
}

.badge.neutral {
  background: rgba(20, 20, 20, 0.14);
  color: var(--indigo);
}

.spec-list {
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.product-page .section {
  position: relative;
}

.product-detail {
  display: grid;
  gap: 32px;
}

.product-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(240, 220, 200, 0.9));
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(240, 220, 200, 0.45), transparent 70%);
  animation: float 9s ease-in-out infinite;
}

.product-showcase::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.18), transparent 70%);
  animation: float 11s ease-in-out infinite;
}

.product-showcase > * {
  position: relative;
  z-index: 1;
}

.product-media-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.product-media-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -50% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 120, 20, 0.2), transparent 70%);
  z-index: 0;
}

.product-media-card > * {
  position: relative;
  z-index: 1;
}

.product-media-card .media-slider {
  box-shadow: none;
}

.product-media-card .media-slide img {
  transition: transform 0.35s ease;
}

.product-media-card .media-slide:hover img {
  transform: scale(1.04);
}

.product-media-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-media-footer .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--indigo);
  background: rgba(240, 220, 200, 0.2);
  border: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.product-info {
  display: grid;
  gap: 16px;
}

.product-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.05;
}

.product-intro {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.highlight-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(240, 120, 20, 0.22), transparent 70%);
  opacity: 0.8;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.highlight-card span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(20, 20, 20, 0.65);
}

.highlight-card strong {
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.highlight-card .mini {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--plum);
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
}

.support-card strong {
  font-family: var(--font-display);
}

.product-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
}

.detail-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.detail-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-kv {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-kv span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(20, 20, 20, 0.6);
}

.detail-kv strong {
  display: block;
  margin-top: 6px;
}

.spec-list-modern {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.spec-list-modern li {
  background: rgba(240, 220, 200, 0.18);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.95rem;
}

.related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.related-grid .product-card {
  position: relative;
  overflow: hidden;
}

.related-grid .product-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.12), transparent 70%);
  opacity: 0.6;
}

hr {
  border: none;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
  margin: 10px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes headerSeparatorShine {
  0% {
    background-position: -185% 0, 0 0;
    opacity: 0.58;
  }
  42% {
    background-position: -185% 0, 0 0;
    opacity: 0.6;
  }
  52% {
    background-position: 25% 0, 0 0;
    opacity: 0.82;
  }
  100% {
    background-position: 185% 0, 0 0;
    opacity: 0.58;
  }
}

@keyframes bgDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4vmax, -3vmax, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-3vmax, 4vmax, 0) scale(1.06);
  }
}

@keyframes bgDrift2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  50% {
    transform: translate3d(-5vmax, 2vmax, 0) scale(1.05);
  }
  100% {
    transform: translate3d(3vmax, -4vmax, 0) scale(1.08);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes cartItemIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes summaryPop {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes marqueeFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .slide {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-layout {
    grid-template-columns: 1fr;
  }

  .track-page .track-layout {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-inline: 0;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .footer-meta {
    width: 100%;
    margin-top: 2px;
  }

  body:not(.admin-body):not(.home-public) main.container {
    width: min(1240px, 95%);
    padding-inline: 0;
  }

  body:not(.admin-body):not(.home-public) main.container > .section {
    padding-inline: 0;
  }
}

@media (max-width: 760px) {
  .brand {
    margin-left: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    right: 14px;
    width: min(86vw, 340px);
    background: linear-gradient(150deg, rgba(4, 62, 82, 0.88), rgba(1, 106, 109, 0.52));
    border-radius: 20px;
    border: 1px solid rgba(188, 226, 241, 0.28);
    box-shadow: 0 28px 54px rgba(2, 16, 26, 0.44);
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    transform: translate3d(0, -16px, 0) scale(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 240ms ease,
      visibility 0s linear 360ms;
    z-index: 90;
    margin-right: 0;
  }

  .track-page .track-heading-pills {
    gap: 6px;
  }

  .track-login-actions {
    width: 100%;
  }

  .track-login-actions .btn,
  .track-pass-toggle {
    width: 100%;
    justify-content: center;
  }

  html[data-theme="dark"] .main-nav {
    background: rgba(21, 21, 21, 0.95);
    border: 1px solid rgba(248, 161, 69, 0.22);
  }

  .main-nav.open {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .main-nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    padding: 0.8rem 0.95rem;
    font-size: 1.04rem;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      color 220ms ease;
  }

  .main-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.open a:nth-child(1) {
    transition-delay: 40ms;
  }

  .main-nav.open a:nth-child(2) {
    transition-delay: 80ms;
  }

  .main-nav.open a:nth-child(3) {
    transition-delay: 120ms;
  }

  .main-nav.open a:nth-child(4) {
    transition-delay: 160ms;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .cart-pill {
    justify-content: space-between;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .product-media-card {
    padding: 14px;
  }

  .product-highlight-grid {
    grid-template-columns: 1fr;
  }

  .product-support {
    grid-template-columns: 1fr;
  }

  .detail-kv {
    grid-template-columns: 1fr;
  }

  .spec-list-modern {
    grid-template-columns: 1fr;
  }

  .related-header {
    align-items: flex-start;
  }

  .checkout-card {
    padding: 22px;
  }

  .checkout-block {
    padding: 16px;
  }

  .portal-card {
    padding: 22px;
  }

  .portal-profile-grid {
    grid-template-columns: 1fr;
  }

  .slide {
    padding: 26px;
  }

  .slider-controls {
    flex-wrap: wrap;
  }

  .brand-logo {
    height: 30px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .cart-steps {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-price {
    text-align: left;
  }

  .panel-footer {
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(41, 28, 14, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
  animation: bgGridDrift 32s linear infinite;
}

html::after {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(225, 212, 194, 0.34), transparent 70%) 18% 22% / 46% 46% no-repeat,
    radial-gradient(closest-side, rgba(167, 141, 120, 0.24), transparent 70%) 82% 30% / 56% 56% no-repeat,
    radial-gradient(closest-side, rgba(41, 28, 14, 0.18), transparent 70%) 64% 86% / 50% 50% no-repeat;
  filter: blur(28px);
  animation: bgBlobFloat 26s ease-in-out infinite;
}

html[data-theme="dark"]::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(225, 212, 194, 0.2) 1px, transparent 1px);
  opacity: 0.2;
}

html[data-theme="dark"]::after {
  background:
    radial-gradient(closest-side, rgba(41, 28, 14, 0.46), transparent 70%) 18% 22% / 46% 46% no-repeat,
    radial-gradient(closest-side, rgba(167, 141, 120, 0.2), transparent 70%) 82% 30% / 56% 56% no-repeat,
    radial-gradient(closest-side, rgba(20, 5, 9, 0.6), transparent 70%) 64% 86% / 50% 50% no-repeat;
  filter: blur(32px);
  opacity: 0.4;
}

@keyframes bgGridDrift {
  from { background-position: 0 0; }
  to { background-position: 140px 140px; }
}

@keyframes bgBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.04); }
}
}
.footer {
  position: relative;
  padding: 48px 24px 32px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(240, 220, 200, 0.9));
  border-top: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* AxonHut 2026 public showcase: high-fidelity glass + adaptive minimalism */
.ahx-showcase {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 6vw, 7rem) 0 clamp(4rem, 7vw, 8rem);
  background:
    radial-gradient(60rem 40rem at 12% 8%, color-mix(in srgb, var(--accent), transparent 62%), transparent 70%),
    radial-gradient(56rem 38rem at 88% 16%, color-mix(in srgb, var(--accent), transparent 76%), transparent 72%),
    radial-gradient(44rem 28rem at 52% 92%, rgba(10, 14, 28, 0.64), transparent 76%),
    linear-gradient(180deg, #0c1221 0%, #0b1324 44%, #0a101d 100%);
}

.ahx-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--accent), transparent 82%), transparent 52%),
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--accent), transparent 86%), transparent 56%);
  filter: blur(24px);
  opacity: 0.85;
}

.ahx-shell {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.8rem);
}

.ahx-glass {
  --glass-tint: color-mix(in srgb, var(--panel), rgba(255, 255, 255, 0.1) 34%);
  position: relative;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(154deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04) 44%, rgba(255, 255, 255, 0.02) 72%),
    var(--glass-tint);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 22px 48px rgba(2, 8, 24, 0.45);
  overflow: hidden;
}

.ahx-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    138deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(255, 255, 255, 0.24) 35%,
    rgba(255, 255, 255, 0.04) 62%,
    rgba(255, 255, 255, 0.24) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ahx-glass::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -1.55rem;
  height: 2.6rem;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(6, 12, 24, 0.72), rgba(6, 12, 24, 0));
  filter: blur(14px);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

.ahx-hero {
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.8rem);
  padding: clamp(1.5rem, 2.8vw, 2.2rem);
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.ahx-kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.68rem, 0.8vw, 0.8rem);
  color: rgba(232, 239, 255, 0.76);
}

.ahx-title {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: #f8fbff;
  text-wrap: balance;
}

.ahx-title .accent {
  color: var(--accent);
}

.ahx-lede {
  margin-top: 1rem;
  max-width: 44ch;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.7;
  color: rgba(226, 236, 255, 0.84);
}

.ahx-cta-row {
  margin-top: clamp(1.1rem, 1.8vw, 1.7rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ahx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.72rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.ahx-btn.primary {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent), #ffffff 28%));
  color: #0d1424;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--accent), transparent 62%);
}

.ahx-btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(239, 246, 255, 0.92);
}

.ahx-btn:hover {
  transform: translateY(-2px);
}

.ahx-hero-meta {
  align-self: stretch;
  display: grid;
  gap: 0.8rem;
}

.ahx-stat {
  padding: 1rem 1rem 0.95rem;
}

.ahx-stat span {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: rgba(224, 233, 248, 0.66);
}

.ahx-stat strong {
  margin-top: 0.48rem;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  color: rgba(245, 250, 255, 0.98);
}

.ahx-featured-head {
  margin-top: clamp(0.5rem, 1.4vw, 1.2rem);
  padding-inline: 0.1rem;
}

.ahx-featured-head h2 {
  font-family: var(--font-display);
  color: #f2f7ff;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  letter-spacing: 0.02em;
}

.ahx-featured-head p {
  margin-top: 0.45rem;
  max-width: 60ch;
  color: rgba(225, 236, 255, 0.78);
  font-size: clamp(0.9rem, 1.12vw, 1rem);
}

.ahx-featured-grid {
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ahx-product {
  --mx: 50%;
  --my: 45%;
  --glass-blur: 24px;
  --glass-sat: 180%;
  padding: 1rem;
  min-height: 23rem;
  display: grid;
  grid-template-rows: 10.5rem auto auto;
  gap: 0.9rem;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-color 280ms ease;
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
}

.ahx-product::before {
  background:
    radial-gradient(
      21rem 12rem at var(--mx) var(--my),
      color-mix(in srgb, var(--accent), transparent 72%),
      transparent 70%
    ),
    linear-gradient(
      138deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.05) 42%,
      rgba(255, 255, 255, 0.02) 100%
    );
}

.ahx-product:hover {
  --glass-blur: 30px;
  --glass-sat: 198%;
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 24px 54px rgba(2, 8, 24, 0.52);
}

.ahx-product-media {
  border-radius: 1rem;
  background:
    radial-gradient(120% 90% at 15% 10%, color-mix(in srgb, var(--accent), transparent 68%), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ahx-product-media img {
  width: min(82%, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(7, 14, 30, 0.42));
  transition: transform 320ms ease;
}

.ahx-product:hover .ahx-product-media img {
  transform: translateY(-3px) scale(1.03);
}

.ahx-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.36rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 247, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ahx-product h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
  letter-spacing: 0.02em;
  color: #f5f9ff;
  line-height: 1.05;
}

.ahx-product p {
  margin-top: 0.35rem;
  color: rgba(224, 235, 251, 0.78);
  font-size: 0.92rem;
  line-height: 1.62;
}

.ahx-product-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.ahx-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--accent);
}

@media (max-width: 1060px) {
  .ahx-hero {
    grid-template-columns: 1fr;
  }

  .ahx-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ahx-showcase {
    padding: 3.2rem 0 4rem;
  }

  .ahx-featured-grid {
    grid-template-columns: 1fr;
  }

  .ahx-hero,
  .ahx-product {
    border-radius: 1.1rem;
  }
}

.ahx-hero-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: clamp(1.4rem, 2.2vw, 2.2rem) 0 clamp(2rem, 3vw, 3rem);
  overflow: clip;
  background:
    radial-gradient(84rem 50rem at 8% 10%, color-mix(in srgb, var(--accent), transparent 74%), transparent 68%),
    radial-gradient(78rem 44rem at 88% 12%, color-mix(in srgb, var(--accent), transparent 82%), transparent 66%),
    linear-gradient(180deg, #0a101d 0%, #0b1425 48%, #0b1324 100%);
}

.ahx-hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.ahx-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  transform: scale(1.02);
  opacity: 0.92;
  filter: saturate(1.06) contrast(1.03);
}

.ahx-hero-stage-inner {
  width: min(1400px, 95%);
  margin: 0 auto;
  display: grid;
  gap: clamp(0.9rem, 1.4vw, 1.2rem);
}

.ahx-hero-top {
  padding: clamp(1.2rem, 2vw, 1.7rem) clamp(1.1rem, 2.2vw, 1.9rem);
  display: grid;
  gap: 1rem;
}

.ahx-hero-top-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.72rem;
}

.ahx-slider-shell {
  padding: 0.85rem;
}

.ahx-slider-window {
  border-radius: 1.05rem;
  overflow: hidden;
}

.ahx-slider-track {
  display: flex;
  width: 100%;
  transition: transform 760ms cubic-bezier(0.22, 0.76, 0.2, 1);
  will-change: transform;
}

.ahx-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(0.9rem, 1.5vw, 1.3rem);
  padding: clamp(1.1rem, 2vw, 1.8rem);
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(30rem 24rem at 90% 16%, color-mix(in srgb, var(--accent), transparent 86%), transparent 72%),
    rgba(8, 14, 28, 0.38);
}

.ahx-slide-content h2 {
  margin-top: 0.36rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 3.1rem);
  line-height: 0.94;
  color: #f5f9ff;
  letter-spacing: 0.02em;
}

.ahx-slide-content p {
  margin-top: 0.72rem;
  max-width: 45ch;
  color: rgba(226, 237, 255, 0.82);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.68;
}

.ahx-slide-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(220, 231, 247, 0.7);
}

.ahx-slide-meta {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ahx-slide-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(236, 245, 255, 0.92);
  padding: 0.34rem 0.65rem;
  font-size: 0.76rem;
}

.ahx-slide-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ahx-slide-visual {
  position: relative;
  border-radius: 1rem;
  min-height: clamp(210px, 30vw, 360px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(65% 65% at 50% 50%, rgba(255, 255, 255, 0.1), transparent 78%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.ahx-slide-visual img {
  width: min(78%, 310px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(5, 12, 22, 0.52));
  transform: translateZ(0);
}

.ahx-slide-orbit {
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  pointer-events: none;
}

.ahx-slide-orbit::before,
.ahx-slide-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.ahx-slide-orbit::before {
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.02) 0deg,
    color-mix(in srgb, var(--accent), transparent 68%) 85deg,
    rgba(255, 255, 255, 0.06) 168deg,
    color-mix(in srgb, var(--accent), transparent 76%) 245deg,
    rgba(255, 255, 255, 0.02) 360deg
  );
  filter: blur(2px);
  animation: ahxOrbitSpin 8.5s linear infinite;
}

.ahx-slide-orbit::after {
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: ahxOrbitSpinReverse 10s linear infinite;
}

.ahx-slide.is-active .ahx-slide-visual img {
  animation: ahxSlideFloat 5.4s ease-in-out infinite;
}

.ahx-slider-controls {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.78rem;
}

.ahx-slider-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(241, 247, 255, 0.95);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.ahx-slider-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.ahx-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ahx-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.ahx-slider-dot.active {
  transform: scale(1.25);
  background: var(--accent);
}

.ahx-slider-progress {
  margin-top: 0.62rem;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.ahx-slider-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent), #ffffff 26%));
}

.ahx-hero-stage.is-single .ahx-slider-controls,
.ahx-hero-stage.is-single .ahx-slider-progress {
  display: none;
}

.ahx-showcase {
  background: transparent;
  padding: clamp(2rem, 3vw, 3rem) 0;
}

.ahx-shell {
  width: 100%;
}

@keyframes ahxOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ahxOrbitSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes ahxSlideFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ahxProgress {
  from { width: 0%; }
  to { width: 100%; }
}

@media (max-width: 980px) {
  .ahx-slide {
    grid-template-columns: 1fr;
  }

  .ahx-slide-visual {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .ahx-hero-stage-inner {
    width: min(1400px, 94%);
  }

  .ahx-hero-top-actions {
    width: 100%;
  }

  .ahx-hero-top-actions .ahx-btn {
    flex: 1 1 0;
  }

  .ahx-slider-controls {
    grid-template-columns: 1fr;
  }
}

/* 2026 Production Theme Refactor: centralized palette + glass + prismatic states */
html body:not(.admin-body) {
  color: var(--ink);
}

html body:not(.admin-body) :is(
  .card,
  .metric-card,
  .collection-card,
  .step-card,
  .product-card,
  .product-media-card,
  .support-card,
  .detail-card,
  .summary-card,
  .order-card,
  .checkout-card,
  .portal-card,
  .highlight-card,
  .statement-panel,
  .ahx-glass,
  .modal,
  .photo-viewer,
  [role="dialog"],
  .dropdown-menu,
  .select,
  select
) {
  background: var(--glass-surface) padding-box, var(--glass-border-gradient) border-box !important;
  border: 1px solid transparent !important;
  backdrop-filter: blur(20px) saturate(175%);
  -webkit-backdrop-filter: blur(20px) saturate(175%);
  box-shadow:
    0 16px 38px color-mix(in srgb, var(--nile-blue), transparent 76%),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transition:
    transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

html body:not(.admin-body) :is(
  .card,
  .metric-card,
  .collection-card,
  .step-card,
  .product-card,
  .support-card,
  .detail-card,
  .summary-card,
  .order-card,
  .checkout-card,
  .portal-card,
  .highlight-card,
  .statement-panel,
  .ahx-glass
):hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 46px color-mix(in srgb, var(--nile-blue), transparent 70%),
    0 0 0 1px color-mix(in srgb, var(--tangerine), transparent 72%),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

html body:not(.admin-body) :is(.tabs, [role="tablist"]) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(4, 62, 82, 0.16);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px) saturate(165%);
  -webkit-backdrop-filter: blur(16px) saturate(165%);
}

html body:not(.admin-body) :is(.tab, .tab-btn, .tab-link, [role="tab"]) {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  transition: all 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

html body:not(.admin-body) :is(.tab, .tab-btn, .tab-link, [role="tab"]):hover,
html body:not(.admin-body) :is(.tab, .tab-btn, .tab-link, [role="tab"]).active,
html body:not(.admin-body) :is(.tab, .tab-btn, .tab-link, [role="tab"])[aria-selected="true"] {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(225, 106, 61, 0.22), rgba(255, 164, 93, 0.3));
  border-color: rgba(225, 106, 61, 0.34);
}

html body:not(.admin-body) :is(.btn, .ahx-btn, .nav-toggle, .viewer-nav) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  border-color: color-mix(in srgb, var(--nile-blue), transparent 68%);
  box-shadow:
    0 12px 28px color-mix(in srgb, var(--nile-blue), transparent 72%),
    inset 1px 1px 0 rgba(255, 255, 255, 0.38),
    inset -1px -1px 0 rgba(4, 62, 82, 0.18);
  transition:
    transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

html body:not(.admin-body) :is(.btn, .ahx-btn, .nav-toggle, .viewer-nav)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(140% 140% at -8% -24%, var(--glass-corner-top), transparent 56%),
    radial-gradient(140% 140% at 112% 132%, var(--glass-corner-bottom), transparent 58%);
  pointer-events: none;
  z-index: 0;
}

html body:not(.admin-body) :is(.btn, .ahx-btn, .nav-toggle, .viewer-nav)::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -160%;
  width: 72%;
  height: 320%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.44) 48%, transparent 100%);
  transform: rotate(16deg);
  transition: left 540ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

html body:not(.admin-body) :is(.btn, .ahx-btn, .nav-toggle, .viewer-nav):hover::after {
  left: 148%;
}

html body:not(.admin-body) :is(.btn, .ahx-btn, .nav-toggle, .viewer-nav):hover {
  transform: translateY(-2px);
}

html body:not(.admin-body) :is(.btn, .ahx-btn, .nav-toggle, .viewer-nav) > * {
  position: relative;
  z-index: 2;
}

html body:not(.admin-body) :is(.btn-primary, .ahx-btn.primary) {
  background:
    radial-gradient(120% 150% at 0% 0%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, color-mix(in srgb, var(--sunset-orange), #ffffff 9%), color-mix(in srgb, var(--tangerine), #f8c47e 18%)) !important;
  border: 1px solid color-mix(in srgb, var(--sunset-orange), #ffffff 28%) !important;
  color: #ffffff !important;
  box-shadow:
    0 14px 32px color-mix(in srgb, var(--sunset-orange), transparent 62%),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

html body:not(.admin-body) :is(.btn-secondary, .ahx-btn.ghost) {
  background:
    radial-gradient(120% 150% at 0% 0%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 55%),
    linear-gradient(140deg, color-mix(in srgb, var(--pine), #ffffff 8%), color-mix(in srgb, var(--pine), #0b4e50 24%)) !important;
  border: 1px solid color-mix(in srgb, var(--pine), #ffffff 30%) !important;
  color: #eaf8f8 !important;
  box-shadow:
    0 12px 28px color-mix(in srgb, var(--pine), transparent 66%),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

html body:not(.admin-body) .btn-danger {
  background:
    radial-gradient(120% 150% at 0% 0%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 55%),
    linear-gradient(140deg, rgba(184, 58, 20, 0.92), rgba(136, 32, 26, 0.94)) !important;
  border: 1px solid rgba(255, 179, 152, 0.42) !important;
  color: #fff3ef !important;
}

html body:not(.admin-body) :is(.main-nav a, .cart-pill) {
  color: rgba(236, 228, 218, 0.92);
}

html body:not(.admin-body) .main-nav a:hover,
html body:not(.admin-body) .main-nav a.active {
  color: var(--sunset-orange);
}

html body:not(.admin-body) :is(.select, select, .dropdown, .dropdown-menu, .input) {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--nile-blue), transparent 76%);
}

html body:not(.admin-body) :is(.section-title, .card h3, .product-card h3, .collection-card h3, .step-card h3, .footer h4, .portal-card h2, .checkout-card h2) {
  color: var(--ink);
}

html body:not(.admin-body) :is(.section-subtitle, .form-hint, .footer p, .product-card p, .collection-card p, .step-card p, .ahx-featured-head p, .ahx-slide-content p) {
  color: var(--muted);
}

html body:not(.admin-body) :is(.badge.success, .pill, .footer-pill, .chip, .collection-tag, .step-num, .ahx-chip) {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 164, 93, 0.32), rgba(1, 106, 109, 0.2));
  border: 1px solid color-mix(in srgb, var(--pine), transparent 72%);
}

html body:not(.admin-body) :is(.ahx-glass, .card, .product-card, .collection-card, .step-card, .summary-card, .checkout-card, .portal-card, .highlight-card) {
  animation: glassShimmer 14s ease-in-out infinite;
  background-size: 220% 220%, 180% 180%;
  border: 1px solid color-mix(in srgb, var(--nile-blue), transparent 80%);
  box-shadow:
    0 20px 40px color-mix(in srgb, var(--nile-blue), transparent 80%),
    inset 1px 1px 0 rgba(255, 255, 255, 0.38),
    inset -1px -1px 0 color-mix(in srgb, var(--pine), transparent 82%);
}

html body:not(.admin-body) :is(a, button, .btn, .ahx-btn, .input, select, .tab, .tab-btn, [role="tab"]):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Public page alignment normalization (non-home pages) */
body:not(.admin-body):not(.home-public) main.container {
  width: min(1240px, 94%);
  margin-inline: auto;
  padding-inline: clamp(2px, 0.25vw, 8px);
}

body:not(.admin-body):not(.home-public) main.container > .section {
  padding-inline: clamp(4px, 0.45vw, 10px);
}

body:not(.admin-body):not(.home-public) main.container > .section:first-child {
  padding-top: clamp(2.2rem, 3.2vw, 3.2rem);
}

body:not(.admin-body):not(.home-public) main.container > .section:last-child {
  padding-bottom: clamp(2.8rem, 4vw, 4rem);
}

body:not(.admin-body) .site-footer .footer-top :is(.footer-brand, .footer-column, .footer-cta) {
  position: relative;
  min-height: 100%;
  padding: clamp(16px, 1.2vw, 22px);
  border-radius: clamp(14px, 1vw, 18px);
}

body:not(.admin-body) .site-footer .footer-top .footer-column {
  gap: 10px;
}

body:not(.admin-body) .site-footer .footer-top .footer-cta {
  justify-content: flex-start;
}

body:not(.admin-body) .site-footer .footer-top .footer-brand > p,
body:not(.admin-body) .site-footer .footer-top .footer-cta > p {
  margin: 0;
}

@keyframes glassShimmer {
  0% {
    background-position: 0% 50%, 0% 50%;
    filter: saturate(1);
  }
  50% {
    background-position: 100% 50%, 100% 50%;
    filter: saturate(1.06);
  }
  100% {
    background-position: 0% 50%, 0% 50%;
    filter: saturate(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html body:not(.admin-body) :is(.ahx-glass, .card, .product-card, .collection-card, .step-card, .summary-card, .checkout-card, .portal-card, .highlight-card) {
    animation: none;
  }

  .site-header::after {
    animation: none;
    background-position: 0 0, 0 0;
  }
}



/* Tailwind v4.1 compatibility utilities for existing public-page classes */
.font-display {
  font-family: var(--font-display) !important;
}

.shadow-glass {
  box-shadow: 0 24px 52px rgba(41, 28, 14, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

.shadow-lift {
  box-shadow: 0 34px 72px rgba(41, 28, 14, 0.28) !important;
}

.text-earth-400\/80 {
  color: rgb(41 28 14 / 0.8) !important;
}

.text-earth-400\/85 {
  color: rgb(41 28 14 / 0.85) !important;
}

.border-earth-300\/50 {
  border-color: rgb(110 71 59 / 0.5) !important;
}

.border-earth-300\/60 {
  border-color: rgb(110 71 59 / 0.6) !important;
}

/* HOME PUBLIC STYLES (moved from index.php) */
/* STEP 1: Root Initialization */
      body.home-public {
        --accent: #e16a3d;
        --cloud-dancer: #f6fbfd;
        --midnight-indigo: #291c0e;
        --panel: rgba(248, 251, 254, 0.7);
        --glass-surface: rgba(245, 250, 254, 0.62);
        --glass-border: rgba(255, 255, 255, 0.56);
        --glass-bevel-a: rgba(255, 255, 255, 0.82);
        --glass-bevel-b: rgba(255, 164, 93, 0.22);
        --glass-shadow: rgba(3, 14, 24, 0.24);
        --ink: #291c0e;
        --muted: rgba(41, 28, 14, 0.78);
      }

      body.home-public {
        color: var(--ink);
        background-image:
          linear-gradient(158deg, rgba(8, 20, 34, 0.17), rgba(8, 20, 34, 0.13)),
          radial-gradient(72rem 42rem at 10% 8%, rgba(225, 106, 61, 0.08), transparent 68%),
          radial-gradient(64rem 36rem at 90% 18%, rgba(1, 106, 109, 0.06), transparent 72%),
          url("../assets/background/bodybg3.jpg"),
          url("../assets/background/bodybg3.jpg"),
          url("../assets/background/bodybg3.jpg"),
          linear-gradient(180deg, rgba(8, 20, 34, 0.08) 0%, rgba(8, 20, 34, 0.07) 42%, rgba(8, 20, 34, 0.11) 100%);
        background-size: cover, auto, auto, cover, cover, cover, auto;
        background-position:
          center,
          8% calc(8% + var(--bg-parallax-y-4)),
          90% calc(18% + var(--bg-parallax-y-5)),
          center calc(0% + var(--bg-parallax-y-1)),
          center calc(0% + var(--bg-parallax-y-2)),
          center calc(0% + var(--bg-parallax-y-3)),
          center;
        background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
        background-attachment: fixed, fixed, fixed, fixed, fixed, fixed, fixed;
        background-blend-mode: normal, soft-light, screen, normal, normal, soft-light, normal;
        min-height: 100vh;
      }

      body.home-public::before {
        inset: 0;
        background-image: url("../assets/background/bodybg4.jpg");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        opacity: 0.35;
        mix-blend-mode: normal;
        filter: none;
      }

      body.home-public::after {
        background-image:
          radial-gradient(closest-side, rgba(225, 106, 61, 0.13), transparent 72%),
          radial-gradient(closest-side, rgba(1, 106, 109, 0.14), transparent 70%),
          radial-gradient(closest-side, rgba(4, 62, 82, 0.12), transparent 74%);
        opacity: 0.2;
        filter: blur(18px) saturate(1.03);
        mix-blend-mode: screen;
      }

      body.home-public .page-shell {
        position: relative;
        z-index: 1;
      }

      body.home-public main.container {
        width: min(1240px, 94%);
      }

      body.home-public .section {
        padding: clamp(3.6rem, 6.4vw, 5.2rem) 0;
      }

      body.home-public :is(.section-subtitle, .hero-lede, .ahx-lede, .form-hint) {
        color: var(--muted);
      }

      body.home-public :is(
        .card,
        .ahx-glass,
        .statement-panel,
        .product-card,
        .checkout-card,
        .collection-card,
        .step-card,
        .cta-panel,
        .metric-card,
        .summary-card,
        .order-card,
        .portal-card,
        .highlight-card,
        .support-card,
        .detail-card,
        .product-media-card,
        .empty-state
      ) {
        background: transparent !important;
        background-color: transparent !important;
      }

      body.home-public :is(
        .card,
        .ahx-glass,
        .statement-panel,
        .product-card,
        .checkout-card,
        .collection-card,
        .step-card,
        .cta-panel,
        .metric-card,
        .summary-card,
        .order-card,
        .portal-card,
        .highlight-card,
        .support-card,
        .detail-card,
        .product-media-card,
        .empty-state
      ) {
        position: relative;
        isolation: isolate;
        border-radius: clamp(14px, 1.4vw, 22px);
        border: 1px solid var(--glass-border);
        background:
          radial-gradient(130% 95% at 8% 0%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 58%),
          linear-gradient(
            158deg,
            color-mix(in srgb, var(--glass-surface), rgba(255, 255, 255, 0.36) 22%),
            color-mix(in srgb, var(--glass-surface), rgba(8, 20, 34, 0.2) 78%)
          ) !important;
        backdrop-filter: blur(12px) saturate(160%);
        -webkit-backdrop-filter: blur(12px) saturate(160%);
        box-shadow:
          0 18px 36px color-mix(in srgb, var(--glass-shadow), transparent 16%),
          0 8px 16px color-mix(in srgb, var(--glass-shadow), transparent 30%),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
        transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
      }

      body.home-public :is(.card, .ahx-glass, .statement-panel, .product-card, .checkout-card) {
        backdrop-filter: blur(14px) saturate(172%);
        -webkit-backdrop-filter: blur(14px) saturate(172%);
      }

      body.home-public :is(
        .card,
        .ahx-glass,
        .statement-panel,
        .product-card,
        .checkout-card,
        .collection-card,
        .step-card,
        .cta-panel,
        .metric-card,
        .summary-card,
        .order-card,
        .portal-card,
        .highlight-card,
        .support-card,
        .detail-card,
        .product-media-card,
        .empty-state
      )::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: inherit;
        pointer-events: none;
        background: linear-gradient(
          138deg,
          var(--glass-bevel-a) 0%,
          rgba(255, 255, 255, 0.22) 28%,
          var(--glass-bevel-b) 62%,
          rgba(255, 255, 255, 0.34) 100%
        );
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: 0;
      }

      /* Prevent bevel mask fallback artifacts on category cards */
      body.home-public .collection-card::before {
        display: none !important;
      }

      body.home-public :is(
        .collection-card,
        .step-card,
        .product-card,
        .card,
        .cta-panel,
        .metric-card,
        .summary-card,
        .support-card,
        .detail-card,
        .ahx-product
      ):hover {
        transform: translateY(-3px);
        border-color: color-mix(in srgb, var(--accent), var(--glass-border) 48%);
        box-shadow:
          0 30px 58px color-mix(in srgb, var(--glass-shadow), transparent 2%),
          0 10px 24px color-mix(in srgb, var(--glass-shadow), transparent 18%),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
      }

      body.home-public main.container :is(
        .collection-card,
        .step-card,
        .product-card,
        .card,
        .cta-panel,
        .metric-card,
        .summary-card,
        .support-card,
        .detail-card,
        .product-media-card,
        .highlight-card,
        .order-card,
        .portal-card,
        .empty-state
      ) {
        background:
          radial-gradient(120% 88% at 10% 0%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 58%),
          linear-gradient(160deg, rgba(255, 255, 255, 0.74), rgba(255, 236, 221, 0.58)) !important;
        border-color: rgba(4, 62, 82, 0.16);
      }

      body.home-public :is(
        .card,
        .ahx-glass,
        .statement-panel,
        .product-card,
        .checkout-card,
        .collection-card,
        .step-card,
        .cta-panel,
        .metric-card,
        .summary-card,
        .order-card,
        .portal-card,
        .highlight-card,
        .support-card,
        .detail-card,
        .product-media-card,
        .empty-state
      ) > * {
        position: relative;
        z-index: 1;
      }

      /* STEP 4: Typography & Contrast Check */
      body.home-public :is(p, li, .table td, .table th, .product-meta span) {
        color: var(--ink);
      }

      body.home-public :is(.hero-eyebrow, .ahx-kicker, .panel-eyebrow, .summary-note, .ahx-chip, .pill) {
        color: var(--muted);
      }

      body.home-public :is(.btn-primary, .ahx-btn.primary) {
        background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent), #ffffff 26%));
        color: #e1d4c2;
        border: 1px solid rgba(225, 212, 194, 0.26);
        box-shadow: 0 14px 28px rgba(110, 71, 59, 0.26);
      }

      body.home-public .ahx-hero-stage {
        background: transparent;
        background-image: none;
      }

      body.home-public .ahx-hero-stage::before {
        content: none;
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: none;
        mix-blend-mode: normal;
        z-index: 0;
      }

      body.home-public .ahx-hero-stage .ahx-hero-stage-inner {
        position: relative;
        z-index: 2;
      }

      body.home-public .ahx-hero-stage :is(.ahx-title, .ahx-lede, .ahx-kicker) {
        text-shadow: 0 2px 16px rgba(41, 28, 14, 0.24);
      }

      body.home-public .ahx-featured-head h2,
      body.home-public .ahx-product h3,
      body.home-public .ahx-slide-content h2 {
        color: var(--ink);
      }

      body.home-public .ahx-featured-head p,
      body.home-public .ahx-product p,
      body.home-public .ahx-slide-content p,
      body.home-public .ahx-slide-kicker {
        color: var(--muted);
      }

      body.home-public .ahx-chip {
        color: var(--ink);
        background: rgba(225, 212, 194, 0.44);
        border: 1px solid rgba(41, 28, 14, 0.14);
      }

      body.home-public .ahx-slide {
        background:
          linear-gradient(150deg, rgba(225, 212, 194, 0.7), rgba(190, 181, 169, 0.42)),
          radial-gradient(30rem 24rem at 90% 16%, rgba(216, 139, 121, 0.2), transparent 72%);
        border: 1px solid rgba(41, 28, 14, 0.14);
      }

      body.home-public .ahx-slide-meta span {
        border: 1px solid rgba(41, 28, 14, 0.16);
        background: rgba(225, 212, 194, 0.5);
        color: var(--ink);
      }

      body.home-public .ahx-slide-visual {
        background:
          radial-gradient(65% 65% at 50% 50%, rgba(255, 255, 255, 0.26), transparent 78%),
          rgba(225, 212, 194, 0.32);
        border: 1px solid rgba(41, 28, 14, 0.16);
      }

      body.home-public .ahx-slider-btn {
        border: 1px solid rgba(41, 28, 14, 0.2);
        background: rgba(225, 212, 194, 0.62);
        color: var(--ink);
      }

      body.home-public .ahx-slider-btn:hover {
        background: rgba(225, 212, 194, 0.78);
      }

      body.home-public .ahx-slider-dot {
        background: rgba(41, 28, 14, 0.26);
      }

      body.home-public .ahx-live-panel {
        min-height: clamp(310px, 44vh, 500px);
        display: grid;
        grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
        align-items: center;
        gap: clamp(1rem, 2.1vw, 2rem);
      }

      body.home-public .ahx-live-panel::after {
        content: "";
        position: absolute;
        inset: auto -12% -35% auto;
        width: 54%;
        height: 72%;
        border-radius: 999px;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
        pointer-events: none;
        filter: blur(16px);
      }

      body.home-public .ahx-live-copy {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: clamp(0.9rem, 1.45vw, 1.25rem);
        padding: 20px 0 20px 20px;
        padding-right: clamp(0.2rem, 1vw, 0.9rem);
      }

      body.home-public .ahx-live-kicker {
        margin: 0;
        font-weight: 700;
        opacity: 0.92;
        line-height: 1.2;
        animation: ahxKickerSlide 900ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
      }

      body.home-public .ahx-live-title {
        margin: 0;
        color: var(--ink);
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        line-height: 0.94;
        max-width: 13ch;
      }

      body.home-public .ahx-live-emphasis {
        position: relative;
        display: inline-block;
        color: color-mix(in srgb, var(--ink), var(--accent) 20%);
        animation: ahxEmphasisPulse 4.4s ease-in-out infinite;
      }

      body.home-public .ahx-live-emphasis::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg, transparent 26%, rgba(255, 255, 255, 0.58) 48%, transparent 74%);
        transform: translateX(-120%);
        animation: ahxSweep 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
        mix-blend-mode: screen;
        pointer-events: none;
      }

      body.home-public .ahx-live-summary {
        margin: 0;
        max-width: 52ch;
        line-height: 1.65;
      }

      body.home-public .ahx-live-points {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        margin-top: 0.2rem;
      }

      body.home-public .ahx-live-points span {
        font-size: 0.76rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 0.38rem 0.62rem;
        border-radius: 999px;
        border: 1px solid rgba(41, 28, 14, 0.16);
        background: rgba(225, 212, 194, 0.36);
      }

      body.home-public .ahx-hero-top-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: clamp(0.45rem, 1vw, 0.9rem) !important;
      }

      body.home-public .ahx-live-gallery {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: stretch;
        border-radius: clamp(16px, 1.6vw, 22px);
        border: 1px solid rgba(41, 28, 14, 0.16);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14));
        overflow: hidden;
        height: clamp(180px, 23vh, 236px);
        box-shadow:
          0 18px 36px rgba(41, 28, 14, 0.18),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
      }

      body.home-public .ahx-live-gallery::before,
      body.home-public .ahx-live-gallery::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 14%;
        z-index: 2;
        pointer-events: none;
      }

      body.home-public .ahx-live-gallery::before {
        left: 0;
        background: linear-gradient(90deg, rgba(246, 251, 253, 0.96), rgba(246, 251, 253, 0));
      }

      body.home-public .ahx-live-gallery::after {
        right: 0;
        background: linear-gradient(270deg, rgba(246, 251, 253, 0.96), rgba(246, 251, 253, 0));
      }

      body.home-public .ahx-live-track {
        display: flex;
        align-items: stretch;
        gap: 0.8rem;
        width: max-content;
        height: 100%;
        padding: 0.56rem 0.7rem;
        animation: ahxLiveStrip 28s linear infinite;
      }

      body.home-public .ahx-live-gallery:hover .ahx-live-track {
        animation-play-state: paused;
      }

      body.home-public .ahx-live-item {
        width: clamp(140px, 13vw, 190px);
        flex: 0 0 auto;
        display: block;
        position: relative;
        height: 100%;
        border-radius: 14px;
        border: 1px solid rgba(41, 28, 14, 0.12);
        background: #d8c9bd;
        min-height: 0;
        overflow: hidden;
        box-shadow: 0 10px 22px rgba(41, 28, 14, 0.14);
      }

      body.home-public .ahx-live-item img {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center center;
        border-radius: 0;
        border: 0;
        background: transparent;
      }

      body.home-public .ahx-live-item span {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        font-size: 0.78rem;
        font-weight: 700;
        color: rgba(255, 250, 244, 0.96);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0.48rem 0.62rem 0.52rem;
        background: linear-gradient(180deg, rgba(10, 18, 29, 0), rgba(10, 18, 29, 0.8) 62%);
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
      }

      body.home-public .ahx-live-item:nth-child(odd) {
        animation: ahxCardFloat 3.8s ease-in-out infinite;
      }

      @keyframes ahxKickerSlide {
        from {
          opacity: 0;
          transform: translateY(10px);
          letter-spacing: 0.25em;
        }
        to {
          opacity: 0.92;
          transform: translateY(0);
          letter-spacing: 0.2em;
        }
      }

      @keyframes ahxEmphasisPulse {
        0%, 100% {
          text-shadow: 0 0 0 rgba(255, 255, 255, 0);
        }
        50% {
          text-shadow: 0 0 0.38em rgba(255, 255, 255, 0.34);
        }
      }

      @keyframes ahxSweep {
        0%, 12% {
          transform: translateX(-120%);
        }
        34%, 100% {
          transform: translateX(130%);
        }
      }

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

      @keyframes ahxCardFloat {
        0%, 100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-5px);
        }
      }

      body.home-public .site-header {
        background:
          radial-gradient(120% 140% at 10% -40%, rgba(227, 247, 255, 0.22), rgba(227, 247, 255, 0) 52%),
          linear-gradient(148deg, rgba(2, 8, 24, 0.9), rgba(4, 62, 82, 0.84) 54%, rgba(1, 106, 109, 0.5)),
          linear-gradient(180deg, rgba(227, 247, 255, 0.12), rgba(227, 247, 255, 0.02) 52%, rgba(1, 8, 20, 0.16));
        border-bottom: 1px solid rgba(193, 229, 242, 0.28);
        box-shadow:
          0 16px 34px rgba(1, 12, 24, 0.44),
          inset 0 1px 0 rgba(236, 248, 252, 0.24),
          inset 0 -1px 0 rgba(2, 16, 28, 0.5);
        backdrop-filter: blur(10px) saturate(172%);
        -webkit-backdrop-filter: blur(10px) saturate(172%);
      }

      body.home-public .section-title {
        color: var(--ink);
      }

      body.home-public .collection-tag,
      body.home-public .pill,
      body.home-public .signal-badge,
      body.home-public .step-num,
      body.home-public .footer-pill {
        background: rgba(190, 181, 169, 0.28);
        border: 1px solid rgba(41, 28, 14, 0.16);
        color: var(--ink);
      }

      body.home-public .marquee {
        border: 1px solid rgba(41, 28, 14, 0.16);
        background:
          radial-gradient(120% 140% at 8% -30%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 54%),
          linear-gradient(135deg, rgba(225, 212, 194, 0.74), rgba(190, 181, 169, 0.58));
        box-shadow:
          0 14px 30px rgba(41, 28, 14, 0.16),
          inset 0 1px 0 rgba(255, 255, 255, 0.58);
      }

      body.home-public .marquee::before {
        background: linear-gradient(90deg, rgba(238, 229, 218, 0.96), rgba(238, 229, 218, 0));
      }

      body.home-public .marquee::after {
        background: linear-gradient(270deg, rgba(238, 229, 218, 0.96), rgba(238, 229, 218, 0));
      }

      body.home-public .marquee-item {
        color: rgba(41, 28, 14, 0.9);
      }

      body.home-public .footer.site-footer,
      body.home-public .marquee,
      body.home-public .cta-panel {
        backdrop-filter: blur(16px) saturate(160%);
        -webkit-backdrop-filter: blur(16px) saturate(160%);
      }

      body.home-public .footer.site-footer {
        background: linear-gradient(160deg, rgba(225, 212, 194, 0.82), rgba(167, 141, 120, 0.58));
        border-top: 1px solid rgba(41, 28, 14, 0.16);
      }

      body.home-public .footer-column a {
        color: var(--muted);
      }

      body.home-public .footer-column a:hover {
        color: var(--accent);
      }

      .tw-tilt-card {
        transform-style: preserve-3d;
        will-change: transform;
        transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translate3d(0, 0, 0);
        transition:
          transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
          box-shadow 320ms ease,
          border-color 320ms ease;
      }

      .tw-tilt-card > :is(h1, h2, h3, p, .ahx-btn, .btn, .pill, .collection-tag, .step-num, .hero-actions, .ahx-product-footer, .ahx-slide-actions) {
        transform: translateZ(22px);
      }

      .tw-tilt-card:hover {
        box-shadow:
          0 34px 72px rgba(41, 28, 14, 0.28),
          0 12px 28px rgba(41, 28, 14, 0.18),
          inset 0 1px 0 rgba(255, 255, 255, 0.42);
      }

      .tw-tilt-card.tw-tilt-deep {
        transition-duration: 420ms;
      }

      @media (prefers-reduced-motion: reduce) {
        .tw-tilt-card,
        .tw-tilt-card * {
          transition-duration: 0ms !important;
          animation-duration: 0ms !important;
          transform: none !important;
        }

        .ahx-hero-video {
          display: none;
        }

        .ahx-live-kicker,
        .ahx-live-emphasis,
        .ahx-live-emphasis::after,
        .ahx-live-track,
        .ahx-live-item {
          animation: none !important;
        }
      }

      @media (max-width: 980px) {
        body.home-public {
          background-attachment: scroll, scroll, scroll, scroll, scroll, scroll, scroll;
        }

        body.home-public .ahx-hero-stage {
          background-attachment: initial;
          background-position: center;
        }

        body.home-public .ahx-live-panel {
          min-height: auto;
          grid-template-columns: 1fr;
        }

        body.home-public .ahx-live-gallery {
          height: 190px;
        }

        body.home-public .ahx-live-copy {
          padding: 20px;
        }
      }

/* Professional polish layer */
html body:not(.admin-body) {
  --ui-radius-card: clamp(16px, 1.15vw, 24px);
  --ui-radius-soft: clamp(12px, 0.9vw, 18px);
  --ui-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ui-shadow-card:
    0 18px 38px color-mix(in srgb, var(--nile-blue), transparent 78%),
    0 6px 18px color-mix(in srgb, var(--nile-blue), transparent 86%),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  --ui-shadow-card-hover:
    0 24px 48px color-mix(in srgb, var(--nile-blue), transparent 72%),
    0 10px 24px color-mix(in srgb, var(--nile-blue), transparent 82%),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

body:not(.admin-body) main.container {
  width: min(1240px, 94%);
  margin-inline: auto;
}

body:not(.admin-body) main.container > .section {
  padding-inline: clamp(6px, 0.8vw, 14px);
}

body:not(.admin-body) :is(h1, h2, h3, .section-title, .ahx-title, .ahx-live-title) {
  text-wrap: balance;
}

body:not(.admin-body) :is(.section-subtitle, .form-hint, .hero-lede, .ahx-lede, .portal-heading p) {
  max-width: 72ch;
}

html body:not(.admin-body) :is(
  .card,
  .ahx-glass,
  .collection-card,
  .step-card,
  .product-card,
  .summary-card,
  .checkout-card,
  .portal-card,
  .highlight-card,
  .footer-column,
  .footer-cta,
  .footer-brand
) {
  border-radius: var(--ui-radius-card) !important;
  box-shadow: var(--ui-shadow-card);
  transition:
    transform 260ms var(--ui-ease),
    box-shadow 300ms var(--ui-ease),
    border-color 280ms var(--ui-ease);
}

html body:not(.admin-body) :is(
  .card,
  .ahx-glass,
  .collection-card,
  .step-card,
  .product-card,
  .summary-card,
  .checkout-card,
  .portal-card,
  .highlight-card,
  .footer-column,
  .footer-cta,
  .footer-brand
):hover {
  box-shadow: var(--ui-shadow-card-hover);
}

body:not(.admin-body) :is(.btn, .ahx-btn) {
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  gap: 0.5rem;
  transition:
    transform 220ms var(--ui-ease),
    box-shadow 260ms var(--ui-ease),
    border-color 220ms var(--ui-ease),
    filter 220ms var(--ui-ease);
}

body:not(.admin-body) :is(.btn, .ahx-btn):hover {
  transform: translateY(-1px);
}

body:not(.admin-body) :is(.input, select, textarea) {
  min-height: 44px;
  border-radius: var(--ui-radius-soft);
}

body:not(.admin-body) .tw-filter-field {
  color: var(--ink);
}

body:not(.admin-body) .tw-filter-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.25rem;
  background-image:
    linear-gradient(45deg, transparent 50%, color-mix(in srgb, var(--nile-blue), #ffffff 26%) 50%),
    linear-gradient(135deg, color-mix(in srgb, var(--nile-blue), #ffffff 26%) 50%, transparent 50%),
    linear-gradient(to right, color-mix(in srgb, var(--nile-blue), transparent 84%), color-mix(in srgb, var(--nile-blue), transparent 84%));
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px),
    calc(100% - 2.2rem) 50%;
  background-size: 5px 5px, 5px 5px, 1px 56%;
  background-repeat: no-repeat;
}

body:not(.admin-body) .tw-filter-select option {
  color: var(--ink);
  background: #ffffff;
}

body:not(.admin-body) .tw-select-wrap {
  position: relative;
  min-width: 190px;
  z-index: 100;
  overflow: visible;
}

body:not(.admin-body) .tw-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  inset: auto !important;
  overflow: hidden !important;
}

body:not(.admin-body) .tw-select-trigger {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0.62rem 0.9rem;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

body:not(.admin-body) .tw-select-wrap.is-open .tw-select-trigger,
body:not(.admin-body) .tw-select-trigger:hover {
  border-color: color-mix(in srgb, var(--accent), #ffffff 42%);
  background: rgba(255, 255, 255, 0.9);
}

body:not(.admin-body) .tw-select-trigger:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--accent), #ffffff 70%),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

body:not(.admin-body) .tw-select-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body:not(.admin-body) .tw-select-caret {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-right: 2px solid color-mix(in srgb, var(--nile-blue), #ffffff 26%);
  border-bottom: 2px solid color-mix(in srgb, var(--nile-blue), #ffffff 26%);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

body:not(.admin-body) .tw-select-wrap.is-open .tw-select-caret {
  transform: rotate(-135deg) translateY(-1px);
}

body:not(.admin-body) .tw-select-wrap.is-open {
  z-index: 120;
}

body:not(.admin-body) .tw-select-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 130;
  display: grid;
  gap: 0.2rem;
  padding: 0.38rem;
  max-height: 16rem;
  overflow: auto;
  border-radius: 0.9rem;
  border: 1px solid color-mix(in srgb, var(--nile-blue), transparent 74%);
  background:
    radial-gradient(120% 120% at 6% -30%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 56%),
    linear-gradient(155deg, rgba(246, 251, 254, 0.96), rgba(232, 245, 251, 0.92));
  box-shadow:
    0 18px 34px color-mix(in srgb, var(--nile-blue), transparent 78%),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--nile-blue), transparent 58%) transparent;
}

body:not(.admin-body) .tw-select-wrap.is-open .tw-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body:not(.admin-body) .tw-select-option {
  width: 100%;
  text-align: left;
  padding: 0.58rem 0.68rem;
  border-radius: 0.62rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  font-size: 0.95rem;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

body:not(.admin-body) .tw-select-option:hover {
  background: rgba(225, 212, 194, 0.42);
  border-color: rgba(41, 28, 14, 0.14);
}

body:not(.admin-body) .tw-select-option.is-active {
  background: linear-gradient(135deg, rgba(225, 106, 61, 0.18), rgba(255, 164, 93, 0.28));
  border-color: rgba(225, 106, 61, 0.24);
  font-weight: 700;
}

body:not(.admin-body) .tw-select-option.is-focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent), #ffffff 58%);
  background: rgba(255, 255, 255, 0.72);
}

body:not(.admin-body) .site-footer .footer-top {
  align-items: stretch;
  gap: clamp(14px, 1.5vw, 22px);
}

body:not(.admin-body) .site-footer .footer-top :is(.footer-brand, .footer-column, .footer-cta) {
  height: 100%;
}

body:not(.admin-body) .site-footer .footer-column a {
  line-height: 1.42;
}

@media (hover: hover) and (pointer: fine) {
  html.js-ready body:not(.admin-body),
  html.js-ready body:not(.admin-body) :is(a, button, .btn, .ahx-btn, input, select, textarea, label) {
    cursor: none !important;
  }

  .site-cursor,
  .site-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 180ms ease;
  }

  .site-cursor {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent), #ffffff 28%));
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--accent), transparent 86%),
      0 0 24px color-mix(in srgb, var(--accent), transparent 54%);
  }

  .site-cursor-ring {
    width: 36px;
    height: 36px;
    margin-left: -18px;
    margin-top: -18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--nile-blue), #ffffff 60%);
    background: color-mix(in srgb, var(--panel), transparent 56%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition:
      opacity 180ms ease,
      width 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
      height 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
      border-color 220ms ease,
      background-color 220ms ease;
  }

  body.cursor-active .site-cursor,
  body.cursor-active .site-cursor-ring {
    opacity: 1;
  }

  body.cursor-pointer .site-cursor-ring {
    width: 52px;
    height: 52px;
    margin-left: -26px;
    margin-top: -26px;
    border-color: color-mix(in srgb, var(--accent), #ffffff 50%);
    background: color-mix(in srgb, var(--accent), transparent 86%);
  }

  body.cursor-pressed .site-cursor {
    filter: brightness(1.08) saturate(1.08);
  }
}

