:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-2: #111111;
  --surface-3: #1a1a1a;
  --text: #0f0f0f;
  --text-light: #ffffff;
  --muted: #4a4a4a;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #ff8c1a;
  --accent-2: #ffb347;
  --accent-blue: #3da9fc;
  --accent-mint: #26d0a8;
  --accent-pink: #ff5fa2;
  --accent-lime: #b4e33d;
  --accent-purple: #8a63ff;
  --accent-coral: #ff7a59;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  --font-body: "Manrope", sans-serif;
  --font-display: "Teko", sans-serif;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a,
summary {
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    opacity var(--transition),
    box-shadow var(--transition);
}

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #160c00;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.warning-strip {
  overflow: hidden;
  background: #060606;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.warning-strip__track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 6px 0;
  animation: ticker 26s linear infinite;
}

.promo-banner {
  padding: 14px 0 10px;
}

.promo-banner__card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 140, 26, 0.24);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.35), transparent 42%),
    radial-gradient(circle at 12% 86%, rgba(255, 255, 255, 0.24), transparent 44%),
    linear-gradient(125deg, #ff8a1a 0%, #ff5f9f 52%, #4aa8ff 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(18, 18, 18, 0.14);
}

.promo-banner__card::before {
  content: "";
  position: absolute;
  top: -130%;
  left: -28%;
  width: 24%;
  height: 340%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  transform: rotate(16deg);
  animation: promo-shine 4.4s ease-in-out infinite;
  pointer-events: none;
}

.promo-banner__label {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-banner__card h2 {
  margin: 0 0 4px;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.06;
  font-family: var(--font-display);
}

.promo-banner__card p {
  margin: 0;
}

.promo-banner__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px !important;
  min-height: 38px;
  padding: 6px 16px;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.14);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.promo-banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.promo-banner__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
}

.promo-banner__btn--primary {
  background: #fff;
  color: #1c0f00;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.promo-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}

.promo-banner__btn:hover {
  transform: translateY(-2px);
}

.promo-banner__btn--primary:hover {
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.promo-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

@keyframes promo-shine {
  0% {
    left: -35%;
  }
  60% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
}

.brand {
  margin: 0;
}

.brand img {
  width: auto;
  height: 57px;
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
}

.nav-wholesale-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 115, 24, 0.45);
  background: linear-gradient(135deg, #ffd48a 0%, #ff7e4f 35%, #ff5ca6 70%, #7fa2ff 100%);
  color: #180b00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(255, 120, 45, 0.24);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.nav-wholesale-btn::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -36%;
  width: 28%;
  height: 360%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: rotate(14deg);
  animation: wholesale-shine 2.8s linear infinite;
  pointer-events: none;
}

.nav-wholesale-btn__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-wholesale-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(255, 83, 164, 0.34), 0 6px 14px rgba(70, 32, 166, 0.24);
  filter: saturate(1.06);
}

.nav-wholesale-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 14px rgba(255, 108, 35, 0.28);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--accent);
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 260ms ease, opacity 220ms ease, width 220ms ease;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.3);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(86vw, 340px);
  z-index: 120;
  overflow: auto;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  transform: translateX(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 320ms ease, opacity 280ms ease, visibility 0ms linear 320ms;
  box-shadow: 20px 0 34px rgba(0, 0, 0, 0.2);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(10, 10, 16, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 0ms linear 260ms;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 260ms ease, visibility 0ms linear 0ms;
}

.mobile-nav.is-open {
  display: block;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 320ms ease, opacity 280ms ease, visibility 0ms linear 0ms;
}

.mobile-nav__inner {
  min-height: 0;
  display: grid;
  gap: 2px;
  padding: 62px 16px 16px;
}

.mobile-nav__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 8px;
  padding-bottom: 8px;
}

.mobile-nav__brand img {
  width: auto;
  height: 51px;
}

.mobile-nav a,
.mobile-nav summary {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 700;
}

.mobile-nav summary {
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav__group {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
}

.mobile-nav__group a {
  padding: 8px 0 8px 12px;
  border-bottom: 0;
  font-weight: 500;
  color: var(--muted);
}

.mobile-wholesale-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 115, 24, 0.45);
  background: linear-gradient(135deg, #ffd48a 0%, #ff7e4f 35%, #ff5ca6 70%, #7fa2ff 100%);
  color: #180b00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(255, 120, 45, 0.22);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.mobile-wholesale-btn::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -38%;
  width: 28%;
  height: 360%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  transform: rotate(14deg);
  animation: wholesale-shine 2.8s linear infinite;
  pointer-events: none;
}

.mobile-wholesale-btn__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.mobile-wholesale-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 83, 164, 0.3), 0 5px 12px rgba(70, 32, 166, 0.22);
  filter: saturate(1.05);
}

.mobile-wholesale-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 14px rgba(255, 108, 35, 0.26);
}

body.mobile-menu-open {
  overflow: hidden;
}

@keyframes wholesale-shine {
  0% {
    left: -40%;
  }
  100% {
    left: 132%;
  }
}

@keyframes wholesale-tier-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 14px 22px rgba(255, 114, 32, 0.16);
  }
}

@keyframes wholesale-tier-glow {
  0%,
  100% {
    box-shadow: 0 6px 12px rgba(255, 92, 169, 0.16);
    filter: saturate(1);
  }
  50% {
    box-shadow: 0 10px 18px rgba(255, 92, 169, 0.28);
    filter: saturate(1.08);
  }
}

.wholesale-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 18px;
}

.wholesale-modal[hidden] {
  display: none !important;
}

.wholesale-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 16, 0.58);
  backdrop-filter: blur(4px);
}

.wholesale-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(121, 161, 255, 0.26), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(255, 148, 63, 0.2), transparent 44%),
    linear-gradient(145deg, #ffffff, #f7f7fb 58%, #f5fbff);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
}

.wholesale-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  color: #2b2b2b;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.wholesale-modal__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f3cff;
}

.wholesale-modal h2 {
  margin: 4px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
}

.wholesale-modal__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wholesale-modal__title-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.wholesale-modal__lead {
  margin: 0 0 14px;
  max-width: 70ch;
  font-size: 14px;
  color: #343447;
}

.wholesale-tier-list {
  display: grid;
  gap: 10px;
}

.wholesale-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 140, 26, 0.34);
  background:
    linear-gradient(90deg, #ff6d1d 0 6px, transparent 6px 100%),
    linear-gradient(135deg, #fff, #f6f8fc);
  animation: wholesale-tier-float 2.8s ease-in-out infinite;
}

.wholesale-tier span,
.wholesale-tier strong {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 16px;
  border-radius: 14px;
  background: #f3ebf1;
  color: #8e0a4c;
  font-size: clamp(20px, 3.1vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.wholesale-tier strong {
  background: linear-gradient(135deg, #ff7f2f, #ff6ea6);
  color: #fff;
  animation: wholesale-tier-glow 2.8s ease-in-out infinite;
}

.wholesale-modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.wholesale-modal__order {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 115, 24, 0.42);
  background: linear-gradient(135deg, #ffd687 0%, #ff7f49 34%, #ff60a9 68%, #7fa2ff 100%);
  color: #170900;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(255, 109, 29, 0.26);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wholesale-modal__order:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 89, 154, 0.3);
}

.wholesale-modal__note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #62626f;
}

body.modal-open {
  overflow: hidden;
}

.hero {
  background: var(--surface);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: min(76vw, 720px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__media,
.hero-slide picture,
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide__media {
  position: relative;
}

.hero-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.18), rgba(8, 11, 18, 0.04) 42%, rgba(8, 11, 18, 0.18)),
    linear-gradient(180deg, rgba(8, 11, 18, 0.04), rgba(8, 11, 18, 0.18));
  pointer-events: none;
}

.hero-slide img {
  object-fit: cover;
}

.hero-slide__content {
  position: absolute;
  left: 7%;
  top: 20%;
  max-width: 420px;
  z-index: 3;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 18%, rgba(61, 169, 252, 0.22), transparent 42%),
    radial-gradient(circle at 18% 88%, rgba(255, 95, 162, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(20, 18, 18, 0.34), rgba(20, 18, 18, 0.2));
  backdrop-filter: blur(8px);
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
}

.hero-slide__eyebrow {
  margin: 0 0 6px;
  color: #ffb360;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
}

.hero-slide h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 10vw, 100px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-slide p {
  margin: 8px 0 16px;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1;
}

.hero-slide__cta,
.product-card__copy a,
.about-banner__content a,
.info-card__content a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 16px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #dff5ff 52%, #ffe5f1);
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.hero-slide__cta--primary {
  background: linear-gradient(135deg, #ffd891, #ff8fc2 48%, #7bc6ff);
}

.hero-slide__cta--secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(136, 213, 255, 0.22), rgba(255, 95, 162, 0.2));
  color: #fff;
}

.hero-slide__cta {
  position: relative;
  z-index: 4;
}

.hero-slide__cta::before,
.product-card__copy a::before,
.about-banner__content a::before,
.info-card__content a::before,
.cta-secondary-link::before,
.section-cta-strip__primary::before,
.section-cta-strip__secondary::before,
.video-toggle::before {
  content: "";
  position: absolute;
  top: -130%;
  left: -42%;
  width: 34%;
  height: 360%;
  z-index: -1;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  transition: left 420ms ease;
  pointer-events: none;
}

.hero-slide__cta::after,
.product-card__copy a::after,
.about-banner__content a::after,
.info-card__content a::after,
.cta-secondary-link::after,
.section-cta-strip__primary::after,
.section-cta-strip__secondary::after,
.video-toggle::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transform: translateX(0);
  transition: transform var(--transition), opacity var(--transition);
}

.cta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.product-back-row {
  padding-top: 0;
  padding-bottom: 10px;
}

.product-back-row .section-cta-strip__primary {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(135deg, #ffffff, #eef8ff 52%, #f7fffb);
  color: #111;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-back-row .section-cta-strip__primary::after {
  content: "←";
  order: -1;
}

.product-back-row .section-cta-strip__primary:hover::after {
  transform: translateX(-3px);
}

.product-page .product-detail .cta-group .section-cta-strip__primary {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(135deg, #ffffff, #eef8ff 52%, #f7fffb);
  color: #111;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-page .product-detail .cta-group .section-cta-strip__primary::after {
  content: "←";
  order: -1;
}

.product-page .product-detail .cta-group .section-cta-strip__primary:hover::after {
  transform: translateX(-3px);
}

.product-page .product-detail .cta-group .section-cta-strip__secondary {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-pink), var(--accent-blue));
  color: #1b1000;
  box-shadow: 0 14px 28px rgba(138, 99, 255, 0.24);
  width: 100%;
}

.product-page .product-detail .cta-group .section-cta-strip__primary {
  display: none;
}

.cta-group--hero {
  margin-top: 8px;
}

.cta-group--center {
  justify-content: center;
}

.cta-secondary-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 16px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #e8fff9 52%, #ffe7f4);
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.products-grid .cta-secondary-link {
  border: 0;
  background: linear-gradient(135deg, #ff8f2b 0%, #ff5da8 52%, #6ea4ff 100%);
  color: #1b1000;
  box-shadow: 0 14px 26px rgba(255, 94, 168, 0.32), 0 6px 14px rgba(110, 164, 255, 0.24);
}

.products-grid .cta-secondary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 94, 168, 0.36), 0 9px 18px rgba(110, 164, 255, 0.26);
  filter: saturate(1.06);
}

.cta-secondary-link--light {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(61, 169, 252, 0.78);
  color: var(--accent-blue);
  font-size: 32px;
  transform: translateY(-50%);
}

.hero-arrow:hover,
.video-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(61, 169, 252, 0.2);
}

.hero-slide__cta:hover,
.product-card__copy a:hover,
.about-banner__content a:hover,
.info-card__content a:hover,
.cta-secondary-link:hover,
.section-cta-strip__primary:hover,
.section-cta-strip__secondary:hover,
.video-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 12, 12, 0.14);
}

.hero-slide__cta:hover::before,
.product-card__copy a:hover::before,
.about-banner__content a:hover::before,
.info-card__content a:hover::before,
.cta-secondary-link:hover::before,
.section-cta-strip__primary:hover::before,
.section-cta-strip__secondary:hover::before,
.video-toggle:hover::before {
  left: 118%;
}

.hero-slide__cta:hover::after,
.product-card__copy a:hover::after,
.about-banner__content a:hover::after,
.info-card__content a:hover::after,
.cta-secondary-link:hover::after,
.section-cta-strip__primary:hover::after,
.section-cta-strip__secondary:hover::after,
.video-toggle:hover::after {
  transform: translateX(3px);
}

.social-links a:hover {
  transform: translateY(-2px);
}

.hero-arrow--prev {
  left: 16px;
}

.hero-arrow--next {
  right: 16px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-dot.is-active {
  width: 32px;
  background: var(--accent);
}

.products-section,
.videos-section,
.faq-section,
.info-section {
  padding: 28px 0 36px;
}

.wholesale-highlight {
  padding: 10px 0 6px;
}

.wholesale-highlight__card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 140, 26, 0.24);
  background:
    radial-gradient(circle at 90% 18%, rgba(126, 160, 255, 0.22), transparent 40%),
    radial-gradient(circle at 8% 88%, rgba(255, 157, 75, 0.18), transparent 42%),
    linear-gradient(145deg, #ffffff 0%, #f7f7fc 56%, #f5fbff 100%);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.09);
}

.wholesale-highlight__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(135deg, #ff8b2b, #ff5ea8 58%, #7fa2ff);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 16px rgba(255, 90, 154, 0.26);
}

.wholesale-highlight__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f3cff;
}

.wholesale-highlight__card h2 {
  margin: 2px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 0.92;
  text-transform: uppercase;
}

.wholesale-highlight__lead {
  margin: 0 0 10px;
  max-width: 78ch;
  font-size: 13px;
  color: #353545;
}

.wholesale-highlight__tiers {
  display: grid;
  gap: 8px;
}

.wholesale-highlight__tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 56px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 26, 0.28);
  background:
    linear-gradient(90deg, #ff6d1d 0 6px, transparent 6px 100%),
    linear-gradient(135deg, #fff, #f8f4f9);
}

.wholesale-highlight__tier span,
.wholesale-highlight__tier strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 9px;
  background: #f3ecf2;
  color: #8e0a4c;
  font-size: clamp(18px, 2.3vw, 26px);
  font-weight: 900;
  line-height: 1;
}

.wholesale-highlight__tier strong {
  background: linear-gradient(135deg, #ff7f2f, #ff6ea6);
  color: #fff;
}

.wholesale-highlight__actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.wholesale-highlight__order {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 115, 24, 0.42);
  background: linear-gradient(135deg, #ffd687 0%, #ff7f49 34%, #ff60a9 68%, #7fa2ff 100%);
  color: #170900;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(255, 109, 29, 0.26);
}

.wholesale-highlight__order:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 89, 154, 0.3);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.section-title h2,
.about-banner__content h2,
.info-card__content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 62px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: -4px 0 24px;
}

.section-cta-strip--bottom {
  margin: 28px 0 8px;
}

.section-cta-strip__primary,
.section-cta-strip__secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.section-cta-strip__primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-pink), var(--accent-blue));
  color: #1b1000;
  box-shadow: 0 14px 28px rgba(138, 99, 255, 0.24);
}

.section-cta-strip__secondary {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(135deg, #ffffff, #e6fff3);
}

.section-title--products img {
  width: 64px;
}

.products-grid {
  display: grid;
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(180, 227, 61, 0.2), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(61, 169, 252, 0.12), transparent 40%),
    linear-gradient(180deg, #ffffff, #f7fff8 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto 14px 14px;
  height: 38%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72));
  pointer-events: none;
}

.product-card--glow {
  background:
    radial-gradient(circle at top right, rgba(109, 202, 255, 0.26), transparent 36%),
    radial-gradient(circle at 15% 90%, rgba(138, 99, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #ffffff, #eff6ff 100%);
}

.product-card--edge {
  background:
    radial-gradient(circle at top right, rgba(255, 116, 155, 0.26), transparent 36%),
    radial-gradient(circle at 8% 92%, rgba(255, 122, 89, 0.16), transparent 40%),
    linear-gradient(180deg, #ffffff, #fff1f6 100%);
}

.product-card--blade {
  background:
    radial-gradient(circle at top right, rgba(120, 163, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff, #f4f8ff 100%);
}

.product-card--wiflux {
  background:
    radial-gradient(circle at top right, rgba(255, 154, 210, 0.26), transparent 36%),
    radial-gradient(circle at 12% 92%, rgba(38, 208, 168, 0.18), transparent 40%),
    linear-gradient(180deg, #ffffff, #fff3fb 100%);
}

.product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 955 / 570;
  object-fit: cover;
  transition: transform 380ms ease;
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(14, 16, 20, 0), rgba(14, 16, 20, 0.08));
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-pink), var(--accent-purple));
  color: #241300;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(255, 140, 26, 0.28);
}

.product-card:hover .product-card__media img {
  transform: scale(1.03);
}

.product-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 16px 8px 6px;
}

.product-card__kicker {
  margin: 0;
  color: var(--accent-purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.product-card__copy p {
  margin: 0;
  max-width: 30ch;
  font-size: 15px;
  font-weight: 600;
  color: #2e2e2e;
}

.product-card__copy .cta-group {
  margin-top: 4px;
}

.section-title--center {
  justify-content: center;
}

.video-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.video-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(38, 208, 168, 0.78);
  color: var(--accent-mint);
  font-size: 32px;
}

.video-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 380px;
}

.video-card {
  width: 22%;
  opacity: 0.4;
  transform: scale(0.82);
  transition: transform 320ms ease, opacity 320ms ease;
}

.video-card.is-prev,
.video-card.is-next {
  opacity: 0.9;
  transform: scale(0.92);
}

.video-card.is-active {
  width: 56%;
  opacity: 1;
  transform: scale(1);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #0e1014;
  box-shadow: var(--shadow);
}

.video-card:not(.is-active) .video-frame {
  aspect-ratio: 0.65;
}

.video-card.is-active .video-frame {
  aspect-ratio: 1.3;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-toggle {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 74px;
  min-height: 36px;
  padding: 8px 12px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(38, 208, 168, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(218, 255, 243, 0.94), rgba(227, 236, 255, 0.94));
  font-size: 12px;
  font-weight: 800;
}

.video-card h3 {
  margin: 10px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.9;
  text-transform: uppercase;
}

.about-banner {
  position: relative;
  min-height: 480px;
  margin-top: 12px;
  overflow: hidden;
  background: #101214;
}

.about-banner__media,
.about-banner__media img,
.about-banner__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-banner__media img,
.about-banner__media video {
  object-fit: cover;
}

.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.34);
}

.about-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 480px;
  text-align: center;
  color: var(--text-light);
}

.about-banner__content p {
  margin: 6px 0 18px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1;
}

.about-banner__content .cta-group {
  justify-content: center;
}

.faq-section__lead {
  margin: -6px auto 18px;
  max-width: 78ch;
  text-align: center;
  color: #3c3c49;
  font-weight: 600;
}

.faq-grid {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 800;
  font-size: 15px;
}

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

.faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  color: #30303d;
}

.blog-highlight {
  padding: 16px 0 28px;
}

.blog-highlight__list {
  display: grid;
  gap: 14px;
}

.blog-highlight__card {
  display: grid;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(125, 164, 255, 0.22), transparent 44%),
    radial-gradient(circle at 0% 100%, rgba(255, 153, 74, 0.22), transparent 44%),
    linear-gradient(145deg, #ffffff, #f7fbff);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  padding: 14px;
}

.blog-highlight__media {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.blog-highlight__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  object-fit: contain;
}

.blog-highlight__content {
  display: grid;
  gap: 10px;
  align-content: start;
}

.blog-highlight__eyebrow {
  margin: 0;
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-highlight__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.9;
  text-transform: uppercase;
}

.blog-highlight__content p {
  margin: 0;
}

.info-grid {
  display: grid;
  gap: 20px;
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 146, 74, 0.9), rgba(180, 227, 61, 0.78), rgba(61, 169, 252, 0.78)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 30%);
  box-shadow: var(--shadow);
}

.info-card--news {
  background:
    linear-gradient(135deg, rgba(255, 108, 154, 0.92), rgba(138, 99, 255, 0.84), rgba(61, 169, 252, 0.8)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 32%);
}

.info-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px;
  color: #fff;
}

.info-card__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card__content p:not(.info-card__eyebrow) {
  margin: 6px 0 18px;
  font-size: 18px;
  font-weight: 600;
}

.info-card__content .cta-group {
  margin-top: 4px;
}

.blog-page {
  padding: 28px 0 36px;
}

.blog-article {
  display: grid;
  gap: 18px;
}

.blog-back-row {
  display: flex;
}

.blog-back-btn {
  min-height: 40px;
}

.blog-hero {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 159, 255, 0.2), transparent 44%),
    radial-gradient(circle at 0% 100%, rgba(255, 149, 67, 0.2), transparent 42%),
    linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.blog-hero__eyebrow {
  margin: 0;
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-hero h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.9;
  text-transform: uppercase;
}

.blog-hero__lead {
  margin: 0;
  font-size: 17px;
  color: #2f2f3f;
}

.blog-hero img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  object-fit: contain;
}

.blog-toc {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.blog-toc a {
  display: inline-block;
  width: fit-content;
  padding: 4px 0;
  font-weight: 700;
  color: #1b1b2d;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-section {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.blog-section h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.8vw, 36px);
  line-height: 0.95;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.blog-section p {
  margin: 0 0 10px;
}

.blog-section a,
.blog-cta a {
  font-weight: 800;
  color: #0d2aa6;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-cta .section-cta-strip__primary,
.blog-cta .section-cta-strip__secondary {
  color: inherit;
  text-decoration: none;
}

.blog-section ul {
  margin: 0;
  padding-left: 18px;
}

.blog-section li + li {
  margin-top: 4px;
}

.blog-section details {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-section details:first-of-type {
  border-top: 0;
}

.blog-section summary {
  cursor: pointer;
  font-weight: 800;
}

.blog-cta {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 137, 34, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(125, 164, 255, 0.26), transparent 40%),
    linear-gradient(140deg, #fff7ec, #fff2f8 62%, #edf5ff);
}

.blog-cta h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0.9;
  text-transform: uppercase;
}

.blog-cta p {
  margin: 0 0 12px;
}

@media (min-width: 768px) {
  .blog-highlight__list {
    grid-template-columns: 1fr;
  }

  .blog-highlight__card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .blog-highlight__media,
  .blog-highlight__content {
    min-width: 0;
  }

  .blog-highlight__card--reverse .blog-highlight__media {
    order: 2;
  }

  .blog-highlight__card--reverse .blog-highlight__content {
    order: 1;
  }
}

.site-footer {
  padding: 34px 0 42px;
  background: #050505;
  color: #fff;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand img {
  height: 60px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer__bottom {
  display: grid;
  gap: 28px;
  padding-top: 28px;
}

.footer-links {
  display: grid;
  gap: 24px;
}

.footer-links > div,
.footer-contact {
  display: grid;
  height: fit-content;
  gap: 8px;
}

.footer-links a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.footer-copy-btn {
  margin-left: 8px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(156, 178, 255, 0.24));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-copy-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-title {
  color: #fff !important;
  font-weight: 800;
}

.catalog-page,
.product-page {
  padding: 24px 0 44px;
}

.about-page {
  padding: 24px 0 44px;
}

.about-us-hero {
  padding-bottom: 16px;
}

.about-us-hero__card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 159, 255, 0.2), transparent 44%),
    radial-gradient(circle at 0% 100%, rgba(255, 149, 67, 0.2), transparent 42%),
    linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.about-us-hero__eyebrow {
  margin: 0;
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-us-hero__card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
}

.about-us-hero__card p {
  margin: 0;
}

.about-us-stats {
  padding: 8px 0 16px;
}

.about-us-stats__grid {
  display: grid;
  gap: 12px;
}

.about-us-stat {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #fff, #f7fbff);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.about-us-stat__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 60px);
  line-height: 0.86;
  color: #171717;
}

.about-us-stat__label {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #434357;
}

.catalog-grid {
  display: grid;
  gap: 20px;
}

.series-filter {
  display: grid;
  gap: 10px;
  margin: -4px 0 18px;
}

.series-filter__title {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.series-filter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.series-filter__btn {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(135deg, #fff, #f6f9ff);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.series-filter__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
}

.series-filter__btn.is-active,
.series-filter__btn[aria-pressed="true"] {
  border-color: rgba(98, 116, 255, 0.42);
  background: linear-gradient(135deg, #ffd082, #ff76b5 56%, #8cb3ff);
  color: #1a0d00;
  box-shadow: 0 12px 22px rgba(128, 92, 255, 0.24);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.catalog-card__media {
  display: block;
}

.catalog-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.catalog-card__body {
  display: grid;
  gap: 12px;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  flex: 1;
  padding: 16px;
}

.catalog-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.catalog-card__labels {
  display: grid;
  gap: 10px;
}

.catalog-card__family {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-purple);
}

.catalog-card__tag {
  width: fit-content;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 128, 53, 0.32);
  background: linear-gradient(135deg, #fff8eb, #ffe8f4 58%, #e8f2ff);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #7a2a0c;
}

.catalog-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.9;
  text-transform: uppercase;
}

.catalog-card__body p {
  margin: 0;
}

.catalog-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #fff8e7, #fff2f8 56%, #ebf4ff);
  font-size: 11px;
  line-height: 1.05;
  font-weight: 800;
  color: #1b1b1b;
  align-self: flex-start;
  margin-top: 2px;
}

.catalog-card__rating span {
  font-weight: 700;
  color: #4b4b56;
}

.catalog-card__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  margin-top: auto;
}

.catalog-card__actions .section-cta-strip__primary,
.catalog-card__actions .section-cta-strip__secondary {
  flex: 1 1 0;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 12px;
}

.catalog-card__actions .section-cta-strip__primary {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(135deg, #ffffff, #f4fbff 55%, #f6fffb);
  color: #151515;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.catalog-card__actions .section-cta-strip__secondary {
  border: 1px solid rgba(255, 115, 24, 0.42);
  background: linear-gradient(135deg, #ffe38f 0%, #ff8f4a 34%, #ff5fa8 68%, #7a8dff 100%);
  color: #140900;
  box-shadow: 0 12px 24px rgba(255, 116, 24, 0.24);
}

.catalog-card__actions .section-cta-strip__secondary:hover {
  box-shadow: 0 16px 28px rgba(255, 82, 156, 0.28);
}

.product-detail {
  display: grid;
  gap: 24px;
}

.product-detail__media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.product-detail__media img {
  width: 100%;
  object-fit: cover;
}

.product-detail__content {
  display: grid;
  gap: 12px;
}

.product-detail__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-purple);
}

.product-detail__content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 66px);
  line-height: 0.9;
  text-transform: uppercase;
}

.product-detail__content h3 {
  margin: 2px 0 0;
  font-size: 18px;
}

.product-detail__content p {
  margin: 0;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 6px;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 36px;
  padding: 3px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.payment-icon svg {
  width: 50px;
  height: 30px;
}

.variants-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.variant-item {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}

.variants-list.is-collapsed .variant-item[data-extra-variant] {
  display: none;
}

.variant-item--toggle {
  padding: 0;
  border: 0;
  background: transparent;
}

.variant-search {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.variant-search__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #353535;
}

.variant-search__input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.96));
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.variant-search__input::placeholder {
  color: #666;
}

.variant-search__input:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.related-block {
  margin-top: 6px;
}

.related-links {
  display: grid;
  gap: 8px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-size: 13px;
}

.products-section--variants {
  padding-top: 6px;
}

.reviews-section {
  padding: 12px 0 6px;
  margin-top: 30px;
}

.reviews-section--home {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 22px;
}

.reviews-summary {
  margin: 0 0 16px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.reviews-summary strong {
  color: var(--text);
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 14px;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 12px;
}

.reviews-marquee--left .reviews-track {
  animation: reviews-scroll-left 40s linear infinite;
}

.reviews-marquee--right .reviews-track {
  animation: reviews-scroll-right 40s linear infinite;
}

.review-card {
  width: min(320px, calc(100vw - 52px));
  min-height: 118px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(165deg, #ffffff, #f6faff 56%, #fff7f9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.review-card__text {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #232323;
}

.review-card__reviewer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.review-card__name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #222;
}

.review-card__date {
  margin: 4px 0 8px;
  font-size: 13px;
  color: #6b6b74;
}

.review-card__rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-card__score {
  font-size: 12px;
  font-weight: 800;
  color: #2e2e3a;
}

.review-card--product {
  width: min(460px, calc(100vw - 52px));
  padding: 0;
  overflow: hidden;
}

.review-card--product .review-card__top {
  padding: 14px 14px 10px;
}

.review-card--product .review-card__text {
  font-size: 14px;
  margin-bottom: 0;
}

.review-card__product {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #fdfdff, #f4f8ff);
}

.review-card__product img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.review-card__product p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: #1d1d24;
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-card__author {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card__stars {
  color: #ff9a1f;
  font-size: 13px;
  letter-spacing: 0.03em;
}

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

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

.variants-gallery {
  display: grid;
  gap: 16px;
}

.variants-gallery.is-collapsed .variant-card[data-extra-variant] {
  display: none;
}

.variants-show-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: linear-gradient(135deg, #ffffff, #ebf7ff 52%, #ffe9f4);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.variants-show-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.variant-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

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

.variant-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.variant-card__desc {
  margin: 0;
  color: #3b3b48;
  font-size: 13px;
  line-height: 1.45;
}

.variants-gallery--panda-twins .variant-card {
  position: relative;
  border-color: rgba(120, 92, 255, 0.22);
  background:
    radial-gradient(circle at 15% 20%, rgba(83, 198, 255, 0.34), transparent 45%),
    radial-gradient(circle at 85% 18%, rgba(255, 137, 182, 0.3), transparent 42%),
    radial-gradient(circle at 70% 84%, rgba(255, 214, 118, 0.28), transparent 46%),
    linear-gradient(145deg, #f8f6ff 0%, #f2fbff 52%, #fff5f9 100%);
}

.variants-gallery--panda-twins .variant-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.42) 48%, transparent 72%);
  mix-blend-mode: screen;
}

.variants-gallery--panda-twins .variant-card img {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 68%, rgba(35, 24, 75, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.variant-card__body {
  display: grid;
  gap: 10px;
  padding: 12px 12px 14px;
}

.variant-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a0d00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  overflow: hidden;
}

.variant-card__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.45) 46%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.variant-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 140, 26, 0.28);
}

.variant-card__cta:hover::before {
  transform: translateX(130%);
}

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

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 34px;
    align-items: center;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero-slider {
    min-height: 720px;
  }

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

  .info-grid,
  .footer-links,
  .site-footer__bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-us-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .variants-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .catalog-card__head {
    flex-wrap: wrap;
  }

  .catalog-card__rating {
    margin-top: 0;
  }

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

  .wholesale-highlight {
    padding: 8px 0 4px;
  }

  .wholesale-highlight__card {
    padding: 10px;
    border-radius: 13px;
  }

  .wholesale-highlight__badge {
    top: 1px;
    right: 8px;
    min-height: 24px;
    padding: 3px 10px;
    font-size: 10px;
  }

  .wholesale-highlight__card h2 {
    font-size: 26px;
    line-height: 0.96;
  }

  .wholesale-highlight__lead {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .wholesale-highlight__tier {
    min-height: 44px;
    padding: 6px 8px;
    border-radius: 10px;
  }

  .wholesale-highlight__tier span,
  .wholesale-highlight__tier strong {
    min-height: 28px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 16px;
  }

  .wholesale-highlight__order {
    width: 100%;
    min-height: 36px;
    font-size: 11px;
  }

  .site-header__inner {
    min-height: 56px;
  }

  .brand img {
    height: 42px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .wholesale-modal {
    padding: 10px;
  }

  .wholesale-modal__dialog {
    padding: 14px 12px 12px;
    border-radius: 16px;
  }

  .wholesale-modal h2 {
    font-size: 34px;
    line-height: 0.96;
  }

  .wholesale-modal__lead {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .wholesale-modal__title-icon {
    width: 28px;
    height: 28px;
  }

  .wholesale-tier {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  .wholesale-tier span,
  .wholesale-tier strong {
    justify-content: center;
    min-height: 36px;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 20px;
    white-space: nowrap;
  }

  .wholesale-modal__order {
    width: 100%;
    min-height: 42px;
    font-size: 13px;
  }

  .wholesale-modal__note {
    margin-top: 10px;
    font-size: 11px;
  }

  .hero-slide__content {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 76px;
    max-width: 290px;
    padding: 16px 16px 14px;
    border-radius: 22px;
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(98, 140, 216, 0.16), rgba(38, 60, 110, 0.12));
    backdrop-filter: blur(2px);
    box-shadow: 0 14px 28px rgba(18, 32, 66, 0.14);
  }

  .hero-slide__eyebrow {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .hero-slide h2 {
    font-size: 46px;
    line-height: 0.9;
  }

  .hero-slide p {
    margin: 6px 0 12px;
    font-size: 16px;
    line-height: 1.15;
  }

  .hero-slide__cta {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 11px;
  }

  .cta-group--hero {
    gap: 8px;
  }

  .cta-group--hero .hero-slide__cta--secondary {
    display: none;
  }

  .hero-slider {
    min-height: 555px;
  }

  .hero-arrow {
    top: auto;
    bottom: 26px;
    width: 34px;
    height: 34px;
    border-width: 1.5px;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transform: none;
  }

  .hero-arrow:hover {
    transform: scale(1.04);
  }

  .hero-arrow--prev {
    left: 14px;
  }

  .hero-arrow--next {
    right: 14px;
  }

  .hero-dots {
    bottom: 30px;
    gap: 6px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .hero-dot.is-active {
    width: 24px;
  }

  .video-carousel {
    grid-template-columns: 1fr;
  }

  .video-arrow {
    display: none;
  }

  .video-track {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .video-card,
  .video-card.is-active,
  .video-card.is-prev,
  .video-card.is-next {
    flex: 0 0 82%;
    width: 82%;
    opacity: 1;
    transform: none;
  }

  .video-card .video-frame,
  .video-card.is-active .video-frame {
    aspect-ratio: 0.8;
  }

  .section-cta-strip,
  .cta-group {
    justify-content: flex-start;
  }

  .site-footer__top {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }
}
