:root {
  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --bg: #faf8ff;
  --surface: #ffffff;
  --surface-dark: #160b2c;
  --surface-emerald: #24114a;
  --surface-deep: #0a0618;
  --primary: #3a1d70;
  --accent: #a855f7;
  --accent-2: #7c3aed;
  --accent-light: #c084fc;
  --accent-mint: #d946ef;
  --text-dark: #160b2c;
  --text-light: #f5f3ff;
  --muted: #6f6684;
  --border: rgba(168, 85, 247, 0.22);
  --shadow: 0 20px 48px rgba(22, 11, 44, 0.08);
  --shadow-gold: 0 20px 48px rgba(168, 85, 247, 0.25);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: #241b35;
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

/* ==========================================================================
   WARNING STRIP
   ========================================================================== */


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 11, 44, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.site-header .container,
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  width: 100%;
}

.brand-link img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.3));
}

.main-nav, .desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a, .desktop-nav a {
  color: #f7f3ff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 200ms ease;
}

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

.nav-item--has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 220px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(36, 17, 74, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  gap: 6px;
}

.nav-item--has-dropdown:hover .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  padding: 8px 14px;
  border-radius: 10px;
  color: #e5e0f0;
  font-size: 13px;
}

.nav-dropdown a:hover {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  display: none;
}

@media (max-width: 991px) {
  .menu-toggle { display: block; }
  .desktop-nav { display: none; }
}

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

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 6, 24, 0.96);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  padding: 24px;
}

.mobile-nav.is-open { display: flex; }
.mobile-nav__inner { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav__group { display: flex; flex-direction: column; gap: 12px; }
.mobile-nav__top-link {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

/* ==========================================================================
   PROMO BANNER
   ========================================================================== */
.promo-banner {
  padding: 16px 0 12px;
  background: var(--surface-deep);
}

.promo-banner__card {
  position: relative;
  overflow: hidden;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 85, 247, 0.4);
  background: linear-gradient(135deg, #160b2c 0%, #3a1d70 50%, #4c2a89 100%);
  color: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(22, 11, 44, 0.5), 0 0 30px rgba(168, 85, 247, 0.15);
  transform: translateZ(0);
  isolation: isolate;
}

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

@keyframes promo-shine {
  0% { left: -30%; }
  100% { left: 130%; }
}

.promo-banner__label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin: 0 0 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.promo-banner__card h2 {
  position: relative;
  z-index: 3;
  margin: 0 0 6px;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.08;
  font-family: var(--font-display);
  font-weight: 900;
  color: #ffffff !important;
}

.promo-banner__card p {
  position: relative;
  z-index: 3;
  margin: 0 0 12px;
  font-size: 14px;
  color: #eee9f6;
}

.promo-banner__code {
  position: relative;
  z-index: 3;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 10px;
  border: 2px dashed var(--accent);
  background: rgba(22, 11, 44, 0.7);
  font-family: monospace;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
}

.promo-banner__cta {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.promo-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.promo-banner__btn--primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-light));
  color: var(--surface-dark) !important;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.promo-banner__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 85, 247, 0.6);
}

.promo-banner__btn--secondary {
  border: 1px solid rgba(168, 85, 247, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  backdrop-filter: blur(8px);
}

.promo-banner__btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(168, 85, 247, 0.2);
  border-color: var(--accent);
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero {
  padding: 0 0 24px;
  background: var(--surface-deep);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  background: var(--surface-dark);
}

.hero-slider.hero-slider--plain-active {
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: auto !important;
}

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

.hero-slide.is-active {
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.hero-slide--plain picture,
.hero-slide--plain img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
}

.hero-slide__media img { width: 100%; height: auto; object-fit: contain; }

.hero-slide__content {
  position: absolute;
  left: 6%;
  top: 18%;
  max-width: 440px;
  z-index: 3;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(36, 17, 74, 0.88);
  backdrop-filter: blur(16px);
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-slide__eyebrow { color: var(--accent); font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.cta-group--hero { display: flex; gap: 12px; margin-top: 18px; }

.hero-slide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.hero-slide__cta--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--surface-dark) !important;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.hero-slide__cta--secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.4);
  background: rgba(22, 11, 44, 0.75);
  color: var(--accent);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 200ms ease, transform 200ms ease;
}

.hero-arrow:hover { background: var(--accent); color: var(--surface-dark); }
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: rgba(22, 11, 44, 0.6);
  cursor: pointer;
}

.hero-dot.is-active { background: var(--accent); width: 28px; border-radius: 999px; }

/* ==========================================================================
   SECTION TITLES & BUTTONS
   ========================================================================== */
.section-title { margin-bottom: 28px; }
.section-title--center { text-align: center; }
.section-title--products { margin-bottom: 24px; }

.section-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--surface-dark);
}

.section-cta-strip { display: flex; gap: 12px; align-items: center; }
.section-cta-strip--bottom { margin-top: 32px; justify-content: center; }

.section-cta-strip__primary,
.cta-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-light));
  color: var(--surface-dark) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.section-cta-strip__primary:hover,
.cta-secondary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 85, 247, 0.55);
}

.section-cta-strip__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(22, 11, 44, 0.18);
  background: #ffffff;
  color: var(--surface-dark) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 220ms ease, border-color 220ms ease;
}

.section-cta-strip__secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent-2) !important;
}

/* ==========================================================================
   PRODUCT CARDS GRID
   ========================================================================== */
.products-section { padding: 44px 0; }
.products-grid, .catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card, .catalog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 11, 44, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(22, 11, 44, 0.06);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  height: 100%;
}

.product-card:hover, .catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(168, 85, 247, 0.22);
  border-color: rgba(168, 85, 247, 0.4);
}

.product-card--glow { border-color: var(--accent); }
.product-card--edge, .product-card--blade, .product-card--wiflux { border-color: rgba(168, 85, 247, 0.3); }

.product-card__media, .catalog-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, #faf8ff, #f4f0ff);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__media img, .catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 350ms ease;
}

.product-card:hover .product-card__media img,
.catalog-card:hover .catalog-card__media img {
  transform: scale(1.04);
}

.product-card__badge, .catalog-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--surface-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
}

.product-card__badge--restock { background: #d946ef; color: #ffffff; }

.product-card__copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  margin-top: 14px;
}

.product-card__kicker { font-size: 11px; font-weight: 800; color: var(--accent); text-transform: uppercase; }

.product-card__copy h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--surface-dark);
  margin: 0;
  line-height: 1.3;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.product-card__copy p:not(.product-card__kicker) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.product-card__copy .cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}

.catalog-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.catalog-card__labels { display: flex; flex-direction: column; gap: 6px; }
.catalog-card__title { margin: 14px 0 6px; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--surface-dark); }
.catalog-card__desc { margin: 0 0 16px; font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ==========================================================================
   VIDEO CAROUSEL
   ========================================================================== */
.videos-section {
  padding: 48px 0;
  background: var(--surface-dark);
  color: #ffffff;
}

.videos-section .section-title h2 { color: #ffffff; }
.video-carousel { position: relative; }

.video-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px;
  scrollbar-width: none;
}

.video-track::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 300ms ease, opacity 300ms ease;
}

.video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

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

.video-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 96px;
  height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 243, 255, 0.5);
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-light));
  color: var(--surface-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(168, 85, 247, 0.4);
  cursor: pointer;
  white-space: nowrap;
}

.video-toggle::before { content: "▶"; font-size: 10px; }
.video-toggle.is-playing::before { content: "❚❚"; font-size: 9px; }

.video-card__link h3 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  transition: color 200ms ease;
}

.video-card__link:hover h3 { color: var(--accent); }

.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(22, 11, 44, 0.8);
  color: var(--accent);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-arrow--prev { left: 10px; }
.video-arrow--next { right: 10px; }

/* ==========================================================================
   REVIEWS MARQUEE
   ========================================================================== */
.reviews-section {
  padding: 44px 0;
  overflow: hidden;
  background: #faf8ff;
}

.reviews-section--home { background: #faf8ff; }

.reviews-summary {
  margin: -6px 0 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.reviews-summary strong { color: var(--accent-2); font-weight: 800; }

.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.reviews-marquee--right .reviews-track { animation: marquee-right 45s linear infinite; }
.reviews-marquee--left .reviews-track { animation: marquee-left 45s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

@keyframes marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes marquee-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-card--product {
  flex: 0 0 320px;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(22, 11, 44, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(22, 11, 44, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.review-card--product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(168, 85, 247, 0.22);
}

.review-card__top { display: grid; gap: 8px; }
.review-card__reviewer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.review-card__name { margin: 0; font-size: 15px; font-weight: 800; color: var(--surface-dark); }

.review-card__verified {
  font-size: 11px;
  font-weight: 700;
  color: #d946ef;
  background: rgba(217, 70, 239, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
}

.review-card__date { margin: 0; font-size: 12px; color: #998faf; }
.review-card__rating-line { display: flex; align-items: center; gap: 6px; }
.review-card__stars { color: #a855f7; font-size: 14px; letter-spacing: 2px; }
.review-card__score { font-size: 12px; font-weight: 800; color: var(--surface-dark); }
.review-card__text { margin: 6px 0 0; font-size: 13px; line-height: 1.45; color: #5e5870; font-style: italic; }

.review-card__product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.review-card__product p { margin: 0; font-size: 12px; font-weight: 800; color: var(--surface-dark); }

/* ==========================================================================
   INFO CARDS (KONTAKT & NYHEDER)
   ========================================================================== */
.info-section { padding: 40px 0; }
.info-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.info-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(22, 11, 44, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(22, 11, 44, 0.06);
}

.info-card__content { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.info-card__eyebrow { font-size: 11px; font-weight: 800; color: var(--accent); text-transform: uppercase; }

.info-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--surface-dark) !important;
}

.info-card p { margin: 0; font-size: 15px; line-height: 1.5; color: #5e5870; }
.info-card .cta-group { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; }

.info-card--news {
  border: 1px solid rgba(168, 85, 247, 0.4);
  background: radial-gradient(circle at 90% 15%, rgba(217, 70, 239, 0.25), transparent 42%),
              linear-gradient(145deg, #160b2c 0%, #3a1d70 56%, #0a0618 100%);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(22, 11, 44, 0.4);
}

.info-card--news h2 { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.info-card--news p { color: #e5e0f0; }

.info-card--news .section-cta-strip__primary {
  border: 1px solid rgba(168, 85, 247, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  backdrop-filter: blur(10px);
}

/* ==========================================================================
   BLOG HIGHLIGHT & BLOG PAGES
   ========================================================================== */
.blog-highlight { padding: 44px 0; }
.blog-highlight__list { display: grid; gap: 28px; }
.blog-highlight__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(22, 11, 44, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(22, 11, 44, 0.06);
}

.blog-highlight__media img { border-radius: 16px; width: 100%; height: 220px; object-fit: cover; }
.blog-highlight__content { display: flex; flex-direction: column; justify-content: center; }
.blog-highlight__eyebrow { font-size: 12px; font-weight: 800; color: var(--accent); text-transform: uppercase; }
.blog-highlight__card--reverse { direction: ltr; }

.blog-page { padding: 36px 0 52px; }
.blog-article { max-width: 860px; margin: 0 auto; }
.blog-back-row { margin-bottom: 20px; }
.blog-back-btn { display: inline-flex; align-items: center; padding: 8px 18px; border-radius: 999px; border: 1px solid var(--border); color: var(--surface-dark); font-weight: 800; text-decoration: none; }
.blog-hero { margin-bottom: 28px; }
.blog-hero__eyebrow { color: var(--accent); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.blog-hero__lead { font-size: 18px; color: var(--muted); margin-top: 8px; }
.blog-toc { margin: 24px 0; padding: 20px; border-radius: 18px; border: 1px solid var(--border); background: #ffffff; }
.blog-toc h3 { margin: 0 0 12px; font-size: 15px; font-weight: 800; text-transform: uppercase; color: var(--surface-dark); }
.blog-toc ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.blog-toc li a { color: var(--accent-2); font-weight: 600; text-decoration: none; }
.blog-toc li a:hover { color: var(--accent); text-decoration: underline; }
.blog-section { margin: 32px 0; }
.blog-section h2 { margin: 0 0 16px; font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--surface-dark); }
.blog-section p { font-size: 16px; line-height: 1.65; color: #3d3650; margin-bottom: 16px; }
.blog-cta { margin-top: 36px; padding: 28px; border-radius: 24px; border: 1px solid var(--border); background: linear-gradient(135deg, #160b2c, #3a1d70); color: #ffffff; text-align: center; }
.blog-cta h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #ffffff; }
.blog-cta p { color: #e5e0f0; margin-bottom: 20px; }

/* ==========================================================================
   PRODUCT DETAIL PAGE & FLAVORS GRID
   ========================================================================== */
.product-page { padding: 36px 0 52px; }
.product-detail { display: grid; gap: 36px; align-items: start !important; }
@media (min-width: 768px) { .product-detail { grid-template-columns: 0.44fr 0.56fr; } }

.product-detail__media {
  align-self: start !important;
  position: sticky !important;
  top: 96px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(168, 85, 247, 0.25) !important;
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #faf5ff 50%, #f3ecfe 100%) !important;
  box-shadow: 0 16px 40px rgba(22, 11, 44, 0.08), 0 0 24px rgba(168, 85, 247, 0.1) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px !important;
}

.product-detail__media img {
  width: 100% !important;
  height: auto !important;
  max-height: 420px !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  display: block !important;
}

.product-detail__eyebrow { font-size: 11px; font-weight: 800; color: var(--accent); text-transform: uppercase; }

.product-detail__content h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.02 !important;
  text-transform: uppercase;
  color: var(--surface-dark) !important;
}

.variants-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
  gap: 8px !important;
  margin: 14px 0 24px !important;
  padding: 0 !important;
  list-style: none !important;
}

.variant-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 12px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(22, 11, 44, 0.09) !important;
  background: #ffffff !important;
  box-shadow: 0 3px 10px rgba(22, 11, 44, 0.03) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--surface-dark) !important;
  line-height: 1.25 !important;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease !important;
}

.variant-item:hover {
  transform: translateY(-2px) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.18) !important;
}

.products-section--variants { padding: 36px 0; }


.variant-card {
  border-radius: 20px;
  border: 1px solid rgba(22, 11, 44, 0.08);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(22, 11, 44, 0.05);
}

.variant-card img { width: 100%; height: 200px; object-fit: cover; }
.variant-card__body { padding: 16px; }
.variant-card__desc { font-size: 12px; color: var(--muted); margin: 6px 0 12px; }

.variant-card__cta {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--surface-dark) !important;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.product-detail__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--surface-dark);
  font-size: 11px;
  font-weight: 800;
}

.payment-icons { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 12px 0; }
.payment-icon svg { height: 24px; width: auto; }
.apple-pay, .blik-payment, .google-pay, .visa, .master { display: inline-flex; align-items: center; justify-content: center; }

/* ==========================================================================
   ABOUT US PAGE & CATALOG FILTERS
   ========================================================================== */
.about-page { padding: 40px 0 60px; }
.about-us-hero { margin-bottom: 40px; }

.about-us-hero__card {
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #24114a 0%, #160b2c 100%);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(22, 11, 44, 0.4);
}

.about-us-hero__eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.about-us-stats { margin-top: 32px; }
.about-us-stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; }

.about-us-stat {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.about-us-stat__value { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--accent); }
.about-us-stat__label { font-size: 12px; color: #e5e0f0; text-transform: uppercase; }

.catalog-page { padding: 36px 0 52px; }
.series-filter { margin-bottom: 28px; }
.series-filter__title { margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.series-filter__row { display: flex; flex-wrap: wrap; gap: 8px; }

.series-filter__btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(22, 11, 44, 0.12);
  background: #ffffff;
  color: var(--surface-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.series-filter__btn.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--surface-dark);
  border-color: var(--accent);
}

/* ==========================================================================
   SPOTLIGHT & WHOLESALE HIGHLIGHT
   ========================================================================== */
.launch-spotlight, .wholesale-highlight { padding: 40px 0; }

.launch-spotlight__shell, .wholesale-highlight__card {
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #24114a 0%, #160b2c 100%);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(22, 11, 44, 0.4);
}

.launch-spotlight__confetti { position: absolute; inset: 0; pointer-events: none; }
.launch-spotlight__content { position: relative; z-index: 2; }
.launch-spotlight__intro { margin-bottom: 20px; }

.launch-spotlight__badge, .wholesale-highlight__badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-spotlight__eyebrow, .wholesale-highlight__eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; }
.launch-spotlight__lead, .wholesale-highlight__lead { color: #e5e0f0; font-size: 16px; margin: 12px 0 20px; }
.launch-spotlight__actions, .wholesale-highlight__actions { display: flex; gap: 12px; }

.launch-spotlight__cta, .wholesale-highlight__order {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--surface-dark) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.launch-spotlight__visual img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.wholesale-highlight__tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 20px 0; }

.wholesale-highlight__tier {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--surface-dark);
  color: #e5e0f0;
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}

.site-footer__top { margin-bottom: 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p { color: #998faf; font-size: 14px; margin-top: 12px; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-col h3, .footer-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a, .footer-links a {
  color: #e5e0f0;
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-col a:hover, .footer-links a:hover { color: var(--accent); }

.site-footer__bottom, .footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links { display: flex; gap: 20px; }
.footer-contact p { color: #e5e0f0; font-size: 14px; margin: 4px 0; }
.site-footer__bottom p, .footer-bottom p { margin: 0; font-size: 13px; color: #998faf; }

/* ==========================================================================
   RESPONSIVE OVERFLOW PREVENTION
   ========================================================================== */
@media (max-width: 767px) {
  .site-header .container { height: 66px; }
  .promo-banner__card { padding: 18px 20px; }
  .catalog-card__media img, .product-card__media img { height: 200px; }
  .product-detail { gap: 24px; }
}

/* --- FAQ SECTION & ACCORDEONS --- */
.faq-section { padding: 44px 0; }
.faq-section__lead { text-align: center; max-width: 680px; margin: -16px auto 32px; color: var(--muted); }
.faq-grid, .faq-list { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; }
.faq-item { border-radius: 18px; border: 1px solid rgba(22, 11, 44, 0.1); background: #ffffff; padding: 18px 24px; box-shadow: 0 4px 16px rgba(22, 11, 44, 0.04); }
.faq-item summary { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--surface-dark); cursor: pointer; }
.faq-item p { margin-top: 12px; font-size: 14px; color: var(--muted); }


/* ==========================================================================
   PERFECT FRAME ENCAPSULATION & ZERO OVERFLOW SYSTEM
   ========================================================================== */

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

/* Encapsulate all card frames so nothing bleeds or spills outside */
.container {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
}

/* Clean clipping for all section containers & cards */
.site-header,
.promo-banner__card,
.hero-slider,
.catalog-card,
.product-card,
.review-card--product,
.info-card,
.blog-highlight__card,
.launch-spotlight__shell,
.wholesale-highlight__card,
.product-detail__media,
.video-frame,
.blog-article,
.blog-cta {
  max-width: 100%;
  box-sizing: border-box;
  contain: paint;
}

/* Reviews marquee contained inside section bounds */
.reviews-section {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.reviews-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Video carousel contained bounds */
.videos-section {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.video-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.video-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 4px 24px;
  scrollbar-width: none;
}

.video-track::-webkit-scrollbar {
  display: none;
}

/* Product detail variants list multi-column grid responsiveness */
.variants-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
  gap: 10px !important;
  margin: 12px 0 22px !important;
  padding: 0 !important;
  list-style: none !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.variant-item {
  max-width: 100% !important;
  box-sizing: border-box !important;
  word-break: break-word !important;
}


/* ==========================================================================
   UI/UX DEBUGGING & RESPONSIVE TOUCH-TARGET ENHANCEMENTS
   ========================================================================== */

/* Ensure touch targets meet 40px minimum accessibility guidelines */
a, button, input, select, summary {
  touch-action: manipulation;
}

/* Fix sticky header offset for in-page anchor navigation (#contact, #faq, etc.) */
:target {
  scroll-margin-top: 90px;
}

/* High contrast outline for keyboard accessibility focus states */
:focus-visible {
  outline: 2px solid var(--accent, #a855f7) !important;
  outline-offset: 3px !important;
}

/* Ensure smooth image rendering without layout shift */
img {
  content-visibility: auto;
}

/* Fix mobile modal & drawer overflow locking */
body.nav-open {
  overflow: hidden !important;
}

/* Ensure text in buttons never clips or wraps awkwardly */
.promo-banner__btn,
.section-cta-strip__primary,
.section-cta-strip__secondary,
.cta-secondary-link,
.video-toggle,
.series-filter__btn,
.blog-back-btn {
  white-space: nowrap !important;
  min-height: 40px !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   TOP WARNING STRIP & HEADER DESIGN FIX
   ========================================================================== */
.warning-strip {
  background: #0a0618 !important;
  border-bottom: 1px solid rgba(168, 85, 247, 0.35) !important;
  color: #c084fc !important;
  padding: 8px 16px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-align: center !important;
}

.warning-strip__track {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 36px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.warning-strip span {
  display: inline-block !important;
  white-space: nowrap !important;
}

@media (max-width: 991px) {
  .warning-strip__track span:nth-child(n+2) {
    display: none !important;
  }
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: rgba(22, 11, 44, 0.96) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(168, 85, 247, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.site-header .container,
.site-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 72px !important;
  width: 100% !important;
}

.brand-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.brand-link img {
  height: 38px !important;
  width: auto !important;
  filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.4)) !important;
}

.desktop-nav, .main-nav {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.desktop-nav a, .main-nav a {
  color: #ffffff !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  transition: color 200ms ease !important;
  padding: 6px 0 !important;
}

.desktop-nav a:hover,
.main-nav a:hover,
.desktop-nav a.is-active,
.main-nav a.is-active {
  color: #a855f7 !important;
}


/* ==========================================================================
   REVERSED HEADER LAYOUT - NAV LINKS LEFT, LOGO RIGHT
   ========================================================================== */
.site-header .container,
.site-header__inner {
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 76px !important;
  width: 100% !important;
}

.brand-link {
  order: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.brand-link img {
  height: 40px !important;
  width: auto !important;
  filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.4)) !important;
}

.desktop-nav, .main-nav {
  order: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.menu-toggle {
  order: 1 !important;
}

@media (max-width: 991px) {
  .site-header .container,
  .site-header__inner {
    flex-direction: row-reverse !important;
  }
}


/* ==========================================================================
   CENTER-FOCUSED REVERSED HEADER (NAV LEFT, LOGO RIGHT, BOTH CLOSER TO CENTER)
   ========================================================================== */
.site-header .container,
.site-header__inner {
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 64px !important;
  height: 76px !important;
  width: 100% !important;
  max-width: 1040px !important;
  margin-inline: auto !important;
}

.brand-link {
  order: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  margin-left: 0 !important;
}

.brand-link img {
  height: 40px !important;
  width: auto !important;
  filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.4)) !important;
}

.desktop-nav, .main-nav {
  order: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

@media (max-width: 991px) {
  .site-header .container,
  .site-header__inner {
    justify-content: space-between !important;
    gap: 16px !important;
    max-width: 100% !important;
  }
}


/* ==========================================================================
   HEADER FIX: LOGO ON THE LEFT, NAV ON THE RIGHT (BOTH CENTER-GROUPED)
   ========================================================================== */
.site-header .container,
.site-header__inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 64px !important;
  height: 76px !important;
  width: 100% !important;
  max-width: 1040px !important;
  margin-inline: auto !important;
}

.brand-link {
  order: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  margin-right: 0 !important;
}

.brand-link img {
  height: 40px !important;
  width: auto !important;
  filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.4)) !important;
}

.desktop-nav, .main-nav {
  order: 2 !important;
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

@media (max-width: 991px) {
  .site-header .container,
  .site-header__inner {
    justify-content: space-between !important;
    gap: 16px !important;
    max-width: 100% !important;
  }
}


/* ==========================================================================
   HERO CONTENT OVERLAY CARDS - PROFESSIONAL TYPOGRAPHY & BUTTON STYLING
   ========================================================================== */

.hero-slide__content {
  position: absolute !important;
  left: 6% !important;
  top: 18% !important;
  max-width: 440px !important;
  z-index: 5 !important;
  padding: 32px !important;
  border-radius: 26px !important;
  border: 1px solid rgba(168, 85, 247, 0.4) !important;
  background: rgba(22, 11, 44, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 35px rgba(168, 85, 247, 0.2) !important;
  transform: translateZ(0) !important;
  isolation: isolate !important;
}

.hero-slide__eyebrow {
  display: inline-flex !important;
  padding: 5px 14px !important;
  border-radius: 999px !important;
  background: rgba(168, 85, 247, 0.18) !important;
  border: 1px solid rgba(168, 85, 247, 0.45) !important;
  color: #c084fc !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 14px !important;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15) !important;
}

.hero-slide__content h2,
.hero-slide h2 {
  margin: 0 0 18px !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-size: clamp(28px, 3.8vw, 42px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6) !important;
}

.hero-slide__content p {
  margin: 0 0 20px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: #eee9f6 !important;
}

.cta-group--hero,
.hero-slide__cta-group {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 18px !important;
}

/* Primary Action Button (KØB NU) */
.hero-slide__cta--primary,
.cta-group--hero .hero-slide__cta--primary,
.hero-slide__cta[href*="dezig.de"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 10px 26px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #c084fc 100%) !important;
  color: #160b2c !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.45) !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
  cursor: pointer !important;
}

.hero-slide__cta--primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 32px rgba(168, 85, 247, 0.65) !important;
}

/* Secondary Action Button (SE UDVALGET) */
.hero-slide__cta--secondary,
.cta-group--hero .hero-slide__cta--secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 10px 24px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(245, 243, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  backdrop-filter: blur(10px) !important;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease !important;
  cursor: pointer !important;
}

.hero-slide__cta--secondary:hover {
  transform: translateY(-3px) !important;
  background: rgba(168, 85, 247, 0.22) !important;
  border-color: #a855f7 !important;
  color: #c084fc !important;
}

@media (max-width: 640px) {
  .hero-slide__content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    max-width: 100% !important;
    margin: 16px !important;
    padding: 24px !important;
  }
}


/* ==========================================================================
   MASTER HERO OVERLAY CARD DESIGN SYSTEM (UNIFIED, RESPONSIVE, LUXURY)
   ========================================================================== */

.hero-slide__content {
  position: absolute !important;
  left: clamp(24px, 5vw, 64px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: min(540px, calc(100% - 48px)) !important;
  height: auto !important;
  z-index: 10 !important;
  padding: clamp(28px, 4vw, 42px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(168, 85, 247, 0.4) !important;
  background: rgba(22, 11, 44, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(168, 85, 247, 0.18) !important;
  contain: paint !important;
  isolation: isolate !important;
}

/* Eyebrow Badge Pill */
.hero-slide__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  height: 38px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: rgba(168, 85, 247, 0.16) !important;
  border: 1px solid rgba(168, 85, 247, 0.45) !important;
  color: #c084fc !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 14px !important;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15) !important;
}

/* Heading Typography */
.hero-slide__content h2,
.hero-slide h2 {
  margin: 0 0 14px !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-size: clamp(2rem, 3.5vw, 3.25rem) !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.015em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6) !important;
  word-break: break-word !important;
}

/* Paragraph Description */
.hero-slide__content p,
.hero-slide p {
  margin: 0 0 22px !important;
  font-size: clamp(15px, 1.4vw, 17px) !important;
  line-height: 1.55 !important;
  color: #e5e0f0 !important;
  max-width: 52ch !important;
}

/* CTA Group Container */
.cta-group--hero,
.hero-slide__cta-group {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: auto !important;
}

/* Primary Button (KØB NU) */
.hero-slide__cta--primary,
.cta-group--hero .hero-slide__cta--primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  padding: 12px 30px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #c084fc 100%) !important;
  color: #160b2c !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.45) !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
  cursor: pointer !important;
}

.hero-slide__cta--primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 32px rgba(168, 85, 247, 0.65) !important;
}

/* Secondary Button (SE UDVALGET) */
.hero-slide__cta--secondary,
.cta-group--hero .hero-slide__cta--secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  padding: 12px 28px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(245, 243, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  font-family: var(--font-display, "Outfit", sans-serif) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  backdrop-filter: blur(10px) !important;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease !important;
  cursor: pointer !important;
}

.hero-slide__cta--secondary:hover {
  transform: translateY(-3px) !important;
  background: rgba(168, 85, 247, 0.22) !important;
  border-color: #a855f7 !important;
  color: #c084fc !important;
}

/* Mobile Responsiveness for Hero Overlay Cards */
@media (max-width: 767px) {
  .hero-slide__content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: calc(100% - 32px) !important;
    margin: 16px auto !important;
    padding: 24px 22px !important;
    border-radius: 22px !important;
  }

  .cta-group--hero {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-slide__cta--primary,
  .hero-slide__cta--secondary {
    width: 100% !important;
    min-height: 48px !important;
  }
}

/* ===========================================================================
   COMMERCIAL BLOCK SYSTEM — CLEAR VALUE, TRUST AND CONVERSION HIERARCHY
   =========================================================================== */
.products-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 92px);
  background:
    radial-gradient(circle at 8% 8%, rgba(168, 85, 247, 0.1), transparent 26rem),
    linear-gradient(180deg, #faf8ff 0%, #f4f0ff 100%);
}

.products-section .section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.products-section .section-title h2 {
  max-width: 24ch;
  color: var(--surface-dark);
}

.products-section > .container > .section-cta-strip:first-of-type {
  margin-bottom: 28px;
}

.products-grid,
.catalog-grid {
  gap: clamp(18px, 2vw, 28px);
}

.product-card,
.catalog-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-color: rgba(58, 29, 112, 0.12);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(22, 11, 44, 0.08);
}

.product-card::before,
.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-light), var(--accent-2));
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card:hover,
.catalog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(168, 85, 247, 0.48);
  box-shadow: 0 24px 54px rgba(67, 26, 128, 0.18);
}

.product-card:hover::before,
.catalog-card:hover::before {
  opacity: 1;
}

.product-card__media,
.catalog-card__media {
  border: 1px solid rgba(58, 29, 112, 0.08);
  border-radius: 17px;
  background: radial-gradient(circle at 50% 32%, #ffffff 0%, #eee6ff 100%);
}

.product-card__media img,
.catalog-card__media img {
  transform-origin: center;
}

.product-card__badge,
.catalog-card__badge {
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 8px 18px rgba(22, 11, 44, 0.16);
}

.product-card__copy {
  min-height: 230px;
  margin-top: 16px;
  padding: 2px 4px 4px;
}

.product-card__copy h3,
.catalog-card__title {
  margin: 2px 0 4px;
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.08;
  color: var(--surface-dark);
}

.product-card__copy > p:not(.product-card__kicker) {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-card__copy .cta-group {
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
}

/* Purchase is visually primary; product information remains available as a calm secondary action. */
.product-card .section-cta-strip__secondary,
.product-detail__content .section-cta-strip__secondary {
  flex: 1 1 132px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.24);
}

.product-card .section-cta-strip__secondary::after,
.product-detail__content .section-cta-strip__secondary::after {
  content: "→";
  margin-left: 8px;
  font-size: 1.15em;
  line-height: 1;
}

.product-card .section-cta-strip__secondary:hover,
.product-detail__content .section-cta-strip__secondary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  color: #ffffff !important;
  box-shadow: 0 14px 26px rgba(124, 58, 237, 0.34);
}

.product-card .section-cta-strip__primary,
.product-detail__content .section-cta-strip__primary {
  flex: 1 1 120px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(58, 29, 112, 0.24);
  background: #ffffff;
  color: var(--primary) !important;
  box-shadow: none;
}

.product-card .section-cta-strip__primary:hover,
.product-detail__content .section-cta-strip__primary:hover {
  border-color: var(--accent);
  background: #f7f1ff;
  color: var(--accent-2) !important;
}

.launch-spotlight__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
  overflow: hidden;
  border-color: rgba(192, 132, 252, 0.45);
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 70, 239, 0.26), transparent 25rem),
    linear-gradient(135deg, #160b2c 0%, #3a1d70 56%, #0a0618 100%);
}

.launch-spotlight__shell::after,
.wholesale-highlight__card::after {
  content: "";
  position: absolute;
  inset: auto -12% -50% auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(192, 132, 252, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.launch-spotlight__content,
.wholesale-highlight__card {
  position: relative;
}

.launch-spotlight__intro h2,
.wholesale-highlight__card h2 {
  max-width: 16ch;
  margin: 8px 0 0;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.04;
}

.launch-spotlight__actions,
.wholesale-highlight__actions {
  flex-wrap: wrap;
  gap: 12px;
}

.launch-spotlight__cta,
.wholesale-highlight__order {
  min-height: 52px;
  padding-inline: 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.launch-spotlight__cta:hover,
.wholesale-highlight__order:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.4);
}

.launch-spotlight__visual img {
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.32);
}

.wholesale-highlight__card {
  overflow: hidden;
  border-color: rgba(192, 132, 252, 0.44);
  background:
    radial-gradient(circle at 92% 18%, rgba(168, 85, 247, 0.26), transparent 22rem),
    linear-gradient(135deg, #160b2c 0%, #2d1558 58%, #0a0618 100%);
}

.wholesale-highlight__tiers {
  position: relative;
  z-index: 1;
  gap: 12px;
}

.wholesale-highlight__tier {
  padding: 20px 16px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.wholesale-highlight__tier span {
  display: block;
  color: #e5e0f0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.wholesale-highlight__tier strong {
  display: block;
  margin-top: 4px;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.promo-banner__card,
.blog-cta {
  border-color: rgba(192, 132, 252, 0.44);
  background: linear-gradient(135deg, #160b2c 0%, #3a1d70 58%, #5a2ea6 100%);
}

.blog-highlight__card,
.info-card,
.faq-item,
.variant-card,
.review-card--product {
  border-color: rgba(58, 29, 112, 0.1);
  box-shadow: 0 14px 34px rgba(22, 11, 44, 0.07);
}

@media (max-width: 767px) {
  .products-section .section-title {
    display: block;
  }

  .product-card__copy {
    min-height: 0;
  }

  .product-card .cta-group,
  .product-detail__content .section-cta-strip,
  .launch-spotlight__actions,
  .wholesale-highlight__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card .section-cta-strip__primary,
  .product-card .section-cta-strip__secondary,
  .product-detail__content .section-cta-strip__primary,
  .product-detail__content .section-cta-strip__secondary,
  .launch-spotlight__cta,
  .wholesale-highlight__order {
    width: 100%;
  }

  .launch-spotlight__shell {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}

/* ===========================================================================
   HERO CONTENT CARDS — UNIFIED RESPONSIVE SYSTEM
   =========================================================================== */
:root {
  --hero-card-bg: rgba(10, 6, 24, 0.93);
  --hero-card-border: rgba(168, 85, 247, 0.34);
  --hero-card-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  --hero-card-radius: var(--radius-md);
}

/* Every content slide shares this visual system; slides may still omit optional
   elements such as a description or secondary action without creating empty space. */
.hero-slide__content {
  position: absolute !important;
  inset: 50% auto auto clamp(40px, 4vw, 64px) !important;
  transform: translateY(-50%) !important;
  inline-size: min(560px, 46vw) !important;
  max-width: calc(100% - 80px) !important;
  height: auto !important;
  margin: 0 !important;
  padding: clamp(40px, 3.25vw, 50px) !important;
  border: 1px solid var(--hero-card-border) !important;
  border-radius: var(--hero-card-radius) !important;
  background: var(--hero-card-bg) !important;
  color: #ffffff !important;
  box-shadow: var(--hero-card-shadow) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  contain: none !important;
}

.hero-slide__content .hero-slide__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  max-width: 100% !important;
  margin: 0 0 16px !important;
  padding: 8px 16px !important;
  border: 1px solid rgba(168, 85, 247, 0.42) !important;
  border-radius: var(--radius-sm) !important;
  background: rgba(168, 85, 247, 0.12) !important;
  color: var(--accent-light) !important;
  font-size: clamp(12px, 1vw, 14px) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.07em !important;
  overflow-wrap: anywhere;
  box-shadow: none !important;
}

.hero-slide__content h2,
.hero-slide h2 {
  max-width: 14ch;
  margin: 0 0 16px !important;
  font-size: clamp(2.25rem, 4vw, 3.75rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.02em !important;
  overflow-wrap: anywhere;
  word-break: normal !important;
  text-shadow: none !important;
}

.hero-slide__content > p:not(.hero-slide__eyebrow) {
  max-width: 56ch !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(17px, 1.35vw, 19px) !important;
  line-height: 1.52 !important;
  overflow-wrap: anywhere;
}

.hero-slide__content > p:not(.hero-slide__eyebrow) + .cta-group--hero,
.hero-slide__content h2 + .cta-group--hero {
  margin-top: 28px !important;
}

.cta-group--hero,
.hero-slide__cta-group {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  gap: 14px !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}

.hero-slide__cta,
.hero-slide__cta--primary,
.hero-slide__cta--secondary {
  min-height: 54px !important;
  max-width: 100% !important;
  padding: 12px 28px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  text-align: center;
  white-space: normal !important;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

.hero-slide__cta--primary,
.cta-group--hero .hero-slide__cta--primary {
  background: var(--accent) !important;
  box-shadow: 0 10px 22px rgba(168, 85, 247, 0.26) !important;
}

.hero-slide__cta--primary:hover,
.hero-slide__cta--primary:focus-visible {
  transform: translateY(-2px) !important;
  background: var(--accent-light) !important;
  box-shadow: 0 14px 28px rgba(168, 85, 247, 0.34) !important;
}

.hero-slide__cta--secondary,
.cta-group--hero .hero-slide__cta--secondary {
  border-color: rgba(255, 255, 255, 0.48) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: none !important;
}

.hero-slide__cta--secondary:hover,
.hero-slide__cta--secondary:focus-visible {
  transform: translateY(-2px) !important;
  border-color: var(--accent-light) !important;
  background: rgba(168, 85, 247, 0.14) !important;
  color: #ffffff !important;
}

@media (max-width: 1023px) {
  .hero-slide__content {
    inset-inline-start: 32px !important;
    inline-size: min(540px, 58vw) !important;
    max-width: calc(100% - 64px) !important;
    padding: 34px !important;
  }
}

/* Narrow tablets can have a shorter image frame than the longest card.
   Let the existing slide grow naturally instead of clipping the content. */
@media (min-width: 768px) and (max-width: 840px) {
  .hero-slide__content {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    inline-size: calc(100% - 64px) !important;
    max-width: none !important;
    margin: 24px auto 72px !important;
  }
}

@media (max-width: 767px) {
  .hero-slide__content {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    inline-size: calc(100% - 32px) !important;
    max-width: none !important;
    margin: 16px auto 72px !important;
    padding: clamp(24px, 7vw, 30px) !important;
  }

  .hero-slide__content h2,
  .hero-slide h2 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.625rem) !important;
  }

  .hero-slide__content > p:not(.hero-slide__eyebrow) {
    font-size: clamp(15px, 4.4vw, 17px) !important;
  }

  .cta-group--hero,
  .hero-slide__cta-group {
    flex-direction: column !important;
    gap: 11px !important;
  }

  .hero-slide__cta,
  .hero-slide__cta--primary,
  .hero-slide__cta--secondary {
    width: 100% !important;
    min-height: 52px !important;
  }
}

/* ==========================================================================
   GLOBAL PRODUCT & FLAVOR IMAGE BLOCK FIXES (FULL SCREEN WIDTH & 4 CARDS)
   ========================================================================== */

/* 1. Flavor Variants Gallery & Grid (Full Width Container & 4 Cards Per Row) */
.products-section--variants {
  padding: 48px 0 !important;
  width: 100% !important;
  clear: both !important;
  display: block !important;
}

.products-section--variants > .container {
  width: min(1440px, calc(100% - 48px)) !important;
  max-width: 100% !important;
  margin-inline: auto !important;
  box-sizing: border-box !important;
}

.variants-gallery,
.variants-gallery--panda-twins,
[data-product-variant-gallery] {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  margin-top: 28px !important;
  box-sizing: border-box !important;
}

.variant-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  border-radius: 20px !important;
  border: 1px solid rgba(58, 29, 112, 0.12) !important;
  background: #ffffff !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(22, 11, 44, 0.05) !important;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease !important;
  box-sizing: border-box !important;
}

.variant-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 44px rgba(67, 26, 128, 0.16) !important;
  border-color: rgba(168, 85, 247, 0.45) !important;
}

.variant-card img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 14px !important;
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f4efff 100%) !important;
  border-bottom: 1px solid rgba(58, 29, 112, 0.08) !important;
  box-sizing: border-box !important;
  display: block !important;
}

.variant-card__body {
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

.variant-card__body h3,
.variant-card h3 {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--surface-dark) !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3 !important;
}

.variant-card__desc {
  font-size: 12px !important;
  color: var(--muted) !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.45 !important;
  flex-grow: 1 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.variant-card__cta {
  align-self: flex-start !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.3) !important;
  transition: transform 200ms ease, box-shadow 200ms ease !important;
}

.variant-card:hover .variant-card__cta {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(168, 85, 247, 0.45) !important;
}

/* Responsive grid for smaller screens */
@media (max-width: 1024px) {
  .variants-gallery,
  .variants-gallery--panda-twins,
  [data-product-variant-gallery] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 768px) {
  .variants-gallery,
  .variants-gallery--panda-twins,
  [data-product-variant-gallery] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 480px) {
  .variants-gallery,
  .variants-gallery--panda-twins,
  [data-product-variant-gallery] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .variant-card__body {
    padding: 12px !important;
  }

  .variant-card img {
    padding: 8px !important;
  }
}

/* 2. Main Catalog Grid & Cards Fixes */
.products-grid,
.catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)) !important;
  gap: 28px !important;
  width: 100% !important;
}

.catalog-card,
.product-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(58, 29, 112, 0.12) !important;
  background: #ffffff !important;
  box-shadow: 0 14px 34px rgba(22, 11, 44, 0.08) !important;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease !important;
  box-sizing: border-box !important;
}

.catalog-card__media,
.product-card__media {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.catalog-card__media img,
.product-card__media img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  transition: transform 350ms ease !important;
}

.catalog-card__body,
.product-card__copy {
  margin-top: 0 !important;
  padding: 20px !important;
}

.catalog-card:hover .catalog-card__media img,
.product-card:hover .product-card__media img {
  transform: none !important;
}
/* Catalog card text treatment */
.catalog-card__body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.catalog-card__head,
.catalog-card__labels {
  display: flex !important;
  align-items: flex-start !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.catalog-card__family {
  margin: 0 !important;
  color: #8b5cf6 !important;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.catalog-card__tag {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  margin: 0 !important;
  padding: 5px 13px !important;
  border: 1px solid #ffc7ad !important;
  border-radius: 999px !important;
  background: #fff7f3 !important;
  color: #8a3417 !important;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
}

.catalog-card__body h3 {
  min-height: 0 !important;
  margin: 0 !important;
  color: #111827 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(27px, 2.1vw, 37px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
  line-height: 0.98 !important;
  text-transform: uppercase !important;
}

.catalog-card__actions {
  display: flex !important;
  width: 100% !important;
  margin-top: auto !important;
  padding-top: 8px !important;
  gap: 10px !important;
}

.catalog-card__actions .section-cta-strip__primary,
.catalog-card__actions .section-cta-strip__secondary {
  display: inline-flex !important;
  flex: 1 1 0 !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 10px 12px !important;
  border-radius: 999px !important;
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.catalog-card__actions .section-cta-strip__primary {
  border: 1px solid rgba(22, 11, 44, 0.16) !important;
  background: #f8ffff !important;
  color: #16111f !important;
}

.catalog-card__actions .section-cta-strip__secondary {
  border: 1px solid transparent !important;
  background: linear-gradient(135deg, #ffc765 0%, #ff8a55 48%, #c26df0 100%) !important;
  color: #16111f !important;
  box-shadow: none !important;
}

.catalog-card__actions .section-cta-strip__primary::after,
.catalog-card__actions .section-cta-strip__secondary::after {
  content: "\2192" !important;
  margin-left: 10px !important;
  font-size: 1.15em !important;
  line-height: 1 !important;
}

/* 3. Single Product Detail Main Image Frame */
.product-detail__media {
  border-radius: 24px !important;
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f4efff 100%) !important;
  border: 1px solid rgba(58, 29, 112, 0.1) !important;
  padding: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: 0 16px 40px rgba(22, 11, 44, 0.08) !important;
}

.product-detail__media img {
  width: 100% !important;
  height: auto !important;
  max-height: 480px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* 4. Flavor Badges / Items List */
.variants-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
  gap: 10px !important;
  margin: 16px 0 24px 0 !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100% !important;
}

.variant-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(58, 29, 112, 0.12) !important;
  background: #ffffff !important;
  box-shadow: 0 3px 12px rgba(22, 11, 44, 0.04) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--surface-dark) !important;
  word-break: break-word !important;
}
/* Compact product detail layout */
.product-page {
  padding: 24px 0 36px !important;
}

.product-detail {
  gap: 24px !important;
}

.product-detail__media {
  padding: 12px !important;
  border-radius: 20px !important;
}

.product-detail__media img {
  max-height: 360px !important;
}

.product-detail__content h1 {
  margin: 0 0 14px !important;
  font-size: clamp(28px, 3.1vw, 44px) !important;
  line-height: 1.03 !important;
}

.product-detail__content > p[data-product-description] {
  margin: 0 0 16px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.product-detail__content > h3 {
  margin: 0 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
}

.variants-list {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
  gap: 8px !important;
  margin: 10px 0 16px !important;
}

.variant-item {
  min-height: 40px !important;
  padding: 8px 12px !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.product-detail__content .cta-group {
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .product-detail__media img {
    max-height: 300px !important;
  }
}
/* Customer appreciation banner */
.promo-banner__card--customer-love {
  padding: clamp(34px, 4.5vw, 58px) !important;
}

.promo-banner__card--customer-love h2 {
  max-width: 1100px;
  margin-bottom: 16px !important;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  line-height: 1.02 !important;
}

.promo-banner__card--customer-love .promo-banner__message {
  max-width: 1100px;
  margin: 0 !important;
  color: #f3effa !important;
  font-size: clamp(18px, 1.9vw, 26px) !important;
  font-weight: 600;
  line-height: 1.45 !important;
}

@media (max-width: 767px) {
  .promo-banner__card--customer-love {
    padding: 28px 24px !important;
  }

  .promo-banner__card--customer-love h2 {
    font-size: clamp(30px, 9vw, 42px) !important;
  }
}
/* MOBILE MENU RELIABILITY FIX */
body.mobile-menu-open,
body.nav-open {
  overflow: hidden !important;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 6, 24, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

@media (max-width: 991px) {
  .site-header .desktop-nav,
  .site-header .main-nav {
    display: none !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
    position: relative;
    z-index: 1003;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-height: 42px;
    padding: 10px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1002 !important;
    min-height: 100dvh;
    padding: 20px !important;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }

  .mobile-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
  }

  .mobile-nav__inner {
    gap: 18px;
    padding-bottom: 24px;
  }
}
/* MOBILE NAVIGATION CONTRAST FIX */
@media (max-width: 991px) {
  .site-header .menu-toggle {
    flex-direction: column;
    gap: 4px;
  }

  .menu-toggle > span:not(.sr-only) {
    flex: 0 0 auto;
    margin: 0;
  }

  .mobile-nav {
    color: #ffffff !important;
    background: rgba(10, 6, 24, 0.98) !important;
  }

  .mobile-nav__header {
    min-height: 44px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(192, 132, 252, 0.3);
  }

  .mobile-nav__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .mobile-nav__brand img {
    display: block;
    width: auto;
    height: 38px;
  }

  .mobile-nav__inner > a,
  .mobile-nav summary,
  .mobile-nav__group a {
    color: #ffffff !important;
    font-family: var(--font-display, "Outfit", sans-serif) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }

  .mobile-nav__inner > a {
    display: block;
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.16);
    border: 1px solid rgba(192, 132, 252, 0.36);
  }

  .mobile-nav details {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-nav summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-nav summary::after {
    content: "+";
    color: #c084fc;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-nav details[open] summary::after {
    content: "\2212";
  }

  .mobile-nav__group {
    gap: 6px;
    padding: 0 0 14px 12px;
  }

  .mobile-nav__group a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: #eee7ff !important;
    font-family: var(--font-body, "Inter", sans-serif) !important;
    font-size: 14px;
    font-weight: 600 !important;
  }

  .mobile-nav__group a:hover,
  .mobile-nav__group a:focus-visible {
    background: rgba(168, 85, 247, 0.24);
    color: #ffffff !important;
  }

  .mobile-nav__close {
    font-size: 0;
  }

  .mobile-nav__close::before {
    content: "\00D7";
    font-size: 27px;
    line-height: 1;
  }
}
/* COMPACT MOBILE PRODUCT CARDS */
@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .product-card {
    border-radius: 28px !important;
  }

  .product-card__media {
    aspect-ratio: 4 / 3 !important;
  }

  .product-card__copy {
    min-height: 0 !important;
    gap: 8px !important;
    padding: 16px 18px 18px !important;
  }

  .product-card__kicker {
    margin: 0 !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
  }

  .product-card__copy h3 {
    display: block !important;
    min-height: 0 !important;
    margin: 0 !important;
    font-size: clamp(26px, 8vw, 32px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.02 !important;
    text-transform: uppercase !important;
  }

  .product-card__copy > p:not(.product-card__kicker) {
    display: block !important;
    flex: none !important;
    margin: 2px 0 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .product-card .cta-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 8px !important;
    margin-top: 6px !important;
    padding-top: 0 !important;
  }

  .product-card .section-cta-strip__primary,
  .product-card .section-cta-strip__secondary {
    display: inline-flex !important;
    flex: 1 1 0 !important;
    width: auto !important;
    min-height: 40px !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .product-card .section-cta-strip__primary::after,
  .product-card .section-cta-strip__secondary::after {
    content: "\2192" !important;
    margin-left: 6px !important;
    font-size: 1.05em !important;
    line-height: 1 !important;
  }
}
/* COMPACT MOBILE INFO CARDS  keep contact and news actions inside the viewport */
@media (max-width: 480px) {
  .info-section {
    padding: 24px 0 !important;
  }

  .info-grid,
  .info-card,
  .info-card__content {
    width: 100%;
    min-width: 0;
  }

  .info-grid {
    gap: 18px !important;
  }

  .info-card {
    padding: 26px 20px !important;
    border-radius: 24px !important;
  }

  .info-card__content {
    gap: 10px !important;
  }

  .info-card h2 {
    font-size: 34px !important;
  }

  .info-card p {
    font-size: 14px !important;
    line-height: 1.4 !important;
    overflow-wrap: anywhere;
  }

  .info-card .cta-group {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
    width: 100%;
    margin-top: 4px !important;
    padding-top: 10px !important;
  }

  .info-card .section-cta-strip__primary,
  .info-card .section-cta-strip__secondary {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 8px 6px;
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .info-card {
    padding: 22px 16px !important;
  }

  .info-card .section-cta-strip__primary,
  .info-card .section-cta-strip__secondary {
    font-size: 9px;
  }
}

/* WHOLESALE HIGHLIGHT  LIGHT B2B CARD */
.wholesale-highlight {
  padding-block: clamp(28px, 4vw, 48px);
}

.wholesale-highlight__card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 70, 239, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f2ff 100%);
  color: var(--surface-dark);
  box-shadow: 0 20px 44px rgba(51, 27, 104, 0.12);
}

.wholesale-highlight__card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  width: auto;
  height: 4px;
  border: 0;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #7c3aed, #d946ef, #c084fc);
}

.wholesale-highlight__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-color: rgba(124, 58, 237, 0.18);
  background: #f1e9ff;
  color: #6d28d9;
  letter-spacing: 0.04em;
}

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

.wholesale-highlight__card h2 {
  max-width: 18ch;
  margin-top: 8px;
  color: #180b35;
  font-size: clamp(31px, 4vw, 52px);
  letter-spacing: -0.045em;
}

.wholesale-highlight__lead {
  max-width: 62ch;
  margin: 14px 0 22px;
  color: #554b6b;
  font-size: 15px;
  line-height: 1.55;
}

.wholesale-highlight__tiers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0 0 22px;
}

.wholesale-highlight__tier {
  min-width: 0;
  padding: 16px 14px;
  border-color: rgba(124, 58, 237, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: left;
}

.wholesale-highlight__tier:nth-child(2) {
  background: #f4edff;
}

.wholesale-highlight__tier:nth-child(3) {
  border-color: rgba(217, 70, 239, 0.28);
  background: linear-gradient(135deg, #f9edff, #f4e6ff);
}

.wholesale-highlight__tier span {
  color: #554b6b;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.wholesale-highlight__tier strong {
  margin-top: 6px;
  color: #7c3aed;
  font-size: clamp(27px, 3vw, 36px);
}

.wholesale-highlight__actions {
  position: relative;
  z-index: 1;
}

.wholesale-highlight__order {
  min-height: 46px;
  padding-inline: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.26);
}

@media (max-width: 480px) {
  .wholesale-highlight__card {
    padding: 24px 20px 28px;
    border-radius: 24px;
  }

  .wholesale-highlight__card::after {
    inset-inline: 20px;
  }

  .wholesale-highlight__card h2 {
    max-width: 14ch;
    font-size: 33px;
  }

  .wholesale-highlight__lead {
    margin-block: 12px 18px;
    font-size: 14px;
  }

  .wholesale-highlight__tiers {
    gap: 8px;
    margin-bottom: 18px;
  }

  .wholesale-highlight__tier {
    padding: 13px 8px;
    border-radius: 14px;
    text-align: center;
  }

  .wholesale-highlight__tier span {
    font-size: 9px;
    letter-spacing: 0.02em;
  }

  .wholesale-highlight__tier strong {
    margin-top: 4px;
    font-size: 25px;
  }

  .wholesale-highlight__order {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}
