/* ============================================================
   SHISHA WHEELS - Premium Template for DynPG
   Farbschema: Schwarz (#0a0a0a) + Gold (#c9a84c) + Weiss (#ffffff)
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --sw-black: #0a0a0a;
  --sw-black-light: #141414;
  --sw-black-card: #1a1a1a;
  --sw-gold: #c9a84c;
  --sw-gold-light: #d4ba6a;
  --sw-gold-dark: #a88a3a;
  --sw-white: #ffffff;
  --sw-gray: #888888;
  --sw-gray-light: #cccccc;
  --sw-gray-dark: #333333;
  --sw-red: #c0392b;
  --sw-green: #27ae60;

  --sw-font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --sw-font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --sw-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --sw-transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);

  --sw-header-height: 72px;
  --sw-max-width: 1280px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sw-font-main);
  background-color: var(--sw-black);
  color: var(--sw-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--sw-gold);
  text-decoration: none;
  transition: color 0.3s var(--sw-transition);
}

a:hover {
  color: var(--sw-gold-light);
}

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

/* --- Utility Classes --- */
.sw-container {
  width: 100%;
  max-width: var(--sw-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sw-section {
  padding: 120px 0;
  position: relative;
}

.sw-text-center { text-align: center; }
.sw-text-gold { color: var(--sw-gold); }
.sw-text-gray { color: var(--sw-gray); }

/* --- Typography --- */
.sw-headline-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.sw-headline-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sw-headline-md {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
}

.sw-headline-sm {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sw-gold);
}

.sw-body-lg {
  font-size: 1.125rem;
  color: var(--sw-gray-light);
  line-height: 1.7;
}

.sw-body {
  font-size: 1rem;
  color: var(--sw-gray);
  line-height: 1.6;
}

/* --- Buttons --- */
.sw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--sw-transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.sw-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s var(--sw-transition);
}

.sw-btn:hover::after {
  left: 100%;
}

.sw-btn-primary {
  background: var(--sw-gold);
  color: var(--sw-black);
}

.sw-btn-primary:hover {
  background: var(--sw-gold-light);
  color: var(--sw-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.sw-btn-outline {
  background: transparent;
  color: var(--sw-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sw-btn-outline:hover {
  border-color: var(--sw-gold);
  color: var(--sw-gold);
  transform: translateY(-2px);
}

.sw-btn-icon {
  font-size: 1rem;
  transition: transform 0.3s var(--sw-transition);
}

.sw-btn:hover .sw-btn-icon {
  transform: translateX(4px);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.sw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--sw-header-height);
  z-index: 1000;
  transition: all 0.4s var(--sw-transition);
  background: transparent;
}

.sw-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

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

.sw-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sw-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sw-logo:hover {
  color: var(--sw-gold);
}

.sw-logo-img {
  height: 36px;
  width: auto;
}

.sw-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.sw-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sw-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.sw-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sw-gold);
  transition: width 0.3s var(--sw-transition);
}

.sw-nav a:hover {
  color: var(--sw-gold);
}

.sw-nav a:hover::after {
  width: 100%;
}

.sw-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sw-cart-icon {
  position: relative;
  color: var(--sw-white);
  font-size: 1.125rem;
  cursor: pointer;
  transition: color 0.3s;
}

.sw-cart-icon:hover {
  color: var(--sw-gold);
}

.sw-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--sw-gold);
  color: var(--sw-black);
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.sw-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.sw-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--sw-white);
  transition: all 0.3s var(--sw-transition);
}

.sw-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.sw-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.sw-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.sw-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sw-hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

/* Platzhalter wenn kein Video vorhanden */
.sw-hero-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, #1a1a2e 0%, #0a0a0a 70%);
  position: relative;
}

.sw-hero-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  animation: heroAmbient 8s ease-in-out infinite alternate;
}

@keyframes heroAmbient {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.sw-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.1) 40%,
    rgba(10, 10, 10, 0.6) 80%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 2;
}

.sw-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.sw-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sw-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 1s var(--sw-transition-smooth) 0.3s forwards;
}

.sw-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0;
  animation: heroFadeUp 1s var(--sw-transition-smooth) 0.5s forwards;
}

.sw-hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--sw-gold) 0%, var(--sw-gold-light) 50%, var(--sw-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.sw-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--sw-gray-light);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 1s var(--sw-transition-smooth) 0.7s forwards;
}

.sw-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 1s var(--sw-transition-smooth) 0.9s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Product Floating */
.sw-hero-product {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  right: 8%;
  width: clamp(250px, 35vw, 500px);
  animation: heroFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(201, 168, 76, 0.2));
  pointer-events: none;
}

.sw-hero-product img {
  width: 100%;
  height: auto;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* Hero Slider Indicators (like DJI product selector) */
.sw-hero-indicators {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.sw-hero-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s;
  background: none;
  border: none;
  color: var(--sw-white);
  font-family: var(--sw-font-main);
}

.sw-hero-indicator.active {
  opacity: 1;
}

.sw-hero-indicator::before {
  content: '';
  width: 2px;
  height: 24px;
  background: var(--sw-white);
  opacity: 0.3;
  transition: all 0.3s;
}

.sw-hero-indicator.active::before {
  background: var(--sw-gold);
  opacity: 1;
  height: 32px;
}

.sw-hero-indicator-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.sw-hero-indicator.active .sw-hero-indicator-label {
  font-weight: 700;
}

/* Hero Navigation Arrows */
.sw-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sw-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
}

.sw-hero-arrow:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--sw-gold);
  color: var(--sw-gold);
}

.sw-hero-arrow-left { left: 24px; }
.sw-hero-arrow-right { right: 24px; }

/* ============================================================
   FEATURE SECTIONS
   ============================================================ */
.sw-features {
  background: var(--sw-black);
}

.sw-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.sw-feature-row.reverse {
  direction: rtl;
}

.sw-feature-row.reverse > * {
  direction: ltr;
}

.sw-feature-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.sw-feature-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s var(--sw-transition-smooth);
}

.sw-feature-image:hover img {
  transform: scale(1.03);
}

.sw-feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.sw-feature-text {
  max-width: 480px;
}

.sw-feature-text .sw-headline-sm {
  margin-bottom: 16px;
}

.sw-feature-text .sw-headline-lg {
  margin-bottom: 24px;
}

.sw-feature-text .sw-body-lg {
  margin-bottom: 32px;
}

/* Feature Stats */
.sw-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--sw-gray-dark);
}

.sw-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sw-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.sw-stat-label {
  font-size: 0.75rem;
  color: var(--sw-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PRODUCT SHOWCASE (Scrolling Section)
   ============================================================ */
.sw-showcase {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--sw-black) 0%, var(--sw-black-light) 50%, var(--sw-black) 100%);
}

.sw-showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.sw-showcase-header .sw-headline-sm {
  margin-bottom: 12px;
}

.sw-showcase-header .sw-headline-lg {
  margin-bottom: 16px;
}

.sw-showcase-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 24px 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sw-showcase-scroll::-webkit-scrollbar {
  display: none;
}

.sw-showcase-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  background: var(--sw-black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--sw-transition);
  cursor: pointer;
}

.sw-showcase-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sw-showcase-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sw-black-light);
}

.sw-showcase-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--sw-transition-smooth);
}

.sw-showcase-card:hover .sw-showcase-card-image img {
  transform: scale(1.08);
}

.sw-showcase-card-body {
  padding: 20px;
}

.sw-showcase-card-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.sw-showcase-card-type {
  font-size: 0.8125rem;
  color: var(--sw-gray);
}

/* ============================================================
   SHOP / PRODUCT GRID
   ============================================================ */
.sw-shop {
  padding: 120px 0;
}

.sw-shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.sw-shop-count {
  font-size: 0.875rem;
  color: var(--sw-gray);
}

.sw-shop-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sw-filter-btn {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--sw-gray-dark);
  color: var(--sw-gray);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--sw-font-main);
}

.sw-filter-btn:hover,
.sw-filter-btn.active {
  border-color: var(--sw-gold);
  color: var(--sw-gold);
}

/* Product Grid */
.sw-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.sw-product-card {
  background: var(--sw-black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--sw-transition);
  position: relative;
}

.sw-product-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.sw-product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sw-black-light);
}

.sw-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--sw-transition-smooth);
}

.sw-product-card:hover .sw-product-card-image img {
  transform: scale(1.05);
}

/* Badges */
.sw-badge {
  position: absolute;
  top: 16px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}

.sw-badge-unique {
  left: 16px;
  background: var(--sw-gold);
  color: var(--sw-black);
}

.sw-badge-new {
  right: 16px;
  background: var(--sw-white);
  color: var(--sw-black);
}

.sw-badge-sold {
  left: 16px;
  background: var(--sw-red);
  color: var(--sw-white);
}

.sw-badge-reserved {
  left: 16px;
  background: var(--sw-gray-dark);
  color: var(--sw-white);
}

/* Sold Overlay */
.sw-product-card.sold .sw-product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1;
}

.sw-product-card-body {
  padding: 20px;
}

.sw-product-card-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--sw-white);
  text-decoration: none;
}

.sw-product-card-name a {
  color: inherit;
  text-decoration: none;
}

.sw-product-card-name a:hover {
  color: var(--sw-gold);
}

.sw-product-card-desc {
  font-size: 0.8125rem;
  color: var(--sw-gray);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.sw-product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sw-gold);
}

.sw-product-price-sold {
  text-decoration: line-through;
  color: var(--sw-gray);
}

.sw-product-card .sw-btn {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.sw-detail {
  padding-top: calc(var(--sw-header-height) + 40px);
  padding-bottom: 120px;
}

.sw-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sw-detail-gallery {
  position: sticky;
  top: calc(var(--sw-header-height) + 40px);
}

.sw-detail-gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sw-black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 12px;
}

.sw-detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sw-detail-gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sw-black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.sw-detail-gallery-thumb:hover,
.sw-detail-gallery-thumb.active {
  border-color: var(--sw-gold);
}

.sw-detail-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-detail-info {
  padding-top: 20px;
}

.sw-detail-breadcrumb {
  font-size: 0.8125rem;
  color: var(--sw-gray);
  margin-bottom: 24px;
}

.sw-detail-breadcrumb a {
  color: var(--sw-gray);
}

.sw-detail-breadcrumb a:hover {
  color: var(--sw-gold);
}

.sw-detail-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.sw-detail-subtitle {
  font-size: 1rem;
  color: var(--sw-gray);
  margin-bottom: 24px;
}

.sw-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sw-gold);
  margin-bottom: 24px;
}

.sw-detail-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.sw-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--sw-gray-dark);
  color: var(--sw-gray-light);
}

.sw-detail-badge-gold {
  border-color: var(--sw-gold);
  color: var(--sw-gold);
}

.sw-detail-divider {
  width: 100%;
  height: 1px;
  background: var(--sw-gray-dark);
  margin: 32px 0;
}

.sw-detail-description {
  margin-bottom: 32px;
}

.sw-detail-description h3 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sw-gray);
  margin-bottom: 12px;
}

.sw-detail-description p {
  color: var(--sw-gray-light);
  line-height: 1.7;
}

.sw-detail-specs {
  margin-bottom: 40px;
}

.sw-detail-specs h3 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sw-gray);
  margin-bottom: 16px;
}

.sw-detail-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
}

.sw-detail-spec-label {
  color: var(--sw-gray);
}

.sw-detail-spec-value {
  color: var(--sw-white);
  font-weight: 500;
}

.sw-detail-actions {
  display: flex;
  gap: 12px;
}

.sw-detail-actions .sw-btn {
  flex: 1;
  justify-content: center;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.sw-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--sw-transition-smooth);
}

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

.sw-reveal-delay-1 { transition-delay: 0.1s; }
.sw-reveal-delay-2 { transition-delay: 0.2s; }
.sw-reveal-delay-3 { transition-delay: 0.3s; }
.sw-reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   FOOTER
   ============================================================ */
.sw-footer {
  background: var(--sw-black-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
}

.sw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.sw-footer-brand {
  max-width: 300px;
}

.sw-footer-brand .sw-logo {
  margin-bottom: 16px;
}

.sw-footer-brand p {
  font-size: 0.875rem;
  color: var(--sw-gray);
  line-height: 1.7;
}

.sw-footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sw-white);
  margin-bottom: 20px;
}

.sw-footer-col ul {
  list-style: none;
}

.sw-footer-col li {
  margin-bottom: 10px;
}

.sw-footer-col a {
  font-size: 0.875rem;
  color: var(--sw-gray);
  transition: color 0.3s;
}

.sw-footer-col a:hover {
  color: var(--sw-gold);
}

.sw-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.sw-footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sw-gray-dark);
  color: var(--sw-gray);
  font-size: 1rem;
  transition: all 0.3s;
}

.sw-footer-social a:hover {
  border-color: var(--sw-gold);
  color: var(--sw-gold);
}

.sw-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8125rem;
  color: var(--sw-gray);
  flex-wrap: wrap;
  gap: 16px;
}

.sw-footer-legal {
  display: flex;
  gap: 24px;
}

.sw-footer-legal a {
  color: var(--sw-gray);
  font-size: 0.8125rem;
}

/* ============================================================
   WARENKORB (Cart)
   ============================================================ */
.sw-cart-section {
  padding-top: calc(var(--sw-header-height) + 40px);
  padding-bottom: 120px;
  min-height: 60vh;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sw-feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sw-feature-row.reverse {
    direction: ltr;
  }

  .sw-detail-layout {
    grid-template-columns: 1fr;
  }

  .sw-detail-gallery {
    position: static;
  }

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

  .sw-hero-product {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --sw-header-height: 60px;
  }

  .sw-section {
    padding: 80px 0;
  }

  .sw-nav {
    display: none;
    position: fixed;
    top: var(--sw-header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--sw-header-height));
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .sw-nav.open {
    display: flex;
  }

  .sw-nav a {
    font-size: 1.25rem;
  }

  .sw-menu-toggle {
    display: flex;
  }

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

  .sw-hero-indicators {
    display: none;
  }

  .sw-hero-arrow {
    display: none;
  }

  .sw-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

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

  .sw-feature-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .sw-shop-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sw-detail-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .sw-product-grid {
    grid-template-columns: 1fr;
  }

  .sw-feature-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .sw-detail-gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}
