﻿/** Shopify CDN: Minification failed

Line 282:11 Cannot use type selector "--active" directly after nesting selector "&"
Line 381:3 Cannot use type selector "--gradient" directly after nesting selector "&"
Line 604:3 Cannot use type selector "--2-col" directly after nesting selector "&"
Line 605:3 Cannot use type selector "--3-col" directly after nesting selector "&"
Line 606:3 Cannot use type selector "--4-col" directly after nesting selector "&"
Line 607:3 Cannot use type selector "--5-col" directly after nesting selector "&"
Line 608:3 Cannot use type selector "--6-col" directly after nesting selector "&"
Line 919:3 Cannot use type selector "--2" directly after nesting selector "&"
Line 920:3 Cannot use type selector "--3" directly after nesting selector "&"
Line 921:3 Cannot use type selector "--4" directly after nesting selector "&"

**/
/* ============================================================
   ShinySwipe Theme â€” Main Stylesheet
   ============================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* === Variables === */
:root {
  --color-bg:           #0a0a0a;
  --color-surface:      #141414;
  --color-surface-2:    #1e1e1e;
  --color-border:       #2a2a2a;
  --color-text:         #ffffff;
  --color-text-muted:   #888888;
  --color-text-faint:   #555555;
  --color-accent:       #c9a84c;
  --color-accent-light: #e8c97a;
  --color-danger:       #ef4444;
  --color-success:      #22c55e;

  --gradient-iridescent: linear-gradient(135deg, #f0d060 0%, #e879f9 33%, #38bdf8 66%, #34d399 100%);
  --gradient-shimmer:    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 30px rgba(201,168,76,0.2);

  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-slow:   0.4s ease;

  --container-max: 1280px;
  --container-pad: clamp(16px, 4vw, 48px);
  --header-height: 72px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* === Utilities === */
.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;
}
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section-padding { padding-block: clamp(28px, 4.5vw, 56px); }
.skip-link {
  position: absolute; top: -100%; left: 8px; z-index: 9999;
  padding: 8px 16px; background: var(--color-accent); color: #000;
  border-radius: var(--radius-sm);
  &:focus { top: 8px; }
}

/* === Shimmer animation === */
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes slide-in-right { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes holo-sweep {
  0%   { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(220%) skewX(-20deg); opacity: 0; }
}

/* === Scroll reveal system (same pattern as Card Emblems) === */
@keyframes ss-fadeInUp    { from { opacity:0; transform:translate3d(0,26px,0); }  to { opacity:1; transform:translateZ(0); } }
@keyframes ss-fadeInLeft  { from { opacity:0; transform:translate3d(-26px,0,0); } to { opacity:1; transform:translateZ(0); } }
@keyframes ss-fadeInRight { from { opacity:0; transform:translate3d(26px,0,0);  } to { opacity:1; transform:translateZ(0); } }
@keyframes ss-zoomIn      { from { opacity:0; transform:scale3d(.88,.88,.88);   } to { opacity:1; transform:scale3d(1,1,1); } }

[data-scroll-class]  { opacity: 0; }
.ss-animated         { animation-duration: 0.68s; animation-fill-mode: both; animation-timing-function: cubic-bezier(0.22,1,0.36,1); }
.ss-fadeInUp         { animation-name: ss-fadeInUp; }
.ss-fadeInLeft       { animation-name: ss-fadeInLeft; }
.ss-fadeInRight      { animation-name: ss-fadeInRight; }
.ss-zoomIn           { animation-name: ss-zoomIn; }

@media (prefers-reduced-motion: reduce) {
  [data-scroll-class] { opacity: 1 !important; }
  .ss-animated        { animation: none !important; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 15px; line-height: 1;
  text-decoration: none; white-space: nowrap;
  transition: all var(--transition-base);
  cursor: pointer;
}
.btn--primary {
  background: var(--gradient-iridescent);
  background-size: 250% 250%;
  color: #000;
  animation: shimmer 5s ease infinite;
  box-shadow: var(--shadow-glow);
  &:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(201,168,76,0.35); }
  &:active { transform: translateY(0); }
}
.btn--secondary {
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  &:hover { border-color: var(--color-accent); color: var(--color-accent); }
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.25);
  &:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  &:hover { border-color: var(--color-accent); color: var(--color-accent); }
}
.btn--large { padding: 16px 32px; font-size: 16px; }
.btn--full   { width: 100%; }

/* === Section headers === */
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 8px;
}
.section-title {
  font-size: clamp(24px, 4vw, 40px); font-weight: 800; line-height: 1.15;
  color: var(--color-text);
}
.section-subtitle {
  font-size: 16px; color: var(--color-text-muted); margin-top: 12px;
  max-width: 560px;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; margin-bottom: 28px; flex-wrap: wrap;
}
.section-header--centered {
  flex-direction: column; align-items: center; text-align: center;
  .section-subtitle { max-width: 600px; }
}

/* === Stars === */
.star { color: var(--color-text-faint); }
.star--filled { color: var(--color-accent); }

/* ============================================================
   ANNOUNCEMENT BAR â€” scrolling marquee ticker
   ============================================================ */
.announcement-bar {
  background: var(--bar-bg, #0f0f0f);
  color: var(--bar-text, #fff);
  position: relative; z-index: 100; overflow: hidden;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: 10px;
}
.announcement-bar__track-wrapper {
  overflow: hidden; white-space: nowrap;
}
.announcement-bar__track {
  display: inline-flex; align-items: center; gap: 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
  &:hover { animation-play-state: paused; }
}
.announcement-bar__item {
  display: inline-flex; align-items: center; gap: 6px;
  padding-inline: 32px;
  position: relative;
  a { &:hover { opacity: 0.75; } }
  &::after {
    content: '\2022';
    position: absolute; right: 0;
    opacity: 0.3;
  }
}
.announcement-bar__icon { font-size: 14px; }
.announcement-bar__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 18px; opacity: 0.5; line-height: 1; z-index: 2;
  background: var(--bar-bg, #0f0f0f);
  padding-left: 8px;
  &:hover { opacity: 1; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
  &.is-scrolled { box-shadow: var(--shadow-lg); }
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-height);
}
.site-header__logo { flex-shrink: 0; }
.site-header__logo-text {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  background: var(--gradient-iridescent);
  background-size: 250% 250%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}
.site-header__logo-img { height: 40px; width: auto; }

.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav__list { display: flex; align-items: center; gap: 4px; }
.site-nav__item { position: relative; }
.site-nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500;
  transition: all var(--transition-fast);
  &:hover, &--active { background: var(--color-surface); color: var(--color-accent); }
}
.site-nav__chevron { transition: transform var(--transition-fast); }
.site-nav__item--has-dropdown:hover .site-nav__chevron { transform: rotate(180deg); }
.site-nav__dropdown {
  display: block; visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: 100%; left: 0;
  padding-top: 8px;
  min-width: 180px;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  transition-delay: 0s, 0.1s;
  ul {
    padding: 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }
}
.site-nav__item--has-dropdown:hover .site-nav__dropdown {
  visibility: visible; opacity: 1; pointer-events: auto;
  transition-delay: 0s;
}
.site-nav__dropdown-link {
  display: block; padding: 10px 14px; font-size: 14px; border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  &:hover, &.active { background: var(--color-surface-2); color: var(--color-accent); }
}

.site-header__actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-header__icon-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  &:hover { background: var(--color-surface); }
}
.site-header__cart-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--color-accent); color: #000;
  border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700; line-height: 18px; text-align: center;
}
.site-header__menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.hamburger {
  display: block; width: 22px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: all var(--transition-base);
}

.site-header__search {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 12px 0;
  &[aria-hidden="true"] { display: none; }
  form { display: flex; align-items: center; gap: 12px; }
  button[type="submit"] { color: var(--color-text-muted); &:hover { color: var(--color-text); } }
}
.site-header__search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--color-text); font-size: 16px;
  &::placeholder { color: var(--color-text-muted); }
}

.mobile-nav {
  display: none; background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  &[aria-hidden="false"] { display: block; }
}
.mobile-nav__list { padding: 8px 16px 16px; }
.mobile-nav__link {
  display: block; padding: 12px 0; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  &.active { color: var(--color-accent); }
}
.mobile-nav__sub { padding-left: 16px; }
.mobile-nav__sub-link {
  display: block; padding: 8px 0; font-size: 14px; color: var(--color-text-muted);
  &.active { color: var(--color-accent); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: 420px; overflow: hidden;
  &.hero--full { min-height: min(72vh, 680px); }
}
.hero .lightning-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero__media {
  position: absolute; inset: 0;
  &--gradient {
    background:
      radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(56,189,248,0.06) 0%, transparent 50%),
      linear-gradient(135deg, #0e0614 0%, #0a0a0a 60%);
  }
}
.hero__image, .hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0, var(--hero-overlay, 0.5));
}
.hero__content {
  position: relative; z-index: 1;
  padding-block: clamp(40px, 5vw, 72px);
  width: 100%;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero__text { animation: fade-in 0.7s ease both; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-accent-light); margin-bottom: 20px;
  background: rgba(201,168,76,0.1); padding: 6px 14px; border-radius: var(--radius-full);
  border: 1px solid rgba(201,168,76,0.2);
}
.hero__heading {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero__heading-highlight {
  display: block;
  background: var(--gradient-iridescent);
  background-size: 250% 250%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}
.hero__subheading {
  font-size: clamp(15px, 1.8vw, 18px); font-weight: 400;
  color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 480px; line-height: 1.7;
}

/* Franchise pills */
.hero__franchise-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}

@keyframes pill-rainbow {
  0%   { background-position: 0 0, 0% 0; }
  100% { background-position: 0 0, 400% 0; }
}

.franchise-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 18px; min-height: 42px;
  border-radius: 6px;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  background:
    linear-gradient(rgba(10,6,22,0.9), rgba(10,6,22,0.9)) padding-box,
    linear-gradient(90deg, #f0d060, #e879f9, #38bdf8, #34d399, #c026d3, #f0d060) border-box;
  background-size: 100% 100%, 400% 100%;
  border: 1.5px solid transparent;
}

/* Rainbow animation and hover lift — desktop mouse only */
@media (hover: hover) and (pointer: fine) {
  .franchise-pill {
    animation: pill-rainbow 3s linear infinite;
    transition: transform 0.2s ease, color 0.2s, box-shadow 0.25s;
  }
  .franchise-pill:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 6px 28px rgba(232,121,249,0.45), 0 2px 8px rgba(56,189,248,0.3);
  }
}

/* Hot pill label */
.franchise-pill--hot {
  position: relative;
  margin-top: 18px;
}
.franchise-pill--hot::before {
  content: '🔥 HOT';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ff4444;
  white-space: nowrap;
  line-height: 1;
}

/* Stagger each pill to a different point in the rainbow cycle */
.hero__franchise-pills .franchise-pill:nth-child(2)  { animation-delay: -0.23s; }
.hero__franchise-pills .franchise-pill:nth-child(3)  { animation-delay: -0.46s; }
.hero__franchise-pills .franchise-pill:nth-child(4)  { animation-delay: -0.69s; }
.hero__franchise-pills .franchise-pill:nth-child(5)  { animation-delay: -0.92s; }
.hero__franchise-pills .franchise-pill:nth-child(6)  { animation-delay: -1.15s; }
.hero__franchise-pills .franchise-pill:nth-child(7)  { animation-delay: -1.38s; }
.hero__franchise-pills .franchise-pill:nth-child(8)  { animation-delay: -1.61s; }
.hero__franchise-pills .franchise-pill:nth-child(9)  { animation-delay: -1.84s; }
.hero__franchise-pills .franchise-pill:nth-child(10) { animation-delay: -2.07s; }
.hero__franchise-pills .franchise-pill:nth-child(11) { animation-delay: -2.30s; }
.hero__franchise-pills .franchise-pill:nth-child(12) { animation-delay: -2.53s; }
.hero__franchise-pills .franchise-pill:nth-child(13) { animation-delay: -2.76s; }

.franchise-pill__logo {
  height: 24px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
  .franchise-pill:hover & { opacity: 1; filter: none; }
}

/* Social proof */
.hero__social-proof {
  display: flex; align-items: center; gap: 8px; margin-bottom: 28px;
}
.hero__stars { display: flex; color: var(--color-accent); gap: 2px; }
.hero__social-proof-text { font-size: 13px; color: rgba(255,255,255,0.55); }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__trust-micro {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.45);
  svg { flex-shrink: 0; }
  span { display: flex; align-items: center; gap: 5px; }
}

/* Product showcase panel */
.hero__showcase {
  flex-shrink: 0;
  animation: fade-in 0.9s 0.2s ease both;
}
.hero__showcase-card {
  position: relative;
  width: clamp(200px, 22vw, 300px);
  aspect-ratio: 3.375 / 2.125;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 60px rgba(0,0,0,0.6),
    0 0 60px rgba(201,168,76,0.12);
  animation: card-float 6s ease-in-out infinite;
  &::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: var(--gradient-iridescent);
    background-size: 300% 300%;
    animation: shimmer 5s ease infinite;
    opacity: 0.18;
    mix-blend-mode: overlay;
  }
}
.hero__showcase-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__showcase-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.hero__showcase-card--placeholder {
  background: var(--color-surface-2);
  display: flex; align-items: center; justify-content: center;
}
.hero__showcase-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--color-text-faint); font-size: 12px; text-align: center; padding: 16px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: 24px;
}
.trust-bar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  &:hover { background: var(--color-surface-2); }
}
.trust-bar__icon {
  flex-shrink: 0; color: var(--color-accent);
  width: 28px; height: 28px;
}
.trust-bar__text { display: flex; flex-direction: column; gap: 2px; }
.trust-bar__title { font-size: 14px; font-weight: 700; }
.trust-bar__sub { font-size: 13px; color: var(--color-text-muted); }

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.product-grid {
  display: grid; gap: 14px;
  &--2-col { grid-template-columns: repeat(2, 1fr); }
  &--3-col { grid-template-columns: repeat(3, 1fr); }
  &--4-col { grid-template-columns: repeat(4, 1fr); }
  &--5-col { grid-template-columns: repeat(5, 1fr); }
  &--6-col { grid-template-columns: repeat(6, 1fr); }
}

/* â”€â”€ Compact grid variants (kept for collection pages) â”€â”€ */
.product-grid--5-col { grid-template-columns: repeat(5, 1fr); }
.product-grid--6-col { grid-template-columns: repeat(6, 1fr); }

/* ============================================================
   BEST SELLERS â€” credit-card landscape grid
   ============================================================ */
/* ===== Slick Carousel — structural (from slick.css) ===== */
.slick-slider{position:relative;display:block;box-sizing:border-box;user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}
.slick-list.dragging{cursor:grab}
.slick-slider .slick-track,.slick-slider .slick-list{transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}
.slick-track::before,.slick-track::after{display:table;content:''}
.slick-track::after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left;height:100%;min-height:1px}
.slick-slide img{display:block}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-arrow.slick-hidden{display:none}

/* ===== Slick Theme — ShinySwipe branded (replaces slick-theme.css) ===== */
/* Custom arrow buttons */
.ss-slick-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(12,10,22,0.88);
  border: 1px solid rgba(232,192,96,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #e8c060;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  padding: 0;
}
.ss-slick-arrow:hover {
  background: rgba(232,192,96,0.12);
  border-color: rgba(232,192,96,0.65);
  box-shadow: 0 0 14px rgba(232,192,96,0.22);
}
.ss-slick-arrow svg { width: 15px; height: 15px; pointer-events: none; }
.ss-slick-prev { left: -17px; }
.ss-slick-next { right: -17px; }

/* Dot navigation */
.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.slick-dots li { width: auto; height: auto; margin: 0; }
.slick-dots li button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none; padding: 0; cursor: pointer; font-size: 0;
  transition: all 0.22s;
}
.slick-dots li button::before { display: none; }
.slick-dots li.slick-active button {
  background: #e8c060;
  width: 20px;
  border-radius: 4px;
}

.bs__container { }

.bs__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.bs__title {
  font-size: clamp(16px, 2vw, 22px); font-weight: 800; color: var(--color-text);
}
.bs__view-all {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--color-text-muted);
  text-decoration: none; transition: color var(--transition-fast);
  white-space: nowrap;
  &:hover { color: var(--color-accent); }
}

/* 8-column auto-fill grid â€” each card ~credit-card sized */
.bs__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.bs__card {
  display: block; text-decoration: none; color: inherit;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  &:hover {
    border-color: rgba(201,168,76,0.45);
    box-shadow: 0 4px 20px rgba(0,0,0,0.45), 0 0 12px rgba(201,168,76,0.1);
  }
  &:hover .bs__overlay { opacity: 1; }
  &:hover .bs__img     { transform: scale(1.04); }
}

/* Credit-card landscape ratio: 85.6 Ã· 54 â‰ˆ 1.587 â†’ use 8/5 */
.bs__img-wrap {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--color-surface-2);
}
.bs__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.bs__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, #130e28, #1e1540);
}

.bs__badge {
  position: absolute; top: 6px; left: 6px; z-index: 2;
  font-size: 9px; font-weight: 800; letter-spacing: .04em;
  padding: 2px 7px; border-radius: 20px; text-transform: uppercase;
}
.bs__badge--sale { background: var(--color-accent); color: #000; }

.bs__overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.bs__atc {
  background: var(--gradient-iridescent);
  background-size: 250% 250%;
  animation: shimmer 4s ease infinite;
  color: #000; font-size: 10px; font-weight: 800;
  padding: 5px 14px; border-radius: 20px; border: none; cursor: pointer;
  letter-spacing: .04em;
}

/* Info row */
.bs__info {
  padding: 6px 8px 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
}
.bs__name {
  font-size: 10px; font-weight: 600; color: var(--color-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0;
}
.bs__price {
  font-size: 11px; font-weight: 800; color: var(--color-accent);
  flex-shrink: 0; white-space: nowrap;
}
.bs__price--sale { color: var(--color-accent); }

/* Toast */
.bs-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(60px);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 20px; padding: 10px 20px;
  font-size: 13px; font-weight: 600; color: var(--color-text);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg); z-index: 400;
  opacity: 0; transition: all var(--transition-base);
  pointer-events: none;
  span:first-child { color: var(--color-success); font-size: 15px; }
  &.show { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.product-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.3);
    .product-card__quick-add { opacity: 1; transform: translateY(0); }
  }
}
.product-card__media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--color-surface-2);
}
.product-card__media-link { display: block; }
.product-card__image {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity var(--transition-base);
}
.product-card__image--primary { position: absolute; inset: 0; opacity: 1; }
.product-card__image--secondary { position: absolute; inset: 0; opacity: 0; }
.product-card__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-faint);
}
.product-card__badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; z-index: 1;
}
.product-badge {
  display: inline-flex; padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1;
}
.product-badge--sale { background: var(--color-accent); color: #000; }
.product-badge--sold-out { background: rgba(0,0,0,0.65); color: #fff; border: 1px solid var(--color-border); }
.product-badge--new { background: var(--color-success); color: #000; }

.product-card__quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gradient-iridescent);
  background-size: 250% 250%;
  animation: shimmer 5s ease infinite;
  color: #000; font-weight: 700; font-size: 13px;
  padding: 12px;
  text-align: center; text-decoration: none;
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  border: none; cursor: pointer; width: 100%;
}

/* Holographic sweep overlay â€” wraps product media containers */
.product-card__media,
.ygo-tile__media,
.ac-tile__media {
  position: relative; overflow: hidden;
}
.product-card__media::after,
.ygo-tile__media::after,
.ac-tile__media::after {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,220,100,0.18) 47%,
    rgba(180,100,255,0.18) 52%,
    rgba(80,200,255,0.18) 57%,
    transparent 68%
  );
  opacity: 0;
  transform: translateX(-120%) skewX(-20deg);
  transition: opacity .1s;
}
.product-card:hover .product-card__media::after,
.ygo-tile:hover .ygo-tile__media::after,
.ac-tile:hover .ac-tile__media::after {
  animation: holo-sweep 1.1s ease forwards;
  opacity: 1;
}

.product-card__info { padding: 12px 14px; }
.product-card__rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.product-card__review-count,
.product-card__rating-val { font-size: 11px; color: var(--color-text-muted); }
.product-card__google-review {
  display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 8px; text-decoration: none;
}
.product-card__google-review__stars { color: #FBBC04; font-size: 11px; letter-spacing: -0.5px; line-height: 1; }
.product-card__google-review__score { font-size: 11px; font-weight: 700; color: var(--color-text); }
.product-card__google-review__count { font-size: 11px; color: var(--color-text-muted); }
.product-card__title {
  display: block; font-size: 14px; font-weight: 600; line-height: 1.3;
  color: var(--color-text); margin-bottom: 8px;
  &:hover { color: var(--color-accent); }
}
.product-card__price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-card__price-regular { font-size: 16px; font-weight: 700; }
.product-card__price-sale { font-size: 16px; font-weight: 700; color: var(--color-accent); }
.product-card__price-compare { font-size: 13px; color: var(--color-text-faint); }
.product-card__low-stock {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--color-danger);
  margin-top: 8px;
  svg { animation: pulse-dot 1.5s ease infinite; }
}

.featured-collection__footer {
  display: flex; justify-content: center; margin-top: 48px;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-grid__items {
  display: grid; gap: 16px;
  &--2 { grid-template-columns: repeat(2, 1fr); }
  &--3 { grid-template-columns: repeat(3, 1fr); }
  &--4 { grid-template-columns: repeat(2, 1fr); }
}
.category-card { border-radius: var(--radius-lg); overflow: hidden; }
.category-card__inner {
  display: block; position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  &:hover {
    .category-card__image { transform: scale(1.06); }
    .category-card__cta { gap: 10px; }
  }
}
.category-card__media {
  position: absolute; inset: 0;
  background: var(--color-surface-2);
}
.category-card__image {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-faint);
}
.category-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.category-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; z-index: 1;
}
.category-card__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-accent-light); margin-bottom: 6px;
}
.category-card__title { font-size: clamp(18px, 3vw, 28px); font-weight: 800; margin-bottom: 4px; }
.category-card__count { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.category-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--color-accent-light);
  transition: gap var(--transition-fast);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--color-surface); }
.testimonials__aggregate {
  display: flex; align-items: center; gap: 10px; margin-top: 12px;
}
.testimonials__stars { display: flex; color: var(--color-accent); gap: 3px; }
.testimonials__aggregate-text { font-size: 14px; color: var(--color-text-muted); }

.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px;
}
.testimonial-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color var(--transition-base), transform var(--transition-base);
  &:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
}
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-card__quote {
  font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.85);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-card__reviewer {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.testimonial-card__avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-iridescent);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  color: #000; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__reviewer-info { flex: 1; }
.testimonial-card__author { display: block; font-size: 14px; font-weight: 700; }
.testimonial-card__location { font-size: 12px; color: var(--color-text-muted); }
.testimonial-card__verified {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: var(--color-success);
}
.testimonial-card__product { margin-top: 16px; }
.testimonial-card__product-img {
  width: 56px; height: 56px; object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--color-bg); }
.newsletter__inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
  &::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
}
.newsletter__media { border-radius: var(--radius-lg); overflow: hidden; }
.newsletter__image { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.newsletter__title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; margin-top: 8px;
}
.newsletter__subtitle { font-size: 16px; color: var(--color-text-muted); margin-bottom: 20px; }
.newsletter__incentive {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--color-accent-light);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 10px 16px; border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.newsletter__field-group {
  display: flex; gap: 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 16px;
  transition: border-color var(--transition-fast);
  &:focus-within { border-color: var(--color-accent); }
}
.newsletter__input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 16px; color: var(--color-text);
  &::placeholder { color: var(--color-text-muted); }
}
.newsletter__submit { flex-shrink: 0; }
.newsletter__error { font-size: 13px; color: var(--color-danger); margin-top: 8px; }
.newsletter__disclaimer { font-size: 12px; color: var(--color-text-faint); margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0a0a0a; }

/* Main grid area */
.site-footer__main {
  border-top: 1px solid var(--color-border);
  padding-block: clamp(36px, 5vw, 56px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.2fr;
  gap: 32px 24px;
}

/* Brand column */
.site-footer__brand { display: flex; flex-direction: column; gap: 0; }
.site-footer__logo-img { height: 36px; width: auto; margin-bottom: 12px; }
.site-footer__logo-text {
  font-size: 20px; font-weight: 800; text-decoration: none;
  background: var(--gradient-iridescent);
  background-size: 250% 250%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
  display: inline-block; margin-bottom: 10px;
}
.site-footer__tagline { font-size: 13px; color: var(--color-text-muted); margin-bottom: 18px; line-height: 1.5; }
.site-footer__social { display: flex; gap: 8px; }
.site-footer__social-link {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md); border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  &:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(201,168,76,0.08); }
}

/* Link columns */
.site-footer__col { }
.site-footer__col-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-text);
  margin-bottom: 14px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 9px; list-style: none; }
.site-footer__link {
  font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color var(--transition-fast);
  &:hover { color: var(--color-text); }
}

/* Address */
.site-footer__address { display: flex; flex-direction: column; gap: 8px; }
.site-footer__address-text {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6;
}

/* Bottom bar */
.site-footer__bottom {
  background: #050505;
  border-top: 1px solid var(--color-border);
  padding-block: 16px;
}
.site-footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.site-footer__copyright { font-size: 12px; color: var(--color-text-faint); }
.site-footer__payment {
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  opacity: 0.7;
}
.payment-icon { height: 24px; width: auto; }

/* Responsive */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
  .site-footer__tagline { margin-bottom: 0; }
}
@media (max-width: 600px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-footer__brand { grid-column: 1 / -1; flex-direction: column; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed; inset: 0; z-index: 500;
  pointer-events: none;
  &[aria-hidden="false"] {
    pointer-events: all;
    .cart-drawer__overlay { opacity: 1; }
    .cart-drawer__panel { transform: translateX(0); }
  }
}
.cart-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6); opacity: 0;
  transition: opacity var(--transition-base);
}
.cart-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  animation: none;
}
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer__title { font-size: 16px; font-weight: 700; }
.cart-drawer__close { font-size: 24px; color: var(--color-text-muted); &:hover { color: var(--color-text); } }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-drawer__empty {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; padding: 48px 0; color: var(--color-text-muted);
}

.cart-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding-block: 16px;
  border-bottom: 1px solid var(--color-border);
  &:last-child { border-bottom: none; }
}
.cart-item__image { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-md); flex-shrink: 0; display: block; }
.cart-item__bundle-placeholder {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #130e28, #1e1540);
  border: 1px solid #2a2445;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.cart-item__details { flex: 1; min-width: 0; }
.cart-item__title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item__variant { font-size: 12px; color: var(--color-text-muted); margin-bottom: 6px; }
.cart-item__price { font-size: 14px; font-weight: 700; color: var(--color-accent); margin-bottom: 8px; }
.cart-item__bundle-cards { display: flex; flex-direction: column; gap: 3px; margin-bottom: 8px; }
.cart-item__bundle-card { font-size: 11px; color: #7870a0; display: flex; align-items: baseline; gap: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item__bundle-card-num { font-size: 10px; font-weight: 700; color: #5a5280; flex-shrink: 0; }
.cart-item__edit {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: #7850e0;
  text-decoration: none; padding: 4px 10px;
  border-radius: 6px; border: 1px solid rgba(120,80,224,.28);
  background: rgba(120,80,224,.07); transition: all .15s;
}
.cart-item__edit:hover { border-color: rgba(120,80,224,.55); background: rgba(120,80,224,.15); color: #a070ff; }
.cart-item__quantity { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-size: 16px; line-height: 1;
  transition: all var(--transition-fast);
  &:hover { border-color: var(--color-accent); color: var(--color-accent); }
}
.qty-value { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__remove { color: var(--color-text-faint); padding: 4px; &:hover { color: var(--color-danger); } }

.cart-drawer__footer { padding: 16px 24px; border-top: 1px solid var(--color-border); }
.cart-drawer__shipping-bar { margin-bottom: 16px; }
.cart-drawer__shipping-bar p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 8px; }
.shipping-progress {
  height: 4px; background: var(--color-border); border-radius: var(--radius-full); overflow: hidden;
}
.shipping-progress__fill {
  height: 100%; border-radius: var(--radius-full);
  background: var(--gradient-iridescent);
  transition: width 0.5s ease;
}
.cart-drawer__bundle-nudge {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding: 11px 14px;
  border-radius: 12px; text-decoration: none;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(232,121,249,.08));
  border: 1px solid rgba(201,168,76,.35);
  color: var(--color-text);
  font-size: 13px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  box-shadow: 0 0 12px rgba(201,168,76,.12);
}
.cart-drawer__bundle-nudge:hover {
  border-color: rgba(201,168,76,.65);
  box-shadow: 0 0 20px rgba(201,168,76,.25);
  background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(232,121,249,.12));
}
.cart-drawer__bundle-nudge strong { color: #f0d060; }
.cart-drawer__bundle-nudge svg { margin-left: auto; flex-shrink: 0; color: #c9a84c; }
.cart-drawer__bundle-nudge__icon { font-size: 18px; flex-shrink: 0; }
.cart-drawer__bundle-nudge--free {
  background: linear-gradient(135deg, rgba(52,211,153,.12), rgba(201,168,76,.10));
  border-color: rgba(52,211,153,.4);
  box-shadow: 0 0 14px rgba(52,211,153,.15);
  animation: nudge-free-pulse 2.5s ease-in-out infinite;
}
.cart-drawer__bundle-nudge--free:hover {
  border-color: rgba(52,211,153,.7);
  box-shadow: 0 0 22px rgba(52,211,153,.3);
  background: linear-gradient(135deg, rgba(52,211,153,.18), rgba(201,168,76,.14));
}
.cart-drawer__bundle-nudge--free strong { color: #34d399; }
.cart-drawer__bundle-nudge--free svg { color: #34d399; }
@keyframes nudge-free-pulse {
  0%,100% { box-shadow: 0 0 14px rgba(52,211,153,.15); }
  50%      { box-shadow: 0 0 24px rgba(52,211,153,.35), 0 0 8px rgba(240,208,96,.2); }
}
.cart-drawer__shipping-unlocked { font-size: 13px; font-weight: 600; color: var(--color-success); margin-bottom: 12px; }
.cart-drawer__tracked-unlocked { font-size: 13px; font-weight: 600; color: #c9a84c; margin-bottom: 16px; }
.cart-drawer__shipping-bar--gold p { color: #c9a84c !important; }
.shipping-progress__fill--gold {
  background: linear-gradient(90deg, #c9a84c, #f0d060, #e8c040, #c9a84c);
  background-size: 200% auto;
  animation: shimmer 4s ease infinite;
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 700; margin-bottom: 6px;
}
.cart-drawer__total { color: var(--color-accent); }
.cart-drawer__tax-note { font-size: 12px; color: var(--color-text-faint); margin-bottom: 12px; }
.cart-drawer__footer .btn + .btn { margin-top: 8px; }

/* ── Drawer policy checkbox ── */
.drawer-policy {
  display: flex; align-items: flex-start; gap: 9px;
  cursor: pointer; margin-bottom: 12px; padding: 10px 11px;
  border-radius: 10px; border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03); transition: border-color .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-policy--checked {
  border-color: rgba(56,189,248,.35);
  background: rgba(56,189,248,.05);
}
.drawer-policy input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.drawer-policy__box {
  flex-shrink: 0; margin-top: 1px; width: 16px; height: 16px;
  border-radius: 4px; border: 1.5px solid rgba(255,255,255,.22);
  background: transparent; display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.drawer-policy--checked .drawer-policy__box { background: #38bdf8; border-color: #38bdf8; }
.drawer-policy__box::after {
  content: ''; display: none;
  width: 4px; height: 8px;
  border: 2px solid #0c0b14; border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.drawer-policy--checked .drawer-policy__box::after { display: block; }
.drawer-policy__text { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.6; }
.drawer-policy__text strong { color: rgba(255,255,255,.75); font-weight: 700; }
.btn--policy-locked { opacity: .38 !important; cursor: not-allowed !important; pointer-events: none; }
@keyframes drawer-policy-shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
.drawer-policy--shake { animation: drawer-policy-shake 0.4s ease; border-color: rgba(248,113,113,.55) !important; }

/* ============================================================
   PRODUCT MARQUEE
   ============================================================ */
.pmarq { padding-block: 0; }

.pmarq__header {
  padding-block: clamp(24px, 3vw, 40px) 0;
  text-align: center;
}
.pmarq__title {
  font-size: clamp(20px, 3vw, 32px); font-weight: 800; margin-top: 6px;
}

/* Outer clip: hides horizontal overflow without using overflow:hidden
   so card glow/border effects aren't cut off vertically */
.pmarq__clip {
  position: relative;
  overflow: hidden;          /* clips the scrolling track left/right */
  padding-block: 20px;       /* breathing room — glow stays visible */
  margin-block: -20px;       /* cancel out the extra space in layout */
  touch-action: pan-y;       /* let browser own vertical scroll; JS owns horizontal */
}

/* Left/right fade overlays */
.pmarq__fade-left,
.pmarq__fade-right {
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.pmarq__fade-left  {
  left: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}
.pmarq__fade-right {
  right: 0;
  background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

/* Single track â€” ONE list, items duplicated inside for seamless loop */
.pmarq__track {
  display: flex;
  gap: 16px;
  list-style: none;
  width: max-content;        /* expands to fit all items naturally */
  animation: pmarq-scroll var(--pmarq-speed, 40s) linear infinite;
  will-change: transform;
}

/* Pause on hover — desktop only. Touch devices trigger :hover on tap and
   never clear it, which would freeze the marquee after every touch. */
@media (hover: hover) and (pointer: fine) {
  .pmarq__clip:hover .pmarq__track {
    animation-play-state: paused;
  }
}

@keyframes pmarq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--pmarq-end, -50%)); }
}

.pmarq__item { flex-shrink: 0; }

.pmarq__card {
  display: block; text-decoration: none; color: inherit;
  width: 156px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* No translateY â€” avoids overlap with neighbours */
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  &:hover {
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 0 0 1px rgba(201,168,76,0.2),
                0 8px 28px rgba(0,0,0,0.55),
                0 0 18px rgba(201,168,76,0.12);
  }
}

.pmarq__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface-2);
}
.pmarq__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
  .pmarq__card:hover & { transform: scale(1.04); }
}
.pmarq__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, #130e28 0%, #1e1540 100%);
}
.pmarq__holo-sweep {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,220,100,0.22) 47%,
    rgba(180,100,255,0.22) 52%,
    rgba(80,200,255,0.22) 57%,
    transparent 68%
  );
  transform: translateX(-120%) skewX(-20deg);
  opacity: 0;
  .pmarq__card:hover & {
    animation: holo-sweep 1s ease forwards;
    opacity: 1;
  }
}

.pmarq__info {
  padding: 10px 12px 12px;
  border-top: 1px solid var(--color-border);
}
.pmarq__name {
  font-size: 12px; font-weight: 600; color: var(--color-text);
  line-height: 1.3; margin-bottom: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pmarq__price {
  font-size: 13px; font-weight: 800; color: var(--color-accent);
  display: flex; align-items: baseline; gap: 5px;
}
.pmarq__price-sale    { color: var(--color-accent); }
.pmarq__price-compare { font-size: 11px; color: var(--color-text-faint); text-decoration: line-through; font-weight: 400; }

/* ============================================================
   COLLECTION PAGE (all & franchise pages)
   ============================================================ */
.coll-page { padding-bottom: 64px; background: var(--color-bg); }

/* Header */
.coll-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0 0;
  margin-bottom: 28px;
}
.coll-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-bottom: 16px;
}
.coll-header__left { display: flex; align-items: baseline; gap: 10px; }
.coll-header__title {
  font-size: clamp(18px, 3vw, 28px); font-weight: 800; color: var(--color-text);
}
.coll-header__count {
  font-size: 13px; color: var(--color-text-faint); font-weight: 500;
}

/* Sort dropdown */
.coll-sort { display: flex; align-items: center; gap: 10px; }
.coll-sort__label { font-size: 13px; color: var(--color-text-muted); white-space: nowrap; }
.coll-sort__wrap {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
  &:hover { border-color: var(--color-accent); }
  &:focus-within { border-color: var(--color-accent); }
}
.coll-sort__select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: none; outline: none;
  padding: 9px 38px 9px 14px;
  font-size: 13px; font-weight: 600; color: var(--color-text);
  cursor: pointer; min-width: 160px;
  font-family: var(--font-body);
}
.coll-sort__select option { background: #1a1a2e; color: var(--color-text); }
.coll-sort__icon {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--color-text-muted);
}

/* Franchise filter pills */
.coll-filters {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding-bottom: 16px;
}
.coll-filter-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted); text-decoration: none;
  transition: all var(--transition-fast);
  &:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(201,168,76,0.06); }
  &.active {
    background: var(--gradient-iridescent);
    background-size: 250% 250%;
    animation: shimmer 5s ease infinite;
    color: #000; border-color: transparent; font-weight: 700;
  }
}

/* â”€â”€ Product grid: 5 columns â”€â”€ */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

/* Card */
.coll-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), transform var(--transition-base), box-shadow var(--transition-base);
  &:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
    .coll-card__hover { opacity: 1; }
  }
}
.coll-card__media {
  position: relative; aspect-ratio: 3 / 4;
  overflow: hidden; background: var(--color-surface-2);
}
.coll-card__img-link { display: block; }
.coll-card__img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  padding: 6px;
}
.coll-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #130e28, #1e1540);
}
.coll-card__badges {
  position: absolute; top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px; z-index: 1;
}
.coll-badge {
  font-size: 10px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 20px;
  line-height: 1;
}
.coll-badge--sale { background: var(--color-accent); color: #000; }
.coll-badge--new  { background: var(--color-success); color: #000; }

.coll-card__hover {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: stretch;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition-fast);
}
.coll-card__atc {
  width: 100%;
  background: var(--gradient-iridescent);
  background-size: 250% 250%;
  animation: shimmer 5s ease infinite;
  color: #000; font-size: 12px; font-weight: 800;
  padding: 9px 12px; border-radius: var(--radius-md);
  border: none; cursor: pointer; text-align: center;
  text-decoration: none; display: block;
  letter-spacing: .03em;
  transition: opacity .15s;
  &:disabled { opacity: .6; }
}

.coll-card__body {
  padding: 8px 10px 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.coll-card__title {
  flex: 1; min-width: 0;
  font-size: 12px; font-weight: 600;
  color: var(--color-text); line-height: 1.35;
  text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  &:hover { color: var(--color-accent); }
}
.coll-card__price {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-end; gap: 1px;
  font-size: 13px; font-weight: 800; color: var(--color-accent);
}
@keyframes sale-pulse {
  0%, 100% { color: var(--color-accent); text-shadow: 0 0 8px rgba(201,168,76,0.4); }
  50%       { color: var(--color-accent-light); text-shadow: 0 0 18px rgba(232,201,122,0.85); }
}
.coll-card__price--sale {
  color: var(--color-accent);
  animation: sale-pulse 2s ease-in-out infinite;
}
.coll-card__price--compare {
  font-size: 10px; color: var(--color-text-faint);
  text-decoration: line-through; font-weight: 400;
}

/* â”€â”€ Pagination â”€â”€ */
.coll-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding-top: 32px; flex-wrap: wrap;
}
.coll-pagination__btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); color: var(--color-text-muted);
  text-decoration: none; transition: all var(--transition-fast);
  &:hover:not(.coll-pagination__btn--disabled) { border-color: var(--color-accent); color: var(--color-accent); }
}
.coll-pagination__btn--disabled { opacity: 0.3; pointer-events: none; }
.coll-pagination__pages { display: flex; gap: 4px; }
.coll-pagination__page {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 6px;
  border-radius: var(--radius-md); font-size: 13px; font-weight: 600;
  text-decoration: none; color: var(--color-text-muted);
  background: transparent; border: 1px solid transparent;
  transition: all var(--transition-fast);
  &:hover { background: var(--color-surface); border-color: var(--color-border); color: var(--color-text); }
}
.coll-pagination__page--current {
  background: var(--gradient-iridescent);
  background-size: 200% 200%; animation: shimmer 4s ease infinite;
  color: #000; font-weight: 800; border-color: transparent;
}
.coll-pagination__page--ellipsis { color: var(--color-text-faint); pointer-events: none; }

/* Empty state */
.coll-empty {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 80px 0; text-align: center; color: var(--color-text-muted);
}

/* Toast */
.coll-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(60px);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 20px; padding: 10px 20px;
  font-size: 13px; font-weight: 600; color: var(--color-text);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg); z-index: 400;
  opacity: 0; transition: all var(--transition-base);
  pointer-events: none;
  &.show { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.coll-toast__icon { color: var(--color-success); }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) { .coll-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .coll-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 480px)  {
  .coll-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .coll-header__row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .product-grid--6-col { grid-template-columns: repeat(5, 1fr); }
  .bs__grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 1024px) {
  .trust-bar__list { grid-template-columns: repeat(2, 1fr); }
  .product-grid--4-col { grid-template-columns: repeat(3, 1fr); }
  .product-grid--5-col,
  .product-grid--6-col { grid-template-columns: repeat(4, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .newsletter__media { display: none; }
  .bs__grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
  .site-nav, .site-header__search { display: none; }
  .site-header__menu-toggle { display: flex; }
  .product-grid--3-col,
  .product-grid--4-col { grid-template-columns: repeat(2, 1fr); }
  .product-grid--5-col,
  .product-grid--6-col { grid-template-columns: repeat(3, 1fr); }
  .category-grid__items--3,
  .category-grid__items--4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__layout { grid-template-columns: 1fr; }
  .hero__showcase { display: none; }
  .hero__text { text-align: center; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__franchise-pills { gap: 8px; justify-content: center; }
  .franchise-pill { padding: 11px 22px; min-height: 50px; font-size: 14px; }
  .franchise-pill__logo { height: 28px; }
  .bs__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .trust-bar__list { grid-template-columns: repeat(2, 1fr); }
  .product-grid--2-col,
  .product-grid--3-col,
  .product-grid--4-col,
  .product-grid--5-col,
  .product-grid--6-col { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-grid__items { grid-template-columns: 1fr !important; }
  .category-card__inner { aspect-ratio: 3 / 1; }
  .category-card__content { padding: 14px 16px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .announcement-bar__message--secondary { display: none; }
  /* H6: 2-col bestsellers + legible text at small screens */
  .bs__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bs__info { padding: 5px 6px 6px; }
  .bs__name { font-size: 12px; }
  .bs__price { font-size: 13px; }
  .bs__badge { display: none; }
}

/* ============================================================
   REDUCED MOTION / LOW-END DEVICE GUARD
   CSS handles prefers-reduced-motion immediately (before JS).
   .ss-lite is added by shinyswipe.js for navigator.deviceMemory < 4.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  /* Stop all infinite decorative animations */
  .hero__showcase-card,
  .hsc-spin-ring::after,
  .hero__showcase-shine,
  .franchise-pill,
  .pmarq__track,
  .cart-drawer__bundle-nudge--free,
  .coll-card__price--sale,
  .low-stock svg { animation: none !important; }

  /* Kill holographic sweeps */
  .pmarq__holo-sweep { opacity: 0 !important; }
  .ygo-tile:hover .ygo-tile__media::after,
  .ac-tile:hover .ac-tile__media::after { animation: none !important; opacity: 0 !important; }

  /* Instant transitions site-wide */
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Low-end device (JS-detected, mirrors the rules above) */
.ss-lite .franchise-pill,
.ss-lite .pmarq__track,
.ss-lite .cart-drawer__bundle-nudge--free,
.ss-lite .coll-card__price--sale,
.ss-lite .low-stock svg { animation: none !important; }

.ss-lite .pmarq__holo-sweep { opacity: 0 !important; }
.ss-lite .ygo-tile:hover .ygo-tile__media::after,
.ss-lite .ac-tile:hover .ac-tile__media::after { animation: none !important; opacity: 0 !important; }

/* Also stop shimmer on interactive elements and freeze compositing layers */
.ss-lite .btn--primary,
.ss-lite .bs__atc,
.ss-lite .product-card__quick-add,
.ss-lite .coll-card__atc,
.ss-lite .coll-filter-pill.active,
.ss-lite .coll-pagination__page--current,
.ss-lite .shipping-progress__fill--gold,
.ss-lite .testimonial-card__avatar-placeholder,
.ss-lite .site-header__logo-text,
.ss-lite .site-footer__logo-text,
.ss-lite .hero__heading-highlight { animation: none !important; background-size: 100% 100% !important; }

.ss-lite .announcement-bar__track,
.ss-lite .pmarq__track { will-change: auto; }

/* M17: Remove orbs from render tree entirely — static blur() still forces a GPU layer */
.ss-lite .ss-orb--1,
.ss-lite .ss-orb--2,
.ss-lite .ss-orb--3,
.ss-lite .ss-orb--4 { display: none !important; }

/* Drop backdrop-filter on mobile — biggest GPU drain on older iOS */
.ss-lite .site-header {
  background: rgba(10,10,10,0.98) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ============================================================
   MOBILE PERFORMANCE — pure-CSS guard (works before JS fires,
   and catches browsers where navigator.deviceMemory is undefined)
   ============================================================ */
@media (max-width: 768px) {
  .site-header {
    background: rgba(10,10,10,0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .btn--primary,
  .bs__atc,
  .product-card__quick-add,
  .coll-card__atc,
  .coll-filter-pill.active,
  .coll-pagination__page--current,
  .shipping-progress__fill--gold,
  .testimonial-card__avatar-placeholder { animation: none; background-size: 100% 100%; }

  .site-header__logo-text,
  .site-footer__logo-text,
  .hero__heading-highlight { animation: none; background-size: 100% 100%; }

  .hero__eyebrow { display: none; }
  .hero__franchise-pills .franchise-pill { animation: none; }

  .coll-card__price--sale,
  .cart-drawer__bundle-nudge--free { animation: none; }

  .product-card:hover .product-card__media::after,
  .ygo-tile:hover .ygo-tile__media::after,
  .ac-tile:hover .ac-tile__media::after { animation: none; opacity: 0; }

  .product-card:hover,
  .coll-card:hover,
  .testimonial-card:hover { transform: none; }

  .announcement-bar__track,
  .pmarq__track { will-change: auto; }

  /* H4: Sort select — prevents iOS viewport zoom on tap */
  .coll-sort__select { font-size: 16px; }

  /* H5: Cart quantity +/- buttons — minimum 44×44px tap target */
  .qty-btn { min-width: 44px; min-height: 44px; }

  /* M17: Hide blur orbs — static filter:blur() still creates GPU layers */
  .ss-orb--1, .ss-orb--2, .ss-orb--3, .ss-orb--4 { display: none; }


}
/* Touch devices: kill franchise pill rainbow animation — prevents
   half-line glitches caused by compositing the gradient border on mobile */
@media (hover: none), (pointer: coarse) {
  .franchise-pill { animation: none !important; }
}

/* ============================================================
   CUSTOMER ACCOUNT PAGES
   ============================================================ */
.cust-page {
  padding: 60px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cust-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 480px;
}
.cust-card--wide { max-width: 860px; }
@media (max-width: 600px) { .cust-card { padding: 24px 20px; } }

.cust-title { font-size: clamp(20px, 3vw, 26px); font-weight: 800; margin-bottom: 8px; }
.cust-subtitle { font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; line-height: 1.6; }

.cust-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.cust-label { font-size: 13px; font-weight: 700; color: var(--color-text); }
.cust-input, .cust-select {
  width: 100%; background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text); font-size: 16px;
  padding: 11px 14px; font-family: inherit;
  transition: border-color .15s;
}
.cust-input:focus, .cust-select:focus { outline: none; border-color: var(--color-accent); }

.cust-actions { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.cust-footer-links { margin-top: 18px; text-align: center; font-size: 13px; color: var(--color-text-muted); }
.cust-link { color: var(--color-accent-light); text-decoration: none; font-weight: 600; }
.cust-link:hover { text-decoration: underline; }

.cust-error {
  background: rgba(220,70,70,.1); border: 1px solid rgba(220,70,70,.3);
  border-radius: var(--radius-lg); padding: 12px 16px;
  color: #ff8a8a; font-size: 14px; margin-bottom: 20px;
}
.cust-error ul { margin: 4px 0 0; padding-left: 18px; }
.cust-success {
  background: rgba(60,180,100,.1); border: 1px solid rgba(60,180,100,.3);
  border-radius: var(--radius-lg); padding: 12px 16px;
  color: #6fe0a0; font-size: 14px; margin-bottom: 20px;
}

/* Dashboard */
.cust-section { margin-bottom: 32px; }
.cust-section-title {
  font-size: 15px; font-weight: 800; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--color-border);
}
.cust-meta { font-size: 13px; color: var(--color-text-muted); margin-bottom: 4px; }
.cust-header-row { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.cust-table-wrap { overflow-x: auto; }
.cust-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cust-table th {
  text-align: left; padding: 8px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-text-muted); border-bottom: 1px solid var(--color-border);
}
.cust-table td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; }
.cust-table tr:last-child td { border-bottom: none; }
.cust-table a { color: var(--color-accent-light); font-weight: 600; text-decoration: none; }
.cust-table a:hover { text-decoration: underline; }

.cust-tag {
  display: inline-block; padding: 3px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
}
.cust-tag--paid, .cust-tag--fulfilled   { background: rgba(52,211,153,.15); color: #34d399; }
.cust-tag--pending, .cust-tag--unfulfilled { background: rgba(251,191,36,.12); color: #fbbf24; }
.cust-tag--refunded, .cust-tag--voided  { background: rgba(220,70,70,.12); color: #ff8a8a; }

.cust-address {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 16px; margin-bottom: 12px;
  font-size: 14px; line-height: 1.7;
}
.cust-address-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.cust-btn-sm {
  padding: 6px 14px; font-size: 12px; font-weight: 700; border-radius: 8px;
  border: 1px solid var(--color-border); background: none;
  color: var(--color-text-muted); cursor: pointer; text-decoration: none;
  transition: background .15s, border-color .15s, color .15s; display: inline-block;
}
.cust-btn-sm:hover { background: rgba(255,255,255,.06); color: var(--color-text); border-color: rgba(255,255,255,.2); }
.cust-btn-sm--danger:hover { border-color: rgba(220,70,70,.4); color: #ff8a8a; }

.cust-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .cust-grid-2 { grid-template-columns: 1fr; } }

.cust-checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }

/* ── USD currency label — sale prices only ── */
[class*="-sale"]::after {
  content: " USD";
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
