/* CSS Variables for Themes */
:root {
    /* Dark Luxury Theme (Default) */
    --bg-primary: #181D30;
    --bg-secondary2: #1a1a1a;
    --bg-secondary: #3D0A20;
    --bg-tertiary2: #2a2a2a;
	--bg-tertiary: #17263B;
    --bg-card: #1e1e1e;
    --bg-card-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent-primary: #d4af37;
    --accent-secondary: #b8860b;
    --accent-gradient: linear-gradient(135deg, #d4af37, #b8860b);
    --border-color: #333333;
    --border-color2: #817c00;
    --shadow-primary: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 40px rgba(212, 175, 55, 0.2);
	
}

[data-theme="light"] {
    /* Light Luxury Theme */
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f5f5f5;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f8f8;
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-muted: #666666;
    --accent-primary: #d4af37;
    --accent-secondary: #b8860b;
    --accent-gradient: linear-gradient(135deg, #d4af37, #b8860b);
    --border-color: #e0e0e0;
    --shadow-primary: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(212, 175, 55, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
}
.lux-heading {
  font-family: 'Playfair Display', 'Georgia', serif; /* Elegante Serifenschrift */
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD700; /* Gold */
  background: linear-gradient(90deg, #FFD700 0%, #FFF8DC 45%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.25), /* weicher Schatten für Lesbarkeit */
    0 0 12px #fff8dc66;         /* leichter Glimmer-Effekt */
  letter-spacing: 0.05em;
  //margin-bottom: 1em;
  padding-left:190px;padding-right:190px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.animated-border {
  position: relative;
  z-index: 0;
  border-radius: 1.5em;
  overflow: hidden;
  padding: 2em 2em;
  background: #111; /* Hintergrund für Kontrast */
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-align: center;
}

.animated-border::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4px;
  border-radius: inherit;
  background: 
    linear-gradient(120deg, #FFD700, #fff8dc, #FFD700, #b8860b, #FFD700, #fff8dc, #FFD700);
  background-size: 200% 200%;
  animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.glitter-text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD700;
  background: linear-gradient(
    90deg,
    #FFD700 20%,
    #fff8dc 40%,
    #ffd700 60%,
    #fff8dc 80%,
    #FFD700 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.25),
    0 0 12px #fff8dc66;
  animation: shimmer 8.5s linear infinite;
  padding-left: 8vw;
  padding-right: 8vw;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  box-sizing: border-box;
}

/* Responsive Anpassung für Mobilgeräte */
@media (max-width: 600px) {
  .glitter-text {
    font-size: 1.4rem;
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: center;
  }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: relative;
    min-height: 60vh;
    background: var(--bg-secondary);
    overflow: hidden;
}

.header-products_single {
    position: relative;
    min-height: 50vh;
    background: var(--bg-secondary);
    overflow: hidden;
}
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(184, 134, 11, 0.05) 50%, 
        rgba(0, 0, 0, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%23d4af37" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000" stop-opacity="0.8"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
    background-size: cover;
    background-position: center;
}

.navbar {
    position: relative;
    z-index: 10;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
	background: #D0AC52;
background: #063640;
background: linear-gradient(301deg,rgba(6, 54, 64, 1) 0%, rgba(27, 92, 92, 1) 27%, rgba(11, 44, 51, 1) 48%, rgba(19, 68, 71, 1) 73%, rgba(4, 28, 36, 1) 100%);
background: #111827 ;
background: linear-gradient(301deg,rgba(17, 24, 39, 1) 0%, rgba(31, 41, 55, 1) 27%, rgba(31, 41, 55, 1) 48%, rgba(31, 41, 55, 1) 73%, rgba(4, 28, 36, 1) 100%);

}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

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

.theme-toggle {
    display: flex;
    align-items: center;
}

.theme-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    text-align: center;
	 background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../img/hero-section.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	text-shadow: 2px 2px 5px rgba(255,255,255,0.8);
}
@media only screen and (max-width: 600px) {
  .hero-section {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35vh;
    text-align: center;
	 background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../img/hero-section.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	text-shadow: 2px 2px 5px rgba(255,255,255,0.8);
}
}
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	
}

.mainText{
	padding-left:150px;
	padding-right:150px;
	padding-bottom:55px;
	text-align:justify;
}
@media only screen and (max-width: 600px) {
  .mainText {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 32px;
    text-align: justify; /* optional: bessere Lesbarkeit auf kleinen Displays */
  }
}
.filterText{
	padding-left:150px;
	padding-right:150px;
	padding-bottom:0px;
	padding-top:20px;
	text-align:justify;
}
@media only screen and (max-width: 600px) {
  .filterText {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 0px;
    text-align: justify; /* optional: bessere Lesbarkeit auf kleinen Displays */
  }
}
.hero-subtitle {
    font-size: 2.0rem;
    color: var(--text-secondary);
    font-weight: 300;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}
@media only screen and (max-width: 600px) {
  .hero-subtitle {
    color: var(--text-secondary);
    font-weight: 500;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}
}
/* Main Content */
.main-content {
    position: relative;
    z-index: 5;
    background: var(--bg-primary);
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
    padding-top: 40px;
}

/* Stats Section */
.stats-section {
    padding: 5px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
	background: #063640;
background: linear-gradient(301deg,rgba(6, 54, 64, 1) 0%, rgba(27, 92, 92, 1) 27%, rgba(11, 44, 51, 1) 48%, rgba(19, 68, 71, 1) 73%, rgba(4, 28, 36, 1) 100%);
background: #111827 ;
background: linear-gradient(301deg,rgba(17, 24, 39, 1) 0%, rgba(31, 41, 55, 1) 27%, rgba(31, 41, 55, 1) 48%, rgba(31, 41, 55, 1) 73%, rgba(4, 28, 36, 1) 100%);
background: #081c30;
background: linear-gradient(301deg,rgba(8, 28, 48, 1) 0%, rgba(8, 35, 59, 1) 35%, rgba(1, 29, 51, 1) 57%, rgba(9, 22, 43, 1) 100%);
background: linear-gradient(135deg, #050a18 0%, #0a1733 50%, #091a2a 100%);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-primary);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.7;
}

/* Filters Section */
.filters-section {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-radius: 30px;
    margin: 40px 20px;
	background: #111827 ;
background: linear-gradient(301deg,rgba(17, 24, 39, 1) 0%, rgba(31, 41, 55, 1) 27%, rgba(31, 41, 55, 1) 48%, rgba(31, 41, 55, 1) 73%, rgba(4, 28, 36, 1) 100%);
background: #0d162b;
background: #081c30;
background: linear-gradient(301deg,rgba(8, 28, 48, 1) 0%, rgba(8, 35, 59, 1) 35%, rgba(1, 29, 51, 1) 57%, rgba(9, 22, 43, 1) 100%);
background: linear-gradient(135deg, #050a18 0%, #0a1733 50%, #091a2a 100%);
}

.filters-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 300px;
    padding: 15px 50px 15px 10px;
    border: 1px solid var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
	background: linear-gradient(301deg, rgb(17, 24, 39) 0%, rgb(31, 41, 55) 27%, rgb(31, 41, 55) 48%, rgb(31, 41, 55) 73%, rgb(4, 28, 36) 100%);
	background: #031c38;
	background: linear-gradient(301deg, rgb(17, 24, 39) 0%, rgb(31, 41, 55) 27%, rgb(31, 41, 55) 48%, rgb(31, 41, 55) 73%, rgb(4, 28, 36) 100%);
}
.image-text-container {
  display: flex;
  align-items: center;    /* vertikal mittig auf Desktop */
  gap: 16px;
}

/* Mobile Ansicht: Bild oben, Text darunter, beides zentriert */
@media (max-width: 600px) {
  .image-text-container {
    flex-direction: column;
    align-items: center;  /* zentriert Bild und Text horizontal */
    gap: 8px;
    text-align: center;   /* optional: Text auch zentrieren */
  }
}
.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.darkest-animated-border {
  position: relative;
  z-index: 0;
  border-radius: 1.5em;
  overflow: hidden;
  padding: 2em 2em;
  background: #080a17; /* Fast schwarz-blau für den Inhalt */
  color: #c3c8e6;     /* Helles, kühles Grau-Blau für Text */
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-align: center;
}

.darkest-animated-border::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    #0a0c1b,   /* Sehr dunkles Blau-Schwarz */
    #161a2e,   /* Tiefes Nachtblau */
    #22244d,   /* Dunkles Blau */
    #181d2f,   /* Dein gewünschter dunkler Farbton */
    #0a0c1b,
    #161a2e,
    #22244d
  );
  background-size: 200% 200%;
  animation: border-glow-darkest 4s linear infinite;
}

@keyframes border-glow-darkest {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
Verwendung:

xml
<div class="darkest-animated-border">
  Noch dunklerer, animierter Rahmen – jetzt mit #181d2f für eine besonders edle Wirkung!
</div>
Der Gradient ist jetzt noch stimmiger und wirkt besonders hochwertig und dezent, perfekt für luxuriöse Designs.

Ähnlich
Wie kann ich den violetten Ton in meinem CSS auf #181d2f ändern
Welche Schritte sind nötig, um den Farbverlauf mit #181d2f zu ersetzen
Gibt es eine einfache Methode, um alle violetten Töne durch #181d2f zu tauschen
Wie wirkt sich die Farbänderung auf das Design aus, wenn ich #181d2f verwende
Kann ich den Farbwechsel automatisch anpassen, um den violetten Ton durch #181d2f zu ersetzen

.dark-animated-border {
  position: relative;
  z-index: 0;
  border-radius: 1.5em;
  overflow: hidden;
  padding: 2em 2em;
  background: #10132a; /* Sehr dunkles Blau für den Inhalt */
  color: #e0e6ff;     /* Helles Blau für Text */
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-align: center;
}

.dark-animated-border::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    #222a64,   /* Dunkelblau */
    #2d1e4f,   /* Violett */
    #3b3b98,   /* Sattes Blau */
    #0a2342,   /* Fast Schwarz-Blau */
    #222a64,
    #2d1e4f,
    #3b3b98
  );
  background-size: 200% 200%;
  animation: border-glow-dark 4s linear infinite;
}

@keyframes border-glow-dark {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.filter-select {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: var(--bg-card);
    color: grey;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
	background: linear-gradient(301deg, rgb(17, 24, 39) 0%, rgb(31, 41, 55) 27%, rgb(31, 41, 55) 48%, rgb(31, 41, 55) 73%, rgb(4, 28, 36) 100%);
	
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Products Section */
.products-section {
    padding: 0px 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.products-count {
    color: var(--text-secondary);
    font-size: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Product Card Styles (inspired by reference) */
.product-card {
    background: var(--bg-card);
    border:1px solid var(--border-color2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
	background: #111827 ;
background: linear-gradient(301deg,rgba(17, 24, 39, 1) 0%, rgba(31, 41, 55, 1) 27%, rgba(31, 41, 55, 1) 48%, rgba(31, 41, 55, 1) 73%, rgba(4, 28, 36, 1) 100%);
background: linear-gradient(135deg, #050a18 0%, #0a1733 50%, #091a2a 100%);

}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-primary);
}

.product-image {
    //width: 100%;
  height: 200px;
  overflow: hidden;
    background: linear-gradient(135deg, var(--bg-tertiary2), var(--bg-secondary2));
	
    background-color:red;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
	background: linear-gradient(301deg,rgba(17, 24, 39, 1) 0%, rgba(31, 41, 55, 1) 27%, rgba(31, 41, 55, 1) 48%, rgba(31, 41, 55, 1) 73%, rgba(4, 28, 36, 1) 100%);
	background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
	
}


.product-image img {
  //width: 100%;
  //height: 100%;
  object-fit: cover; /* oder contain, je nach gewünschtem Verhalten */
  display: flex;
  justify-content: center;  /* horizontal zentrieren */
  align-items: center;     
}

.product-content {
    padding: 25px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

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

.product-category {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
	text-align:justify;
}

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

.product-price {
    display: block;
    flex-direction: column;
    align-items: flex-end;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.price-net {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* Loading Indicator */
.loading-indicator {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.loading-indicator.show {
    display: block;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-secondary2);background: #111827 ;
//background: linear-gradient(301deg,rgba(17, 24, 39, 1) 0%, rgba(31, 41, 55, 1) 27%, rgba(31, 41, 55, 1) 48%, rgba(31, 41, 55, 1) 73%, rgba(4, 28, 36, 1) 100%);
background: linear-gradient(135deg, #050a18 0%, #0a1733 50%, #091a2a 100%);
background: #242b30;
background: linear-gradient(270deg,rgba(36, 43, 48, 1) 0%, rgba(29, 36, 48, 1) 47%, rgba(27, 35, 48, 1) 100%);
    margin: 60px 20px;
    border-radius: 15px;
    text-align: center;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.newsletter-btn {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: var(--bg-secondary2);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-primary);
    border: 1px solid var(--border-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-primary);
}

.modal-body {
    padding: 30px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters-container {
        gap: 20px;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
}

.bild-mit-overlays {
  position: relative;
  display: inline-block;
}

.bild-mit-overlays img {
  display: block;
  width: 100%;
  height: auto;
}

.bild-mit-overlays::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
 background: linear-gradient(to bottom, rgba(0,30,80,0.6), rgba(0,0,0,0.2));
 background: linear-gradient(to bottom, rgba(60,30,80,0.3), rgba(40,0,50,0.1));
  pointer-events: none; /* Klicks gehen durch das Overlay */
}