@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: 120px 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;
}

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

.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 3rem;
}

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



/* =========================================
   SPLASH SCREEN
   ========================================= */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.splash-screen.fade-out {
  opacity: 0;
}

.splash-screen video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}



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

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section-new {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -70px;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}

.hero-content-new {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

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

.hero-title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

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

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-hero-primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #ffffff !important;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  text-align: center;
}

.scroll-text {
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-primary);
  letter-spacing: 0.02em;
  text-align: center;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  margin-bottom: 0.5rem;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

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

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

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
}

/* =========================================
   STORY SECTION
   ========================================= */
.story-section-new {
  padding: var(--section-padding);
  background: var(--background-dark);
}

.story-content {
  padding-right: 2rem;
}

.story-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-image {
  position: relative;
}

.story-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gradient);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; /* Karten in unvollständigen Reihen zentrieren */
}

.collection-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 400px;
  width: 500px;
  flex: 0 0 500px; /* fester Platz im Flex-Layout */
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px 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.1);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.collection-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.collection-info p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.btn-collection {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent-gradient);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-collection:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  color: #000;
}

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

.featured-label {
  display: inline-block;
  background: var(--accent-gradient);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.featured-features {
  margin-bottom: 2rem;
}

.featured-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--background-card);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.featured-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.featured-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-featured {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-featured-primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.btn-featured-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-featured-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: var(--text-primary);
}

.featured-image {
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-gradient);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section-new {
  padding: var(--section-padding);
  background: var(--primary-color);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--background-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial-author strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section-new {
  padding: var(--section-padding);
  background: var(--primary-color);
  text-align: center;
}

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

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-cta-primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-legal a {
  color: var(--text-secondary);
  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);
  flex-wrap: wrap;
}

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

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

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

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

/* =========================================
   THEME TOGGLE & BACK TO TOP
   ========================================= */
.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);
}

/* Additional Light Mode Styles */
.light-mode .hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
}

.light-mode .btn-hero-secondary {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.light-mode .btn-hero-secondary:hover {
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
}

.light-mode .collection-card,
.light-mode .feature-card,
.light-mode .process-step {
  background: var(--background-card);
  border: 1px solid var(--border-color);
}

.light-mode .footer {
  background: var(--secondary-color);
  border-top: 1px solid var(--border-color);
}

.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;
}

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

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

/* =========================================
   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;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero-buttons,
  .featured-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .story-stats {
    justify-content: center;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .payment-methods {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .theme-toggle-wrapper,
  .back-to-top {
    bottom: 1rem;
  }
  
  .theme-toggle-wrapper {
    right: 1rem;
  }
  
  .back-to-top {
    left: 1rem;
  }
  
  /* Splash Screen Mobile */
  .splash-logo {
    width: 80px;
    margin-bottom: 1.5rem;
  }
  
  .splash-text {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  
  .splash-subtext {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  
  .skip-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* =========================================
   GOLD GRADIENT
   ========================================= */
.gold-gradient {
  background: linear-gradient(135deg, #d4b660 0%, #c19a49 50%, #a17e32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Light mode adjustments for gold gradient */
.light-mode .gold-gradient {
  background: linear-gradient(135deg, #b8941f 0%, #9e7a1a 50%, #7d5f15 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

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

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

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}