@import url('/static/style-navbar.css');
/* =========================================
   CSS RESET & BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Dark Mode */
  --primary-color: #1a1a1a;
  --secondary-color: #2d2d2d;
  --accent-color: #d4af37;
  --accent-gradient: linear-gradient(135deg, #d4af37, #f4e4a6);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --background-dark: #0a0a0a;
  --background-card: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 60px 0;
  --container-padding: 0 20px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Light Mode Variables */
.light-mode {
  --primary-color: #f8f9fa;
  --secondary-color: #e9ecef;
  --accent-color: #d4af37;
  --accent-gradient: linear-gradient(135deg, #d4af37, #f4e4a6);
  --text-primary: #212529;
  --text-secondary: #495057;
  --text-muted: #6c757d;
  --background-dark: #ffffff;
  --background-card: rgba(0, 0, 0, 0.05);
  --border-color: rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
  font-family: var(--font-primary);
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
  padding: var(--container-padding);
}

/* Typography */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.text-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* NAVBAR: zentralisiert in static/style-navbar.css */

/* =========================================
   STORE HERO SECTION
   ========================================= */
.store-hero-section {
  padding: var(--section-padding);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 2rem 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title-small {
  display: block;
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-title-main {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-actions {
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
  padding: 2rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.hero-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* =========================================
   COLLECTIONS SECTION
   ========================================= */
.collections-section {
  padding: var(--section-padding);
  background: var(--primary-color);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  justify-items: center;
  justify-content: center;
}

.collection-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--background-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  height: 500px;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.collection-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(212, 175, 55, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-content {
  text-align: center;
  padding: 2rem;
  color: white;
}

.collection-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.collection-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-collection {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-collection:hover {
  background: var(--accent-gradient);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* =========================================
   FEATURED PRODUCTS SECTION
   ========================================= */
.featured-products-section {
  padding: var(--section-padding);
  background: var(--background-dark);
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.featured-product-card {
  background: var(--background-card);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  text-align: center;
}

.featured-product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.featured-product-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--accent-gradient);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
}

.featured-product-content {
  padding: 2.5rem;
}

.featured-product-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.featured-product-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.featured-product-price {
  margin-bottom: 2.5rem;
}

.featured-product-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* =========================================
   ALL PRODUCTS SECTION
   ========================================= */
.all-products-section {
  padding: var(--section-padding);
  background: var(--primary-color);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem 0;
}

.filter-tab {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--accent-gradient);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
  justify-content: center;
}

.product-card {
  background: var(--background-card);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.product-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

.btn-action {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.btn-action:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.product-price {
  margin-bottom: 1.5rem;
}

.price-current,
.price-sale {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.price-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.btn-add-to-cart {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--accent-gradient);
  border: none;
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
  padding: var(--section-padding);
  background: var(--primary-color);
}

.section-header {
  margin-bottom: 2rem;
}

.feature-card {
  background: var(--background-card);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #000;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================
   SUPPORT SECTION
   ========================================= */
.support-section {
  padding: var(--section-padding);
  background: var(--background-dark);
}

.support-banner {
  background: var(--background-card);
  border-radius: 25px;
  padding: 3rem;
  margin-bottom: 4rem;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.support-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.support-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.support-features-grid {
  margin-top: 2rem;
}

.support-feature-card {
  background: var(--background-card);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  height: 100%;
}

.support-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.support-feature-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.support-feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.support-feature-card:hover .support-feature-icon {
  transform: scale(1.1);
}

.support-feature-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.support-feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================
   CTA BUTTONS
   ========================================= */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-cta-primary {
  background: var(--accent-gradient);
  color: #000;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-cta-secondary:hover {
  background: var(--background-card);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.btn-cta-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.btn-cta-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-cta-outline:hover {
  color: #000;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-cta-outline:hover::before {
  left: 0;
}

/* =========================================
   FOOTER
   ========================================= */
.footer-new {
  background: var(--primary-color);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  margin-bottom: 3rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
}

.footer-new h5 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--accent-gradient);
  color: #000;
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--accent-color);
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.payment-methods span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.payment-icons {
  display: flex;
  gap: 1rem;
}

.payment-icons img {
  height: 30px;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.payment-icons img:hover {
  opacity: 1;
}

/* =========================================
   THEME TOGGLE
   ========================================= */
.theme-toggle-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.theme-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
  border: 1px solid #d4af37;
  color: #000;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.theme-toggle:hover {
  background: linear-gradient(135deg, #f4d03f, #d4af37, #f4d03f);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.theme-toggle-dark,
.theme-toggle-light {
  position: absolute;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-dark {
  opacity: 1;
  transform: scale(1);
}

.theme-toggle-light {
  opacity: 0;
  transform: scale(0.5);
}

.light-mode .theme-toggle-dark {
  opacity: 0;
  transform: scale(0.5);
}

.light-mode .theme-toggle-light {
  opacity: 1;
  transform: scale(1);
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    justify-items: center;
    justify-content: center;
  }
  
  .featured-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  /* Hero Section Mobile Optimierungen */
  .store-hero-section {
    padding: 2rem 0;
    min-height: 70vh;
  }

  .hero-title-main {
    font-size: 3rem;
  }
  
  .hero-title-small {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

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

  .btn-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  /* Section Titles Mobile Optimierungen */
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  /* Collections Grid Mobile Optimierungen */
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    justify-items: center;
    justify-content: center;
  }
  
  .collection-card {
    height: 400px;
    border-radius: 16px;
  }
  
  .collection-title {
    font-size: 2rem;
  }

  .collection-description {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Featured Products Mobile Optimierungen */
  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .featured-product-title {
    font-size: 1.5rem;
  }
  
  .featured-product-content {
    padding: 2rem;
  }

  /* Products Grid Mobile Optimierungen */
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    justify-content: center;
    padding: 0 1rem;
  }

  .product-card {
    max-width: 320px;
    width: 100%;
  }

  /* Filter Tabs Mobile Optimierungen */
  .filter-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
  }

  .filter-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
  }
  
  /* Support Banner Mobile Optimierungen */
  .support-banner {
    padding: 2rem;
    text-align: center;
    margin: 0 1rem;
    border-radius: 16px;
  }
  
  .support-title {
    font-size: 2rem;
  }
  
  .support-text {
    font-size: 1.1rem;
  }

  /* Touch-Target Optimierungen */
  .btn-collection,
  .btn-cta,
  .filter-tab {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Touch-Optimierungen für alle interaktiven Elemente */
  .product-card,
  .collection-card,
  .feature-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .product-card:active,
  .collection-card:active,
  .feature-card:active {
    transform: scale(0.98);
  }

  /* Verbesserte Touch-Scrolling */
  .collections-grid,
  .products-grid,
  .featured-products-grid {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  /* Touch-Feedback für Buttons */
  .btn-action:active,
  .btn-add-to-cart:active {
    transform: scale(0.95);
  }

  /* Container Padding für Mobile */
  .container {
    padding: 0 1rem;
    }

  /* Support Feature Cards Mobile Optimierungen */
  .support-feature-card {
    padding: 2rem;
  }
  
  .support-feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .support-feature-icon i {
    font-size: 1.5rem;
  }

  /* Button Mobile Optimierungen */
  .btn-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .featured-product-actions {
    flex-direction: column;
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .support-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .payment-methods {
    flex-direction: column;
    text-align: center;
  }
  
  .theme-toggle-wrapper {
    bottom: 1rem;
    right: 1rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title-main {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .collection-card {
    height: 350px;
  }
  
  .collection-title {
    font-size: 1.5rem;
  }
  
  .featured-product-image {
    height: 250px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
  }
  
  .filter-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .support-banner {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
    justify-content: center;
  }
  
  .product-card {
    margin: 0;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .support-section {
    padding: 3rem 0;
  }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.d-flex {
  display: flex;
}

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

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

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

/* =========================================
   COLLECTION GROUPS
   ========================================= */
.collection-group {
  margin-bottom: 4rem;
}

.collection-group-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.collection-group-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.collection-group .products-grid {
  justify-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .collection-group-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .collection-group-title {
    font-size: 1.75rem;
  }
}

/* =========================================
   TOAST NOTIFICATIONS
   ========================================= */
.toast-container {
  z-index: 10000 !important;
}

.toast {
  background: rgba(26, 26, 26, 0.95) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  min-width: 300px;
  max-width: 400px;
  overflow: hidden;
}

.toast-header {
  background: transparent !important;
  border-bottom: 1px solid var(--border-color) !important;
  padding: 16px 20px 12px !important;
  color: var(--text-primary) !important;
}

.toast-header.bg-success {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 166, 0.1)) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.toast-header.bg-danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(248, 81, 73, 0.1)) !important;
  border-bottom: 1px solid rgba(220, 53, 69, 0.2) !important;
}

.toast-header strong {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
}

.toast-header i {
  font-size: 1.1rem !important;
}

.toast-header .bi-check-circle {
  color: var(--accent-color) !important;
}

.toast-header .bi-exclamation-triangle {
  color: #dc3545 !important;
}

.toast-body {
  color: var(--text-secondary) !important;
  padding: 16px 20px 20px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.btn-close {
  filter: invert(1) !important;
  opacity: 0.6 !important;
  transition: opacity 0.2s ease !important;
}

.btn-close:hover {
  opacity: 1 !important;
}

/* Toast Animation */
.toast.showing {
  animation: toastSlideIn 0.3s ease-out;
}

.toast.hide {
  animation: toastSlideOut 0.3s ease-in;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Light Mode Toast Styles */
.light-mode .toast {
  background: rgba(248, 249, 250, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.light-mode .toast-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: var(--text-primary) !important;
}

.light-mode .toast-header.bg-success {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 166, 0.1)) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.light-mode .toast-header.bg-danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(248, 81, 73, 0.1)) !important;
  border-bottom: 1px solid rgba(220, 53, 69, 0.2) !important;
}

.light-mode .toast-body {
  color: var(--text-secondary) !important;
}

.light-mode .btn-close {
  filter: invert(0) !important;
}