/* ============================================
   DTF-Shirt / VisitYou – Design System
   Clean, Modern, Rot-Schwarz-Weiß
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors - LIGHT MODE DEFAULT */
  --clr-primary: #D40000;
  --clr-primary-dark: #A30000;
  --clr-primary-light: #FF2D2D;
  --clr-secondary: #009999;
  /* Cyan Accent */
  --clr-secondary-dark: #007A7A;
  --clr-secondary-light: #00CCCC;
  --clr-black: #F8F9FA;
  --clr-dark: #FFFFFF;
  --clr-dark-2: #F0F2F5;
  --clr-dark-3: #E4E6E9;
  --clr-white: #0A0A0A;
  --clr-offwhite: #1A1A1A;
  --clr-grey: #666666;
  --clr-grey-light: #444444;
  --clr-grey-dark: #AAAAAA;
  --clr-overlay: rgba(var(--rgb-white), 0.85);

  --rgb-white: 0, 0, 0;
  /* Replaced 255,255,255 */
  --rgb-black: 255, 255, 255;
  /* Replaced 0,0,0 */

  /* Gradient */
  --grad-primary: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  --grad-dark: linear-gradient(180deg, var(--clr-black) 0%, var(--clr-dark) 100%);

  /* Typography */
  --ff-heading: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(var(--rgb-black), 0.08);
  --shadow-md: 0 4px 20px rgba(var(--rgb-black), 0.12);
  --shadow-lg: 0 8px 40px rgba(var(--rgb-black), 0.18);
  --shadow-xl: 0 12px 60px rgba(var(--rgb-black), 0.25);
  --shadow-glow: 0 0 30px rgba(212, 0, 0, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-out);

  /* Layout */
  --max-width: 1280px;
  --header-h: 72px;
}

[data-theme="dark"] {
  --clr-primary: #D40000;
  --clr-primary-dark: #A30000;
  --clr-primary-light: #FF2D2D;
  --clr-secondary: #009999;
  /* Cyan Accent */
  --clr-secondary-dark: #007A7A;
  --clr-secondary-light: #00CCCC;
  --clr-black: #0A0A0A;
  --clr-dark: #1A1A1A;
  --clr-dark-2: #242424;
  --clr-dark-3: #2E2E2E;
  --clr-white: #FFFFFF;
  --clr-offwhite: #F5F5F5;
  --clr-grey: #888888;
  --clr-grey-light: #CCCCCC;
  --clr-grey-dark: #555555;
  --clr-overlay: rgba(var(--rgb-black), 0.7);

  --rgb-white: 255, 255, 255;
  --rgb-black: 0, 0, 0;

  --grad-primary: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  --grad-dark: linear-gradient(180deg, var(--clr-black) 0%, var(--clr-dark) 100%);

  --shadow-sm: 0 2px 8px rgba(var(--rgb-black), 0.08);
  --shadow-md: 0 4px 20px rgba(var(--rgb-black), 0.12);
  --shadow-lg: 0 8px 40px rgba(var(--rgb-black), 0.18);
  --shadow-xl: 0 12px 60px rgba(var(--rgb-black), 0.25);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-black);
  color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-body);
  color: var(--clr-white);
}

input,
select,
textarea {
  font-family: var(--ff-body);
}

/* ---------- Cookie Consent ---------- */
.cookie-consent,
.cookie-preferences {
  position: fixed;
  z-index: 10000;
}

.cookie-consent {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(var(--rgb-black), 0.92);
  color: var(--clr-white);
  border: 1px solid rgba(var(--rgb-white), 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

.cookie-consent__content {
  display: grid;
  gap: 8px;
}

.cookie-consent h2,
.cookie-preferences h2 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.cookie-consent p,
.cookie-preferences p,
.cookie-preferences small {
  color: var(--clr-grey-light);
  font-size: 0.92rem;
}

.cookie-consent a {
  width: max-content;
  color: var(--clr-primary-light);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions,
.cookie-preferences__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent__button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform var(--transition-base), background var(--transition-base);
}

.cookie-consent__button:hover {
  transform: translateY(-1px);
}

.cookie-consent__button--primary {
  background: var(--clr-primary);
  color: #fff;
}

.cookie-consent__button--secondary {
  background: rgba(var(--rgb-white), 0.12);
  color: var(--clr-white);
}

.cookie-consent__button--ghost {
  border: 1px solid rgba(var(--rgb-white), 0.2);
  color: var(--clr-white);
}

.cookie-manage-button {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999;
  min-height: 36px;
  padding: 0 12px;
  background: rgba(var(--rgb-black), 0.76);
  color: var(--clr-white);
  border: 1px solid rgba(var(--rgb-white), 0.18);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.cookie-preferences {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.56);
}

.cookie-preferences__panel {
  width: min(100%, 560px);
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--clr-dark);
  border: 1px solid rgba(var(--rgb-white), 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.cookie-preferences__form {
  display: grid;
  gap: 12px;
}

.cookie-preferences__category {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(var(--rgb-white), 0.06);
  border: 1px solid rgba(var(--rgb-white), 0.1);
  border-radius: var(--radius-sm);
}

.cookie-preferences__category input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--clr-primary);
}

.cookie-preferences__category span {
  display: grid;
  gap: 4px;
}

@media (max-width: 720px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 82px;
    display: grid;
  }

  .cookie-consent__actions,
  .cookie-preferences__actions {
    justify-content: stretch;
  }

  .cookie-consent__button {
    flex: 1 1 100%;
  }

  .cookie-manage-button {
    bottom: 82px;
  }
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2xl);
  text-shadow: 0 4px 20px rgba(var(--rgb-black), 0.5);
}

.section-title span {
  color: var(--clr-primary);
}

.accent {
  color: var(--clr-primary);
}

.text-center {
  text-align: center;
}

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

/* ---------- Reveal on Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: var(--sp-sm);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--sp-xl) * 2);
  max-width: var(--max-width);
  height: var(--header-h);
  z-index: 1000;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(var(--rgb-black), 0.6);
  border: 1px solid rgba(var(--rgb-white), 0.08);
  border-radius: var(--radius-full);
  transition: all var(--transition-slow);
}

.header.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  background: rgba(var(--rgb-black), 0.9);
  box-shadow: var(--shadow-xl);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.logo .logo-img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212, 0, 0, 0.4));
}

.logo .logo-text {
  color: var(--clr-white);
}

.logo .logo-accent {
  color: var(--clr-primary);
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  background: rgba(var(--rgb-white), 0.03);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--rgb-white), 0.05);
  flex-shrink: 1;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--sp-sm) 6px;
  color: var(--clr-grey-light);
  transition: color var(--transition-base);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--clr-primary);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--clr-white);
}

.nav-links a:hover::after {
  width: 80%;
}

.nav-links a.active {
  color: var(--clr-white);
}

.nav-links a.active::after {
  width: 80%;
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(var(--rgb-black), 0.05);
  border-radius: 50%;
  border: 1px solid rgba(var(--rgb-black), 0.1);
  color: var(--clr-white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.theme-toggle:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: scale(1.05);
  color: #fff;
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
}

/* Cart Icon */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(var(--rgb-white), 0.1);
  border-radius: 50%;
  border: 1px solid rgba(var(--rgb-white), 0.2);

  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.nav-cart:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: scale(1.05);
}

.nav-cart svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--clr-primary);
  color: #FFFFFF !important;
  /* Explicit white for contrast */
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 2px 8px rgba(var(--rgb-black), 0.3);
  border: 1.5px solid var(--clr-dark);
}

.cart-badge.show {
  transform: scale(1);
}

/* Header Phones */
.header-phones {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-right: var(--sp-xs);
  flex-shrink: 0;
}

.header-phones a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-white);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(var(--rgb-white), 0.05);
  border: 1px solid rgba(var(--rgb-white), 0.1);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.header-phones a svg {
  width: 14px;
  height: 14px;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.header-phones a span {
  line-height: 1;
}

.header-phones a small {
  color: #999;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

.header-phones a:hover {
  background: rgba(212, 0, 0, 0.1);
  border-color: rgba(212, 0, 0, 0.3);
  color: var(--clr-white);
}

/* Hide labels on narrower viewports to prevent "gequetscht" (squeezed) look */
@media (max-width: 1400px) {
  .header-phones a small {
    display: none;
  }
}

@media (max-width: 1250px) {
  .header-phones a span {
    display: none;
  }

  .header-phones a {
    padding: 8px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }

  .header-phones a svg {
    margin: 0;
    width: 18px;
    height: 18px;
  }

  .nav-links {
    gap: var(--sp-sm);
    padding: 4px 16px;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    padding: 10px 4px;
  }
}

@media (max-width: 1050px) {
  .header-phones {
    gap: var(--sp-xs);
  }

  .header-inner {
    padding: 0 var(--sp-md);
  }
}

/* Mobile Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  transition: var(--transition-base);
  border-radius: 2px;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* burger/nav mobile: moved to consolidated responsive section */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--sp-xl)) var(--sp-xl) var(--sp-xl);
  overflow: hidden;
  background: var(--clr-black);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.6;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(var(--rgb-black), 0.4) 0%,
      rgba(var(--rgb-black), 0.85) 60%,
      var(--clr-black) 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 0, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: -10%;
  z-index: 1;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  background: rgba(212, 0, 0, 0.12);
  border: 1px solid rgba(212, 0, 0, 0.3);
  border-radius: var(--radius-full);
  padding: var(--sp-xs) var(--sp-lg);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-primary-light);
  margin-bottom: var(--sp-xl);
  animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-lg);
  animation: fadeInUp 1s var(--ease-out) 0.4s both;
  color: var(--clr-white);
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  color: var(--clr-primary);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
  border-radius: 2px;
  animation: expandLine 1s var(--ease-out) 1.2s both;
}

@keyframes expandLine {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hero h1 .outline {
  color: rgba(var(--rgb-white), 0.35);
  font-weight: 400;
  font-style: italic;
  -webkit-text-stroke: none;
  transition: color 0.4s ease;
}

.hero h1 .outline:hover {
  color: var(--clr-white);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-grey-light);
  max-width: 550px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.7;
  animation: fadeInUp 1s var(--ease-out) 0.6s both;
  text-shadow: 0 2px 10px rgba(var(--rgb-black), 0.5);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(var(--rgb-white), 0.2), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), #ff1a1a);
  color: var(--clr-white);
  box-shadow: 0 6px 25px rgba(212, 0, 0, 0.4), inset 0 2px 0 rgba(var(--rgb-white), 0.2);
  border: 1px solid rgba(var(--rgb-white), 0.1);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(212, 0, 0, 0.6), inset 0 2px 0 rgba(var(--rgb-white), 0.2);
}

.btn-outline {
  border: 2px solid rgba(var(--rgb-white), 0.15);
  background: rgba(var(--rgb-white), 0.02);
  backdrop-filter: blur(10px);
  color: var(--clr-white);
}

.btn-outline:hover {
  border-color: var(--clr-white);
  background: var(--clr-white);
  color: var(--clr-black);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(var(--rgb-white), 0.15);
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SERVICES / USP BAR
   ============================================ */
.usp-bar {
  background: var(--clr-dark);
  border-top: 1px solid rgba(var(--rgb-white), 0.05);
  border-bottom: 1px solid rgba(var(--rgb-white), 0.05);
  padding: var(--sp-2xl) 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-xl);
}

.usp-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  border-radius: var(--radius-md);
  background: rgba(var(--rgb-white), 0.03);
  border: 1px solid rgba(var(--rgb-white), 0.05);
  transition: all var(--transition-base);
}

.usp-item:hover {
  background: rgba(212, 0, 0, 0.06);
  border-color: rgba(212, 0, 0, 0.2);
  transform: translateY(-2px);
}

.usp-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(212, 0, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-primary);
}

.usp-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.usp-text p {
  font-size: 0.8rem;
  color: var(--clr-grey);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  padding: var(--sp-4xl) 0;
  background: var(--clr-black);
}

/* Fast Category Filters */
.filter-bar {
  display: flex;
  gap: var(--sp-sm);
  overflow-x: auto;
  padding: 25px 20px;
  /* Padding allows box-shadow to render */
  margin: -25px -20px calc(var(--sp-2xl) - 25px) -20px;
  /* Negative margin offsets padding */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--clr-dark-2);
  border: 1px solid rgba(var(--rgb-white), 0.12);
  color: var(--clr-grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition-base);
  white-space: nowrap;
  outline: none;
  /* We use box-shadow for focus/active */
}

.filter-btn:hover {
  background: var(--clr-dark-3);
  color: var(--clr-offwhite);
  border-color: rgba(var(--rgb-white), 0.25);
  transform: translateY(-1px);
}

.filter-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--clr-black), 0 0 0 5px var(--clr-secondary);
}

.filter-btn.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #FFFFFF !important;
  /* Always white on red */
  box-shadow: 0 6px 20px rgba(212, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Search */
.search-bar {
  position: relative;
  margin-bottom: var(--sp-2xl);
  max-width: 500px;
}

.search-bar input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--clr-dark-2);
  border: 1px solid rgba(var(--rgb-white), 0.08);
  border-radius: var(--radius-full);
  color: var(--clr-white);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  outline: none;
}

.search-bar input::placeholder {
  color: var(--clr-grey);
}

.search-bar input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.15);
}

.search-bar svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--clr-grey);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-xl);
}

.product-card {
  background: rgba(var(--rgb-white), 0.02);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(var(--rgb-white), 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(var(--rgb-black), 0.6), 0 0 20px rgba(212, 0, 0, 0.15);
  border-color: rgba(212, 0, 0, 0.3);
  z-index: 2;
}

.product-card-img {
  position: relative;
  height: 320px;
  background: var(--clr-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--sp-lg);
}

.product-card-img img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
}

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

.product-badge {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card-body {
  padding: var(--sp-lg);
}

.product-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--sp-xs);
  transition: color var(--transition-base);
}

.product-card:hover .product-card-body h3 {
  color: var(--clr-primary);
}

.product-card-body .product-desc {
  font-size: 0.82rem;
  color: var(--clr-grey);
  margin-bottom: var(--sp-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
}

.product-quick-add {
  width: 40px;
  height: 40px;
  background: rgba(212, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.product-quick-add:hover {
  background: var(--clr-primary);
  transform: scale(1.1);
}

.product-quick-add svg {
  width: 18px;
  height: 18px;
}

/* No results */
.no-results {
  text-align: center;
  padding: var(--sp-4xl) 0;
  color: var(--clr-grey);
}

.no-results svg {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-lg);
  opacity: 0.3;
}

.no-results h3 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-sm);
  color: var(--clr-white);
}

/* ============================================
   PRODUCT DETAIL MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--rgb-black), 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Scroll Lock & Interaction Prevention */
body.modal-open {
  overflow: hidden !important;
  height: 100% !important;
  width: 100% !important;
  position: relative !important;
}

html.modal-open {
  overflow: hidden !important;
  height: 100% !important;
}


.modal {
  background: var(--clr-dark);
  border-radius: var(--radius-lg);
  max-width: 1050px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  border: 1px solid rgba(var(--rgb-white), 0.08);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  width: 40px;
  height: 40px;
  background: rgba(var(--rgb-white), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: var(--clr-primary);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  max-height: 90vh;
  overflow: hidden;
}

/* modal-grid mobile: moved to consolidated responsive section */
.modal-images {
  background: var(--clr-dark-2);
  padding: var(--sp-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 90vh;
  border-right: 1px solid rgba(var(--rgb-white), 0.05);
}

.modal-main-img {
  display: block;
  height: min(56vh, 560px);
  max-width: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-xl);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.modal-thumbs {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}

.modal-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--clr-dark-3);
  padding: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  overflow: hidden;
}

.modal-thumb.active,
.modal-thumb:hover {
  border-color: var(--clr-primary);
  background: var(--clr-white);
  transform: translateY(-2px);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-info {
  padding: var(--sp-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  overflow-y: auto;
  height: 90vh;
  background: var(--clr-dark);
}

.modal-info .modal-price {
  color: var(--clr-primary);
  line-height: 1.2;
}

.modal-info h2 {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-white);
}

.modal-info .modal-price {
  color: var(--clr-primary);
  margin-top: calc(var(--sp-sm) * -1);
}

.modal-info .modal-desc {
  font-size: 1rem;
  color: var(--clr-grey);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}

/* --- Modal Compact Layout Rows --- */
.modal-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.modal-header-row h2 {
  margin: 0;
  flex: 1;
  line-height: 1.2;
}

.modal-header-row .modal-price {
  margin: 0;
  white-space: nowrap;
}

/* Mengenrabatte Table in Modal */
.modal-discounts {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.modal-discounts label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-grey);
  letter-spacing: 0.05em;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}

.discount-item {
  background: var(--clr-dark-2);
  border: 1px solid rgba(var(--rgb-white), 0.08);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.discount-item:hover {
  background: var(--clr-dark-3);
  border-color: rgba(var(--rgb-white), 0.2);
  transform: translateY(-2px);
}

.discount-item.active {
  background: rgba(212, 0, 0, 0.1);
  border-color: var(--clr-primary);
  box-shadow: 0 0 10px rgba(212, 0, 0, 0.2);
}

.discount-qty {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-grey-light);
}

.discount-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-white);
}

.discount-item.active .discount-price {
  color: var(--clr-primary-light);
}

/* Design Note Field */
.modal-note {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.modal-note label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-grey);
  letter-spacing: 0.05em;
}

.modal-note textarea {
  width: 100%;
  min-height: 80px;
  background: var(--clr-dark-2);
  border: 1px solid rgba(var(--rgb-white), 0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  color: var(--clr-white);
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  transition: all var(--transition-base);
}

.modal-note textarea:focus {
  border-color: var(--clr-primary);
  outline: none;
  background: rgba(var(--rgb-white), 0.04);
}

.cart-item-note {
  font-size: 0.8rem;
  color: var(--clr-grey);
  margin-top: 4px;
  border-left: 2px solid var(--clr-primary);
  padding-left: 8px;
  font-style: italic;
}

.modal-options-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

.modal-action-row {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.modal-action-row .modal-quantity {
  flex-shrink: 0;
}

.modal-action-row .btn {
  flex: 1;
}

.modal-divider {
  height: 1px;
  background: rgba(var(--rgb-white), 0.06);
  border: none;
  margin: var(--sp-sm) 0;
}

.modal-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.modal-sizes label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: var(--sp-xs);
  width: 100%;
}

.size-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--clr-dark-2);
  border: 1px solid rgba(var(--rgb-white), 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.size-btn:hover {
  border-color: var(--clr-primary);
}

.size-btn.selected {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

/* ============================================
   COLOR SWATCHES – Product Cards
   ============================================ */
.product-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: var(--sp-sm);
  align-items: center;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(var(--rgb-white), 0.12);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  flex-shrink: 0;
}

.color-dot:hover {
  transform: scale(1.25);
  border-color: rgba(var(--rgb-white), 0.5);
  z-index: 2;
}

/* White color dot needs visible border */
.color-dot[style*="ffffff"],
.color-dot[style*="FFFFFF"] {
  border-color: rgba(var(--rgb-white), 0.3);
}

.color-dot.color-more {
  background: var(--clr-dark-3) !important;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--clr-grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 18px;
  border-radius: var(--radius-full);
  cursor: default;
}

.color-dot.color-more:hover {
  transform: none;
}

/* ============================================
   COLOR SWATCHES – Modal
   ============================================ */
.modal-colors {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.modal-colors label {
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.modal-colors .selected-color-name {
  color: var(--clr-primary);
  font-weight: 700;
}

.modal-color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: fit-content;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(var(--rgb-white), 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  padding: 0;
  outline: none;
}

.color-swatch:hover {
  transform: scale(1.15);
  border-color: rgba(var(--rgb-white), 0.5);
  z-index: 2;
}

.color-swatch.selected {
  border-color: var(--clr-white);
  box-shadow: 0 0 0 2px var(--clr-primary), 0 0 12px rgba(212, 0, 0, 0.4);
  transform: scale(1.1);
}

/* White swatch needs visible border */
.color-swatch[style*="ffffff"],
.color-swatch[style*="FFFFFF"] {
  border-color: rgba(var(--rgb-white), 0.3);
}

.color-swatch[style*="ffffff"].selected,
.color-swatch[style*="FFFFFF"].selected {
  border-color: var(--clr-white);
}

/* ============================================
   COLOR DOT – Cart Sidebar
   ============================================ */
.cart-color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--rgb-white), 0.2);
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
}

.modal-quantity {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.modal-quantity label {
  font-weight: 600;
  font-size: 0.85rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(var(--rgb-white), 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--clr-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background var(--transition-base);
}

.qty-btn:hover {
  background: var(--clr-dark-3);
}

.qty-value {
  width: 50px;
  height: 40px;
  text-align: center;
  background: var(--clr-dark-3);
  border: none;
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 600;
}

/* Print Position Selector */
.modal-positions {
  margin-top: var(--sp-sm);
}

.modal-positions>label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-sm);
}

.position-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.position-option {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 10px 14px;
  background: var(--clr-dark-2);
  border: 2px solid rgba(var(--rgb-white), 0.06);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.position-option:hover {
  border-color: rgba(212, 0, 0, 0.3);
  background: rgba(212, 0, 0, 0.04);
}

.position-option.selected {
  border-color: var(--clr-primary);
  background: rgba(212, 0, 0, 0.08);
}

.position-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.position-info {
  flex: 1;
  min-width: 0;
}

.position-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.position-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--clr-grey);
  margin-top: 1px;
}

.position-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-primary);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: var(--sp-4xl) 0;
  background: var(--clr-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-2xl);
  position: relative;
}

.step-card {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-lg);
  position: relative;
}

.step-number {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(212, 0, 0, 0.12);
  line-height: 1;
  margin-bottom: var(--sp-md);
  transition: all var(--transition-base);
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sp-lg);
  background: rgba(212, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.step-card:hover .step-icon {
  background: var(--clr-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}

.step-card:hover .step-number {
  color: var(--clr-primary);
  opacity: 1;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--clr-primary);
  transition: color var(--transition-base);
}

.step-card:hover .step-icon svg {
  color: var(--clr-white);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--clr-grey);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--sp-4xl) 0;
  background: var(--clr-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

/* contact-grid mobile: moved to consolidated responsive section */
.contact-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: var(--sp-lg);
}

.contact-info p {
  color: var(--clr-grey);
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--clr-dark);
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--rgb-white), 0.05);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.contact-detail span {
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  background: var(--clr-dark);
  border: 1px solid rgba(var(--rgb-white), 0.1);
  border-radius: var(--radius-md);
  color: var(--clr-white);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-secondary);
  box-shadow: 0 0 0 3px rgba(0, 153, 153, 0.2);
  background: rgba(var(--rgb-white), 0.02);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--clr-dark);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(var(--rgb-white), 0.08);
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--rgb-black), 0.6);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-xl);
  border-bottom: 1px solid rgba(var(--rgb-white), 0.08);
}

.cart-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-md);
}

.cart-item {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-md);
  border-bottom: 1px solid rgba(var(--rgb-white), 0.05);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: var(--clr-dark-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-item-info .cart-item-meta {
  font-size: 0.78rem;
  color: var(--clr-grey);
}

.cart-item-info .cart-item-price {
  color: var(--clr-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 4px;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--rgb-white), 0.05);
  flex-shrink: 0;
  align-self: center;
  transition: all var(--transition-base);
}

.cart-item-remove:hover {
  background: var(--clr-primary);
}

.cart-item-remove svg {
  width: 14px;
  height: 14px;
}

.cart-footer {
  padding: var(--sp-xl);
  border-top: 1px solid rgba(var(--rgb-white), 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--sp-lg);
}

.cart-total .total-price {
  color: var(--clr-primary);
}

.cart-empty {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-xl);
  color: var(--clr-grey);
}

.cart-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-md);
  opacity: 0.3;
}

/* ============================================
   CHECKOUT SECTION
   ============================================ */
.checkout-section {
  padding: calc(var(--header-h) + var(--sp-3xl)) 0 var(--sp-4xl);
  background: var(--clr-black);
  min-height: 100vh;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

/* checkout-grid mobile: moved to consolidated responsive section */
.checkout-form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

/* checkout-form-group mobile: moved to consolidated responsive section */
.checkout-summary {
  background: var(--clr-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  border: 1px solid rgba(var(--rgb-white), 0.06);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-xl));
}

.checkout-summary h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: var(--sp-lg);
  text-transform: uppercase;
}

.checkout-summary-items {
  border-bottom: 1px solid rgba(var(--rgb-white), 0.08);
  padding-bottom: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: var(--sp-sm);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--clr-dark-2);
  border: 2px solid rgba(var(--rgb-white), 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.payment-option:hover,
.payment-option.selected {
  border-color: var(--clr-primary);
  background: rgba(212, 0, 0, 0.06);
}

.payment-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--clr-grey);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.payment-option.selected .payment-radio {
  border-color: var(--clr-primary);
}

.payment-option.selected .payment-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--clr-primary);
  border-radius: 50%;
}

.payment-option span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-dark);
  border-top: 1px solid rgba(var(--rgb-white), 0.06);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}

/* footer-grid mobile: moved to consolidated responsive section */
.footer-brand .logo {
  margin-bottom: var(--sp-md);
}

.footer-brand p {
  color: var(--clr-grey);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-lg);
  color: var(--clr-white);
}

.footer ul li {
  margin-bottom: var(--sp-sm);
}

.footer ul a {
  font-size: 0.88rem;
  color: var(--clr-grey);
  transition: color var(--transition-base);
}

.footer ul a:hover {
  color: var(--clr-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(var(--rgb-white), 0.06);
  font-size: 0.8rem;
  color: var(--clr-grey);
  flex-wrap: wrap;
  gap: var(--sp-md);
}

/* ============================================
   SVG ANIMATION KEYFRAMES
   ============================================ */
@keyframes drawLine {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rotateSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.svg-animate {
  animation: floatUp 3s ease-in-out infinite;
}

/* ============================================
   Toast notification
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 5000;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--rgb-black), 0.9);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.success-overlay.open {
  opacity: 1;
  visibility: visible;
}

.success-content {
  text-align: center;
  max-width: 500px;
  padding: var(--sp-3xl);
}

.success-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  margin: 0 auto var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-check svg {
  width: 40px;
  height: 40px;
  color: #22c55e;
}

.success-content h2 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--sp-md);
}

.success-content p {
  color: var(--clr-grey-light);
  margin-bottom: var(--sp-2xl);
  line-height: 1.7;
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-dark-3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-primary);
}

/* ============================================
   FILE UPLOAD & CONFIGURATOR (PREMIUM UI/UX)
   ============================================ */
.premium-configurator {
  margin-top: var(--sp-md);
  background: rgba(var(--rgb-white), 0.02);
  border: 1px solid rgba(var(--rgb-white), 0.05);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
}

.segmented-control {
  display: flex;
  background: rgba(var(--rgb-black), 0.2);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 4px;
  margin-bottom: var(--sp-md);
}

.segment-btn {
  flex: 1;
  padding: 10px;
  border-radius: calc(var(--radius-md) - 2px);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-grey);
  transition: all var(--transition-base);
  text-align: center;
}

.segment-btn.active {
  background: rgba(var(--rgb-white), 0.1);
  color: var(--clr-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.segment-btn:hover:not(.active) {
  color: var(--clr-white);
  background: rgba(var(--rgb-white), 0.05);
}

.configurator-tab {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-dropzone {
  position: relative;
  border: 2px dashed rgba(var(--rgb-white), 0.15);
  border-radius: var(--radius-md);
  padding: var(--sp-2xl) var(--sp-lg);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropzone-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.premium-dropzone:hover {
  border-color: rgba(var(--rgb-white), 0.3);
}

.premium-dropzone:hover .dropzone-bg {
  opacity: 1;
}

.premium-dropzone.dragover {
  border-color: var(--clr-primary);
  transform: scale(1.02);
}

.premium-dropzone.dragover .dropzone-bg {
  opacity: 1;
  background: rgba(212, 0, 0, 0.1);
}

.dropzone-icon {
  width: 42px;
  height: 42px;
  color: var(--clr-grey);
  margin-bottom: var(--sp-sm);
  transition: color 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}

.premium-dropzone:hover .dropzone-icon,
.premium-dropzone.dragover .dropzone-icon {
  color: var(--clr-primary);
  transform: translateY(-4px);
}

.premium-dropzone p {
  font-size: 0.95rem;
  color: var(--clr-white);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.upload-browse {
  color: var(--clr-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted var(--clr-primary);
  transition: all 0.2s;
}

.upload-browse:hover {
  color: var(--clr-secondary);
  border-bottom-color: var(--clr-secondary);
}

.upload-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-grey);
  position: relative;
  z-index: 1;
}

.text-add-section {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.premium-input {
  width: 100%;
  padding: 12px;
  background: rgba(var(--rgb-black), 0.3);
  border: 1px solid rgba(var(--rgb-white), 0.1);
  border-radius: var(--radius-md);
  color: var(--clr-white);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  transition: all 0.3s;
}

.premium-input:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.15);
}

.text-controls-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.custom-select-wrapper {
  flex: 1;
  position: relative;
}

.premium-select {
  width: 100%;
  padding: 12px 36px 12px 14px;
  background: rgba(var(--rgb-black), 0.3);
  border: 1px solid rgba(var(--rgb-white), 0.1);
  border-radius: var(--radius-md);
  color: var(--clr-white);
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  min-width: 140px;
}

.color-picker-wrapper {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(var(--rgb-white), 0.1);
  flex-shrink: 0;
}

.premium-color-picker {
  width: 150%;
  height: 150%;
  margin-top: -25%;
  margin-left: -25%;
  cursor: pointer;
  padding: 0;
  border: none;
}

.feedback-pulse {
  animation: feedbackGlow 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes feedbackGlow {
  0% {
    filter: drop-shadow(0 0 0px var(--clr-primary));
  }

  50% {
    filter: drop-shadow(0 0 20px var(--clr-primary));
  }

  100% {
    filter: drop-shadow(0 0 0px var(--clr-primary));
  }
}

.upload-preview {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}

.upload-file {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-sm) var(--sp-md);
  background: var(--clr-dark-2);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--rgb-white), 0.06);
}

.upload-file-thumb {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
  background: var(--clr-dark-3);
  flex-shrink: 0;
}

.upload-file-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-dark-3);
  border-radius: 4px;
  flex-shrink: 0;
}

.upload-file-icon svg {
  width: 20px;
  height: 20px;
  color: var(--clr-primary);
}

.upload-file-info {
  flex: 1;
  min-width: 0;
}

.upload-file-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-file-size {
  display: block;
  font-size: 0.72rem;
  color: var(--clr-grey);
}

.upload-file-remove {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--rgb-white), 0.05);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.upload-file-remove:hover {
  background: var(--clr-primary);
}

.upload-file-remove svg {
  width: 12px;
  height: 12px;
}

/* Cart file badge */
.cart-item-files {
  font-size: 0.72rem;
  color: var(--clr-primary);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* Modal Position Selector */
.modal-positions {
  margin-bottom: var(--sp-md);
  padding: var(--sp-sm) 0;
}

.modal-positions label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-grey);
  margin-bottom: var(--sp-sm);
}

.modal-positions .custom-select-wrapper {
  position: relative;
}

.modal-positions .premium-select {
  background: rgba(var(--rgb-white), 0.03);
  border: 1px solid rgba(var(--rgb-white), 0.1);
  padding: 14px 16px;
  font-weight: 600;
  transition: all var(--transition-base);
}

.modal-positions .premium-select:hover {
  border-color: rgba(var(--rgb-white), 0.3);
  background: rgba(var(--rgb-white), 0.06);
}

.modal-positions .premium-select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(212, 0, 0, 0.1);
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz, etc.)
   ============================================ */
.legal-page {
  padding: calc(var(--header-h) + var(--sp-3xl)) 0 var(--sp-4xl);
  background: var(--clr-black);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: var(--sp-2xl);
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.legal-back:hover {
  opacity: 0.8;
}

.legal-back svg {
  width: 16px;
  height: 16px;
}

.legal-content h2 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  margin: var(--sp-xl) 0 var(--sp-md);
  color: var(--clr-primary);
}

.legal-card {
  background: rgba(var(--rgb-black), 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--rgb-white), 0.08);
  border-top: 1px solid rgba(var(--rgb-white), 0.15);
  border-radius: var(--radius-lg);
  padding: var(--sp-3xl);
  box-shadow: var(--shadow-xl);
}

.legal-grid-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
}

.legal-block {
  padding: var(--sp-xl);
  background: rgba(var(--rgb-white), 0.015);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-primary);
  transition: all var(--transition-base);
}

.legal-block:hover {
  background: rgba(var(--rgb-white), 0.03);
  transform: translateX(4px);
  border-left-color: var(--clr-secondary);
}

.legal-block h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-sm);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--clr-grey-light);
}

.legal-scroll-area {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: var(--sp-md);
  margin-top: var(--sp-lg);
}

.legal-scroll-area::-webkit-scrollbar {
  width: 6px;
}

.legal-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(var(--rgb-white), 0.1);
  border-radius: 10px;
}

.legal-scroll-area h3 {
  color: var(--clr-white);
  margin-top: var(--sp-lg);
}

.legal-alert {
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.withdrawal-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  margin: var(--sp-xl) 0;
  padding: var(--sp-lg);
  background: rgba(var(--rgb-white), 0.04);
  border: 1px solid rgba(var(--rgb-white), 0.12);
  border-left: 4px solid var(--clr-primary);
  border-radius: var(--radius-sm);
}

.withdrawal-action strong {
  display: block;
  margin-bottom: var(--sp-xs);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 1rem;
}

.withdrawal-action p {
  color: var(--clr-grey-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

.withdrawal-action__button {
  flex: 0 0 auto;
  min-width: 260px;
  white-space: normal;
  text-align: center;
}

.legal-content h2 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
  color: var(--clr-white);
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
  color: var(--clr-offwhite);
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--clr-grey-light);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.legal-content a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--clr-secondary);
  text-decoration-color: var(--clr-secondary);
}

.legal-content .legal-updated {
  font-size: 0.8rem;
  color: var(--clr-grey);
  margin-bottom: var(--sp-2xl);
}


/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   FOCUS STYLES (Accessibility)
   ============================================ */
*:focus-visible {
  outline: 2px solid var(--clr-secondary);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clr-secondary);
  outline-offset: 2px;
}

.btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(212, 0, 0, 0.4);
}

/* ============================================
   MOBILE CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px)) 20px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(var(--rgb-white), 0.08);
  box-shadow: 0 -10px 30px rgba(var(--rgb-black), 0.5);
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  animation: slideUp 0.6s var(--ease-out);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  text-align: center;
  padding: 0 10px;
}

.mobile-cta-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-cta-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mobile-cta-btn small {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: none;
  letter-spacing: 0;
}

.mobile-cta-btn.primary {
  background: var(--clr-primary);
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(212, 0, 0, 0.3);
}

.mobile-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF !important;
}

/* ============================================
   RESPONSIVE – TABLET (max-width: 1100px)
   ============================================ */
@media (max-width: 1100px) {
  .header-phones {
    display: none;
  }
}

/* ============================================
   RESPONSIVE – MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

  /* --- Mobile CTA Bar --- */
  .mobile-cta-bar {
    display: grid;
  }

  /* --- Header --- */
  .header {
    width: calc(100% - var(--sp-md) * 2);
    height: 60px;
    --header-h: 60px;
  }

  .header-inner {
    padding: 0 var(--sp-md);
  }

  .logo .logo-img {
    height: 28px;
  }

  /* --- Burger / Nav --- */
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    height: 100dvh;
    background: var(--clr-dark);
    flex-direction: column;
    padding: calc(60px + var(--sp-2xl)) var(--sp-2xl) var(--sp-2xl);
    gap: var(--sp-lg);
    transition: right var(--transition-slow);
    box-shadow: var(--shadow-xl);
    border-radius: 0;
    border: none;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: var(--sp-md) 0;
  }

  /* --- Hero --- */
  .hero {
    height: 100vh;
    height: 100dvh;
    padding: calc(60px + var(--sp-md)) var(--sp-md) var(--sp-xl);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-glow {
    width: 300px;
    height: 300px;
    top: 5%;
    right: -15%;
  }

  /* --- USP Bar --- */
  .usp-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .usp-bar {
    padding: var(--sp-xl) 0;
  }

  .usp-item {
    padding: var(--sp-md);
  }

  /* --- Products --- */
  .products-section {
    padding: var(--sp-2xl) 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    margin-bottom: var(--sp-xl);
  }

  .search-bar {
    max-width: 100%;
  }

  .filter-bar {
    gap: var(--sp-xs);
    margin-bottom: var(--sp-xl);
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
  }

  .product-card-img {
    height: 200px;
    padding: var(--sp-md);
  }

  .product-card-body {
    padding: var(--sp-md);
  }

  .product-card-body h3 {
    font-size: 0.9rem;
  }

  .product-card-body .product-desc {
    font-size: 0.75rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }

  .product-price {
    font-size: 0.9rem;
  }

  .product-quick-add {
    width: 36px;
    height: 36px;
  }

  .product-colors {
    gap: 3px;
  }

  .color-dot {
    width: 14px;
    height: 14px;
  }

  /* --- Product Modal (FULLSCREEN auf Mobile) --- */
  .modal-overlay {
    padding: 0;
    align-items: stretch;
    overflow: hidden;
  }

  .modal {
    max-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .modal-grid {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    flex: 1;
    gap: 0;
  }

  .modal-images {
    position: relative;
    height: auto;
    min-height: 250px;
    max-height: none;
    padding: var(--sp-3xl) var(--sp-md) var(--sp-lg) var(--sp-md);
    align-self: auto;
    flex-shrink: 0;
    overflow: hidden;
  }

  .modal-main-img {
    max-height: 200px;
  }

  .modal-thumbs {
    justify-content: center;
    flex-wrap: wrap;
  }

  .modal-thumb {
    width: 48px;
    height: 48px;
  }

  .modal-info {
    padding: var(--sp-lg) var(--sp-md) calc(var(--sp-xl) + 100px) var(--sp-md);
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
  }

  .modal-info h2 {
    font-size: 1.3rem;
  }

  .modal-info .modal-price {
    font-size: 1.2rem;
  }

  .modal-info .modal-desc {
    font-size: 0.88rem;
  }

  .modal-close {
    top: var(--sp-sm);
    right: var(--sp-sm);
    width: 44px;
    height: 44px;
    background: rgba(var(--rgb-black), 0.5);
    z-index: 20;
  }

  /* Modal Upload Touch-Optimierung */
  .upload-dropzone {
    padding: var(--sp-lg) var(--sp-md);
  }

  .upload-dropzone p {
    font-size: 0.82rem;
  }

  /* Modal Positions */
  .position-option {
    padding: 12px;
  }

  /* Modal Color Swatches – touch-friendly */
  .color-swatch {
    width: 36px;
    height: 36px;
  }

  .modal-color-grid {
    gap: 8px;
  }

  /* Modal Sizes – touch-friendly min-height 44px */
  .size-btn {
    padding: 10px 18px;
    min-height: 44px;
  }

  /* Modal Compact Layout – Mobile */
  .modal-options-row {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .modal-action-row {
    flex-direction: column;
    gap: var(--sp-sm);
  }

  .modal-action-row .btn {
    padding: 14px 16px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .modal-action-row .modal-quantity {
    width: 100%;
    justify-content: center;
  }

  .modal-header-row {
    gap: var(--sp-sm);
  }

  /* Modal Quantity – touch-friendly */
  .qty-btn {
    width: 48px;
    height: 48px;
  }

  .qty-value {
    height: 48px;
    width: 60px;
  }

  /* Modal Configurator – prevent overflow */
  .product-preview-container {
    overflow: hidden;
  }

  .print-area-wrapper {
    width: 70%;
  }

  .logo-controls {
    padding: var(--sp-sm);
  }

  .logo-controls-header {
    flex-wrap: wrap;
    gap: var(--sp-xs);
  }

  /* Upload section – prevent overflow */
  .upload-file {
    flex-wrap: wrap;
  }

  .upload-file-info {
    min-width: 0;
    max-width: calc(100% - 80px);
  }

  /* Text input in modal – prevent overflow */
  .text-add-section input,
  .text-add-section select {
    max-width: 100%;
    min-width: 0;
  }

  /* --- How It Works --- */
  .how-section {
    padding: var(--sp-2xl) 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .step-card {
    padding: var(--sp-xl) var(--sp-md);
  }

  .step-number {
    font-size: 2.5rem;
  }

  /* --- Contact --- */
  .contact-section {
    padding: var(--sp-2xl) 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .contact-info h3 {
    font-size: 1.2rem;
  }

  /* --- Checkout --- */
  .checkout-section {
    padding: calc(60px + var(--sp-xl)) 0 var(--sp-2xl);
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .checkout-summary {
    position: static;
  }

  .checkout-form-group {
    grid-template-columns: 1fr;
  }

  /* --- Footer --- */
  .footer {
    padding: var(--sp-2xl) 0 calc(var(--sp-md) + 90px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }

  /* --- Cart Sidebar --- */
  .cart-sidebar {
    width: 100%;
    max-width: 100vw;
    right: -100%;
    overflow-x: hidden;
  }

  .cart-sidebar.open {
    right: 0;
  }

  /* --- Toast (über Mobile CTA Bar) --- */
  .toast {
    bottom: 100px;
    right: var(--sp-md);
    left: var(--sp-md);
  }

  /* --- Legal Pages --- */
  .legal-page {
    padding: calc(60px + var(--sp-xl)) 0 var(--sp-2xl);
  }

  .legal-content {
    padding: 0 var(--sp-xs);
  }

  .withdrawal-action {
    align-items: stretch;
    flex-direction: column;
    gap: var(--sp-md);
  }

  .withdrawal-action__button {
    width: 100%;
    min-width: 0;
    padding-right: var(--sp-md);
    padding-left: var(--sp-md);
  }

  /* --- Container Padding --- */
  .container {
    padding: 0 var(--sp-md);
  }

  /* --- Success Overlay --- */
  .success-content {
    padding: var(--sp-xl);
  }

  .success-content h2 {
    font-size: 1.4rem;
  }
}

/* ============================================
   LOGO CONFIGURATOR 
   ============================================ */
.product-preview-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.print-area-wrapper {
  position: absolute;
  top: 15%;
  left: 20%;
  height: 65%;
  width: 60%;
  border: 1px dashed rgba(var(--rgb-white), 0.4);
  border-radius: 4px;
  pointer-events: none;
  /* Let pointer events pass to area */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Hide overflow */
}

.print-area {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  /* Catch pointer events for drag */
}

.konfigurator-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: grab;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  max-width: 100%;
  max-height: 100%;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  transition: transform 0.05s linear;
  /* Smooth scaling */
}

.konfigurator-logo:not(.configurator-text) {
  width: auto;
  height: auto;
  object-fit: contain;
}

.konfigurator-logo:active {
  cursor: grabbing;
}

.logo-controls {
  margin-top: var(--sp-md);
  background: var(--clr-dark-3);
  padding: var(--sp-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--rgb-white), 0.05);
  width: 100%;
  animation: fadeInDown 0.3s var(--ease-out);
}

.logo-controls-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-sm);
}

.logo-controls-header label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-white);
}

.scale-control-copy {
  display: grid;
  gap: 2px;
}

.scale-control-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-white);
}

.scale-control-label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
  box-shadow: inset 0 0 0 4px rgba(var(--rgb-white), 0.16);
}

.scale-control-hint {
  color: var(--clr-grey-light);
  font-size: 0.72rem;
  line-height: 1.2;
}

.btn-confirm-logo {
  color: #4CAF50;
  padding: 4px;
  border-radius: 4px;
  background: rgba(var(--rgb-white), 0.05);
  transition: all var(--transition-base);
}

.btn-confirm-logo:hover {
  background: #4CAF50;
  color: var(--clr-white);
}

.btn-confirm-logo svg {
  width: 16px;
  height: 16px;
}

.btn-layer {
  color: var(--clr-grey-light);
  padding: 4px;
  border-radius: 4px;
  background: rgba(var(--rgb-white), 0.05);
  transition: all var(--transition-base);
}

.btn-layer:hover {
  background: var(--clr-grey);
  color: var(--clr-white);
}

.btn-layer svg {
  width: 16px;
  height: 16px;
}

.btn-fullscreen {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 105;
  background: rgba(var(--rgb-black), 0.5);
  border: none;
  color: white;
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .btn-fullscreen {
    display: block;
  }
}

.fullscreen-mode {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: var(--clr-dark);
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: var(--sp-md);
}

.btn-remove-logo {
  color: var(--clr-grey-light);
  padding: 4px;
  border-radius: 4px;
  background: rgba(var(--rgb-white), 0.05);
  transition: all var(--transition-base);
}

.btn-remove-logo:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn-remove-logo svg {
  width: 16px;
  height: 16px;
}

.range-slider-wrapper {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  width: 100%;
  padding-top: 2px;
}

.range-icon {
  color: var(--clr-grey);
  display: flex;
}

.logo-scale-value {
  min-width: 42px;
  color: var(--clr-grey-light);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.scale-direction-guide {
  display: grid;
  grid-template-columns: 1fr 42px 42px;
  gap: var(--sp-sm);
  margin: 4px 72px 0 48px;
  color: var(--clr-grey-light);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
}

.scale-direction-guide span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.scale-direction-guide span:first-child {
  justify-self: start;
}

.scale-direction-guide span:last-child {
  grid-column: 3;
  justify-self: end;
}

.scale-direction-arrow {
  color: var(--clr-primary);
  font-size: 0.95rem;
  line-height: 1;
}

.range-slider-wrapper input[type=range] {
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.range-slider-wrapper input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(212, 0, 0, 0.75), rgba(var(--rgb-white), 0.26));
  border-radius: 999px;
}

.range-slider-wrapper input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--clr-primary);
  cursor: pointer;
  margin-top: -8px;
  border: 3px solid var(--clr-dark-3);
  box-shadow: 0 0 10px rgba(212, 0, 0, 0.5);
  transition: transform 0.2s;
}

.range-slider-wrapper input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-slider-wrapper input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ============================================
   SAUCE: ANIMATIONS & PREMIUM EFFECTS
   ============================================ */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes shadow-scale {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(0.85);
    opacity: 0.2;
  }
}

@keyframes pulse-red {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }

  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

@keyframes shine-hero {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }

  100% {
    transform: translateX(250%) skewX(-15deg);
  }
}

/* ============================================
   HIGHLIGHT SECTION (TEAM PAKET)
   ============================================ */
/* ============================================
   HIGHLIGHT SECTION (TEAM PAKET) - FULL BLEED
   ============================================ */
.highlight-section {
  padding: var(--sp-2xl) 0;
  background: var(--clr-black);
  position: relative;
  overflow: hidden;
  /* THEME-ADAPTIVE FULL-WIDTH BACKGROUND */
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-2) 100%);
  border-top: 1px solid rgba(var(--rgb-black), 0.05);
  border-bottom: 1px solid rgba(var(--rgb-black), 0.05);
}

[data-theme="dark"] .highlight-section {
  background: linear-gradient(135deg, #120000 0%, #080000 100%);
}

/* Animated Shine on Section */
.highlight-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(var(--rgb-black), 0.02) 50%, transparent 100%);
  animation: shine-hero 8s infinite;
  pointer-events: none;
  z-index: 1;
}

[data-theme="dark"] .highlight-section::after {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
}

.highlight-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
  color: var(--clr-white);
}

/* Glass Badge - Theme Aware */
.glass-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(var(--rgb-black), 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--rgb-black), 0.1);
  border-radius: var(--radius-full);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-grey);
  margin-bottom: var(--sp-sm);
}

[data-theme="dark"] .glass-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* Red Glow Orb Decorators - Calibrated for Section */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  animation: pulse-red 10s infinite ease-in-out;
}

.glow-orb-1 {
  width: 450px;
  height: 450px;
  background: var(--clr-primary);
  opacity: 0.05;
  top: -100px;
  right: 0;
}

[data-theme="dark"] .glow-orb-1 {
  opacity: 0.15;
}

.highlight-content {
  position: relative;
  z-index: 3;
}

.highlight-content h2 {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  margin: var(--sp-xs) 0 var(--sp-sm);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  text-transform: uppercase;
}

.highlight-content .accent {
  color: var(--clr-primary);
  display: block;
  text-shadow: 0 0 30px rgba(212, 0, 0, 0.15);
  /* Softer shadow for Light Mode */
}

[data-theme="dark"] .highlight-content .accent {
  text-shadow: 0 0 30px rgba(212, 0, 0, 0.4);
}

.highlight-content p {
  font-family: var(--ff-body);
  color: var(--clr-grey);
  font-size: 1.1rem;
  margin-bottom: var(--sp-xl);
  max-width: 480px;
  line-height: 1.5;
}

.highlight-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.highlight-price {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
}

.highlight-price small {
  font-size: 0.8rem;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.highlight-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-image {
  animation: float 5s infinite ease-in-out;
}

.highlight-image img {
  max-width: 100%;
  max-height: 480px;
  /* Reduced image scale */
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  /* Premium floating shadow */
}

.float-shadow {
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(var(--rgb-black), 0.15) 0%, transparent 70%);
  margin-top: -10px;
  border-radius: 50%;
  animation: shadow-scale 5s infinite ease-in-out;
}

[data-theme="dark"] .float-shadow {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
}

@media (max-width: 992px) {
  .highlight-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-xl);
    padding: var(--sp-2xl) var(--sp-md);
  }

  .highlight-content h2 {
    font-size: 2.4rem;
  }

  .highlight-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .highlight-actions {
    justify-content: center;
  }

  .highlight-image-container {
    margin-top: var(--sp-xl);
  }
}

/* Modal Alerts (Disclaimers) - Premium Amber/Red with Cyan Accent */
.modal-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-md);
  font-size: 0.95rem;
  line-height: 1.5;
  border-left: 4px solid var(--clr-primary);
  background: rgba(212, 0, 0, 0.05);
}

.modal-alert.warning {
  color: #FFFFFF;
}

/* The Cyan Accent requested: the icon */
.modal-alert.warning svg {
  color: #00E5E5;
  filter: drop-shadow(0 0 5px rgba(0, 229, 229, 0.4));
}

.modal-alert svg {
  color: currentColor;
}

/* ============================================
   RESPONSIVE – SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }

  .product-card-img {
    height: 160px;
  }

  .product-card-body {
    padding: var(--sp-sm);
  }

  .product-card-body h3 {
    font-size: 0.82rem;
  }

  .product-card-body .product-desc {
    display: none;
  }

  .product-colors {
    display: none;
  }

  .product-price {
    font-size: 0.82rem;
  }

  .product-quick-add {
    width: 32px;
    height: 32px;
  }

  .product-quick-add svg {
    width: 14px;
    height: 14px;
  }

  .product-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .hero-cta .btn {
    font-size: 0.85rem;
    padding: 12px 20px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: var(--sp-xs) var(--sp-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .checkout-form-group {
    grid-template-columns: 1fr;
  }

  .modal-images {
    min-height: 200px;
    max-height: none;
    padding-top: var(--sp-3xl);
  }

  .modal-main-img {
    max-height: 160px;
  }

  .modal-options-row {
    grid-template-columns: 1fr;
  }

  .modal-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    gap: var(--sp-md);
  }

  .step-card {
    padding: var(--sp-md) var(--sp-sm);
  }

  /* Highlight Banner Mobile Refinement */
  .highlight-content h2 {
    font-size: 1.8rem;
  }

  .highlight-content p {
    font-size: 0.95rem;
    margin-bottom: var(--sp-lg);
  }

  .highlight-actions {
    flex-direction: column;
    gap: var(--sp-md);
  }

  .highlight-price {
    align-items: center;
  }

  .highlight-price small {
    margin-top: 2px;
  }

  .highlight-image img {
    max-height: 320px;
  }
}

/* ============================================
   REDUCED MOTION (Accessibility)
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-glow {
    animation: none;
  }

  .hero-badge .dot {
    animation: none;
  }
}


/* LOADER */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


/* ============================================
   NEW PRICE DISPLAY (Net prominent)
   ============================================ */
.price-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  vertical-align: middle;
}

.price-main {
  font-size: 1.2em;
  font-weight: 800;
  color: var(--clr-primary);
  display: block;
}

.price-main small {
  font-size: 0.65em;
  opacity: 0.8;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 2px;
}

.price-sub {
  font-size: 0.8em;
  opacity: 0.7;
  color: var(--clr-grey);
  display: block;
  margin-top: 1px;
}

.price-sub small {
  font-size: 0.85em;
}

/* Modal Price Overrides */
.modal-price .price-main {
  font-size: 1.8rem;
}

.modal-price .price-sub {
  font-size: 1rem;
}

/* Grid Price Overrides */
.product-price .price-stack {
  margin-top: 4px;
}

.product-price .price-main {
  font-size: 1rem;
}

.product-price .price-sub {
  font-size: 0.72rem;
}

/* Alignment in footer/totals */
.cart-footer .total-price .price-stack,
.checkout-summary .total-price .price-stack {
  align-items: flex-end;
  text-align: right;
}

/* ============================================
   MULTI-SIZE SELECTION GRID (VISITYOU PREMIUM)
   ============================================ */
.modal-size-qty-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  background: rgba(var(--rgb-white), 0.03);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid rgba(var(--rgb-white), 0.05);
}

.size-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(var(--rgb-black), 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.size-qty-row:hover {
  background: rgba(var(--rgb-black), 0.3);
  border-color: rgba(var(--rgb-white), 0.05);
}

.size-qty-row.has-qty {
  background: rgba(212, 0, 0, 0.05);
  border-left: 3px solid var(--clr-primary);
  border-color: rgba(212, 0, 0, 0.1);
}

.size-label {
  font-weight: 800;
  font-size: 1rem;
  color: var(--clr-white);
  min-width: 45px;
}

.size-qty-row .qty-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(var(--rgb-black), 0.3);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--rgb-white), 0.05);
}

.size-qty-row .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--rgb-white), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.2s;
  color: var(--clr-white);
}

.size-qty-row .qty-btn:hover {
  background: var(--clr-primary);
  transform: scale(1.1);
}

.size-qty-row .qty-value {
  width: 35px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.95rem;
  outline: none;
  -moz-appearance: textfield;
}

.size-qty-row .qty-value::-webkit-inner-spin-button,
.size-qty-row .qty-value::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Cart Multi-Size Display */
.cart-item-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.cart-size-tag {
  background: rgba(var(--rgb-white), 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(var(--rgb-white), 0.08);
}

/* ============================================
   ONBOARDING OVERLAY (VISITYOU HELPER)
   ============================================ */
.onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--rgb-black), 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.onboarding-overlay.active {
  opacity: 1;
  visibility: visible;
}

.onboarding-card {
  background: var(--clr-dark);
  border: 1px solid rgba(var(--rgb-white), 0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  max-width: 680px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: visible;
}

.onboarding-overlay.active .onboarding-card {
  transform: translateY(0) scale(1);
}

.onboarding-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
}

.onboarding-icon-main {
  width: 48px;
  height: 48px;
  background: rgba(212, 0, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin: 0 auto var(--sp-md);
  animation: floatUp 3s ease-in-out infinite;
}

.onboarding-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: var(--sp-xs);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.onboarding-card h3 span {
  color: var(--clr-primary);
}

.onboarding-card p {
  color: var(--clr-grey-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: var(--sp-md);
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  text-align: left;
  margin-bottom: var(--sp-lg);
}

.onboarding-step {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 10px 12px;
  background: rgba(var(--rgb-white), 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--rgb-white), 0.05);
  transition: transform 0.3s;
}

.onboarding-step:hover {
  transform: translateX(5px);
  background: rgba(var(--rgb-white), 0.05);
}

.step-icon-small {
  width: 32px;
  height: 32px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 0, 0, 0.3);
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--clr-white);
}

.step-content p {
  font-size: 0.82rem;
  color: var(--clr-grey);
  margin: 0;
  line-height: 1.4;
}

.onboarding-btn {
  width: 100%;
}

@media (max-width: 480px) {
  .onboarding-overlay {
    position: fixed;
    z-index: 999999;
    padding: var(--sp-md);
    background: rgba(var(--rgb-black), 0.95);
  }

  .onboarding-card {
    padding: var(--sp-xl) var(--sp-md);
    max-width: 100%;
    max-height: 90vh;
    margin: 0;
    overflow-y: auto;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
  }
  
  .onboarding-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--sp-sm);
  }
  
  .onboarding-card p {
    font-size: 0.85rem;
    margin-bottom: var(--sp-md);
  }
  
  .onboarding-step {
    padding: 8px 10px;
    gap: var(--sp-sm);
    align-items: center;
  }

  .step-icon-small {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .step-content h4 {
    font-size: 0.85rem;
  }

  .step-content p {
    font-size: 0.75rem;
  }

  .onboarding-icon-main {
    width: 40px;
    height: 40px;
    margin-bottom: var(--sp-sm);
  }
}
