/* ======================
   GOOGLE FONTS & FALLBACKS
====================== */
/* Playfair Display - Regular */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/playfair-display-v39-latin-regular.woff2') format('woff2');
}

/* Playfair Display - Medium (500) */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/playfair-display-v39-latin-500.woff2') format('woff2');
}

/* Playfair Display - SemiBold (600) */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/playfair-display-v39-latin-600.woff2') format('woff2');
}

/* Playfair Display - Bold (700) */
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/playfair-display-v39-latin-700.woff2') format('woff2');
}

/* Poppins - Regular */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/poppins-v23-latin-regular.woff2') format('woff2');
}

/* Poppins - Medium (500) */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/poppins-v23-latin-500.woff2') format('woff2');
}

/* Poppins - SemiBold (600) */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/poppins-v23-latin-600.woff2') format('woff2');
}

/* Poppins - Bold (700) */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/poppins-v23-latin-700.woff2') format('woff2');
}                                                                                                                                                                                                                    

/* ======================
   ROOT VARIABLES & BASICS
====================== */
:root {
  --primary: #2a2a2a;
  --secondary: #d4a373;
  --accent: #4a8b8d;
  --cta: #d4a373;
  --cta-text: #2a2a2a;
  --accent-light: #f8e9d9;
  --text-light: #f8f8f8;
  --text-dark: #333333;
  --bg-light: #f5f3f0;
  --border-color: #e0d6cc;
  --overlay: rgba(0, 0, 0, 0.7);
  --section-spacing: 100px;
  --section-spacing-mobile: 70px;
  --rose-gold: #b76e79;
  --deep-teal: #2c5e5e;
  --soft-lilac: #c8a2c8;
  --warm-beige: #e6d5b8;
  --btn-radius: 2px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  background: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
}

/* ======================
   LAYOUT & CONTAINER
====================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-spacing) 0;
  position: relative;
}

/* ======================
   HEADER & NAVIGATION
====================== */
header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.logo {
  height: 42px;
  width: auto;
  z-index: 102;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo svg {
  height: 100%;
  width: auto;
}

/* Desktop Navigation */
.nav-primary {
  display: flex;
  gap: 10px;
}

.nav-primary a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  transition: all 0.3s;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-primary a:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px;
  width: calc(100% - 30px);
  height: 2px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-primary a:hover:after {
  transform: scaleX(1);
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 102;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--rose-gold);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--rose-gold);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 101;
  padding: 100px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
}

.mobile-menu a:after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: width 0.3s;
}

.mobile-menu a:hover:after {
  width: 50px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ======================
   HERO SECTION
====================== */
.hero {
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(42,42,42,0.9) 100%), 
    url('https://i.postimg.cc/t4JyLJ2t/parfum-femme-infinite-love-1080x-webp.jpg') no-repeat center/cover;
  color: var(--text-light);
  padding: 140px 0;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero h1 .gold {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.hero h1 .gold:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  letter-spacing: 0.3px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ======================
   BUTTONS & CTAs
====================== */
.cta-3d {
  display: inline-block;
  padding: 18px 40px;
  background: var(--cta);
  color: var(--cta-text);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--btn-radius);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(183, 141, 101, 0.3);
  margin: 20px 0;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-3d:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.cta-3d:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(183, 141, 101, 0.4);
  background: var(--rose-gold);
  color: white;
}

.cta-3d:hover:after {
  left: 100%;
}

.cta-subtext {
  font-style: italic;
  margin-top: 10px;
  color: var(--secondary);
  font-size: 1.1rem;
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--btn-radius);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-link {
  color: var(--deep-teal);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  transition: color 0.3s;
}

.btn-link:hover {
  color: var(--rose-gold);
}

.btn-link:after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s;
}

.btn-link:hover:after {
  transform: translateX(5px);
}

/* ======================
   TRUST BADGES & CERTIFICATES
====================== */
.cert-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.cert-badge:hover {
  transform: translateY(-5px);
}

.cert-badge:hover:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  border-radius: 3px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.cert-badge svg {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.cert-badge:hover svg {
  transform: scale(1.1);
}

.cert-badge span {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}

/* ======================
   TRUST ICONS
====================== */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.trust-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.trust-icon:hover {
  transform: translateY(-5px);
}

.trust-icon i {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--rose-gold), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.trust-icon span {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ======================
   TESTIMONIALS
====================== */
.testimonials {
  background: linear-gradient(to bottom right, #f9f5f0, white);
  padding: 80px 0;
  margin: 60px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(to bottom right, var(--accent-light), white);
  padding: 30px;
  border-radius: 8px;
  position: relative;
  border-left: 3px solid var(--rose-gold);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(183, 110, 121, 0.1);
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(183, 141, 101, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--warm-beige);
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--rose-gold);
}

/* ======================
   PRODUCT CARDS
====================== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--rose-gold);
}

.section-title h2:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--rose-gold);
  opacity: 0.5;
}

.section-title p {
  color: var(--text-dark);
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--rose-gold);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-top-color: var(--deep-teal);
}

.card-img-container {
  overflow: hidden;
  height: 300px;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 25px;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 600;
}

.card-text {
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ======================
   BLOG & CONTENT
====================== */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  border-top: 3px solid var(--soft-lilac);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top-color: var(--deep-teal);
}

.blog-img-container {
  overflow: hidden;
  height: 200px;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: var(--rose-gold);
  font-size: 0.85rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.blog-date i {
  margin-right: 8px;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}

.blog-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* ======================
   ABOUT & FOOTER
====================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.made-in {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.made-in i {
  font-size: 2rem;
  color: var(--rose-gold);
  margin-right: 15px;
}

footer {
  background: linear-gradient(to bottom, var(--primary), #1a1a1a);
  color: #fff;
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  border-top: 5px solid var(--rose-gold);
}

.footer-certs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.footer-certs svg {
  height: 80px;
  width: auto;
  transition: transform 0.3s;
}

.footer-certs svg:hover {
  transform: scale(1.1);
}

.footer-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent-light);
  margin: 40px auto;
  max-width: 600px;
  font-style: italic;
  position: relative;
}

.footer-quote:before,
.footer-quote:after {
  content: '"';
  color: rgba(232, 200, 162, 0.3);
  font-size: 3rem;
  position: absolute;
}

.footer-quote:before {
  top: -20px;
  left: -30px;
}

.footer-quote:after {
  bottom: -40px;
  right: -30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ======================
   FORMULAR-STYLES
====================== */
.contact-form {
  background: linear-gradient(to bottom, white, var(--accent-light));
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--warm-beige);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--deep-teal);
  outline-offset: 2px;
  border-color: var(--deep-teal);
}

/* ======================
   FAQ STYLES
====================== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--accent-light);
  border-left: 3px solid var(--rose-gold);
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item[open] {
  background: white;
  border-left: 3px solid var(--deep-teal);
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
}

.faq-item summary::before {
  content: "✔";
  position: absolute;
  left: 15px;
  color: var(--rose-gold);
  font-weight: bold;
  margin-right: 10px;
}

.faq-item[open] summary::before {
  content: "▼";
}

.faq-item summary h3 {
  display: inline;
  padding-left: 30px;
}

.faq-answer {
  padding: 0 20px 20px 65px;
  color: var(--text-dark);
  line-height: 1.8;
}

/* ======================
   TABLE STYLES
====================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

th {
  background: linear-gradient(to right, var(--deep-teal), var(--accent));
  color: white;
  padding: 12px 15px;
  text-align: left;
}

td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
}

tr:nth-child(even) {
  background-color: rgba(232, 200, 162, 0.1);
}

tr:hover {
  background-color: rgba(183, 110, 121, 0.05);
}

td:nth-child(2) {
  color: var(--rose-gold);
  font-weight: 500;
}

td:nth-child(3) {
  color: var(--deep-teal);
  font-weight: 600;
}

/* ======================
   SEO CONTENT STYLES
====================== */
#seo-content ol {
  counter-reset: item;
  padding-left: 0;
  list-style: none;
}

#seo-content ol li {
  display: block;
  margin-bottom: 15px;
  counter-increment: item;
  position: relative;
  padding-left: 30px;
}

#seo-content ol li:before {
  content: counter(item) ".";
  color: var(--deep-teal);
  font-weight: 600;
  position: absolute;
  left: 0;
}

#seo-content a {
  color: var(--deep-teal);
  font-weight: 500;
  border-bottom: 1px dotted var(--deep-teal);
  transition: all 0.3s;
}

#seo-content a:hover {
  color: var(--rose-gold);
  border-bottom-style: solid;
}

/* ======================
   INFOGRAFIK-STYLES (Aktualisiert)
====================== */
.infografik-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
  color: white;
  padding: 60px 0;
}

.infografik-section .section-title h2 {
  color: white;
}

.infografik-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.infografik-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
}

.infografik-header {
  margin-bottom: 16px;
  text-align: center;
}

.infografik-badge {
  display: inline-block;
  background: linear-gradient(to right, rgba(212, 163, 115, 0.12), rgba(93, 160, 162, 0.12));
  color: var(--secondary);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  border: 1px solid rgba(212, 163, 115, 0.15);
}

.infografik-flakon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
  justify-items: center;
  margin: 0 auto 16px;
}

.infografik-flakon-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.infografik-flakon-container:hover {
  transform: translateY(-5px);
}

.infografik-flakon-svg {
  width: 100%;
  max-width: 70px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.infografik-flakon-extrait .infografik-flakon-svg {
  filter: drop-shadow(0 6px 12px rgba(74, 139, 141, 0.25));
}

.infografik-flakon-caption {
  text-align: center;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.3;
}

.infografik-flakon-caption strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.infografik-flakon-caption span {
  color: #666;
  font-size: 10px;
}

.infografik-flakon-extrait .infografik-flakon-caption span {
  color: var(--secondary);
  font-weight: 500;
}

.infografik-bars {
  background: rgba(245, 245, 245, 0.9);
  border-radius: 12px;
  padding: 14px;
  margin: 16px auto;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.infografik-bars-title {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-size: 13px;
  text-align: center;
  font-weight: 600;
}

.infografik-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.infografik-bar-label {
  width: 85px;
  font-size: 11px;
  color: #666;
}

.infografik-bar-track {
  flex: 1;
  height: 12px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.infografik-bar-fill {
  height: 100%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 6px rgba(212, 163, 115, 0.25);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.infografik-bar-fill::after {
  content: attr(data-value);
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 8px;
  font-weight: 600;
}

.infografik-bar-fill.edt {
  width: 40%;
  background: linear-gradient(to right, #e6b880, #d4a373);
}

.infografik-bar-fill.edp {
  width: 60%;
  background: linear-gradient(to right, #d8929c, #c97d89);
}

.infografik-bar-fill.extrait {
  width: 75%;
  background: linear-gradient(to right, #6db5b7, #5da0a2);
}

.infografik-fact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.infografik-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background: rgba(245, 245, 245, 0.9);
  border-radius: 8px;
}

.infografik-fact .icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.infografik-fact strong {
  font-size: 12px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.infografik-fact span {
  font-size: 10px;
  color: #666;
}

.infografik-timeline {
  margin-top: 20px;
  padding: 15px;
  background: rgba(245, 245, 245, 0.9);
  border-radius: 8px;
}

.infografik-timeline-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* ======================
   ANIMATIONEN
====================== */
.glow-pulse {
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  0% { filter: drop-shadow(0 0 5px rgba(109, 181, 183, 0.5)); }
  100% { filter: drop-shadow(0 0 15px rgba(109, 181, 183, 0.8)); }
}

.liquid-shine {
  animation: liquidShine 3s infinite alternate;
}

@keyframes liquidShine {
  0% { opacity: 0.2; }
  100% { opacity: 0.4; }
}

/* ======================
   SCIENCE BOX
====================== */
.science-box {
  background: linear-gradient(135deg, var(--deep-teal) 0%, var(--accent) 100%);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.science-box h2 {
  color: white;
  margin-bottom: 15px;
}

.science-box h2 i {
  margin-right: 10px;
}

.science-box p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}

/* ======================
   COUNTER STYLES
====================== */
.counter {
  margin: 15px 0;
  font-weight: 600;
  color: var(--secondary);
}

.live-counter {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

/* ======================
   ACCESSIBILITY
====================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ======================
   RESPONSIVE STYLES
====================== */
@media (max-width: 768px) {
  :root {
    --section-spacing: 70px;
  }
  
  .nav-primary {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .infografik-flakon-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .infografik-fact-cards {
    grid-template-columns: 1fr;
  }
  
  .trust-icons {
    gap: 20px;
  }
  
  .trust-icon i {
    font-size: 2rem;
  }
  
  .footer-certs {
    gap: 20px;
  }
  
  .footer-certs svg {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .cta-3d {
    padding: 15px 30px;
    font-size: 0.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 20px;
  }
}

/* NUR FÜR DEN SLIDER - Ohne globale Styles */
.luxury-slider-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #faf7f5 0%, #f0eae3 100%);
  position: relative;
  overflow: hidden;
}

.luxury-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 163, 115, 0.3), transparent);
}

.luxury-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.luxury-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.luxury-slide {
  flex: 0 0 auto;
  margin: 0 15px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fff;
}

.luxury-slide:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.luxury-slide-image {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.luxury-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-slide:hover .luxury-slide-image img {
  transform: scale(1.1);
}

.luxury-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0.8;
  transition: opacity 0.4s;
}

.luxury-slide:hover .luxury-overlay {
  opacity: 0.6;
}

.luxury-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: #fff;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s;
}

.luxury-slide:hover .luxury-slide-content {
  transform: translateY(0);
}

.luxury-slide-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.luxury-slide-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.luxury-slide-cta {
  display: inline-block;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.luxury-slide-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.luxury-slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.luxury-slider-prev,
.luxury-slider-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.luxury-slider-prev:hover,
.luxury-slider-next:hover {
  background: #d4a373;
  color: white;
  transform: scale(1.1);
}

.luxury-slider-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 12px;
}

.luxury-slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.luxury-slider-pagination .swiper-pagination-bullet-active {
  background: #d4a373;
  transform: scale(1.3);
}

/* Responsive Design für Slider */
@media (max-width: 1200px) {
  .luxury-slide {
    flex: 0 0 calc(50% - 30px);
  }
}

@media (max-width: 900px) {
  .luxury-slider-container {
    padding: 0 30px;
  }
  
  .luxury-slide {
    flex: 0 0 calc(100% - 30px);
  }
  
  .luxury-slider-prev,
  .luxury-slider-next {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .luxury-slider-section {
    padding: 80px 0;
  }
  
  .luxury-slide-image {
    height: 400px;
  }
  
  .luxury-slide-content {
    padding: 25px;
  }
  
  .luxury-slide-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .luxury-slider-container {
    padding: 0 20px;
  }
  
  .luxury-slide {
    margin: 0 10px;
    flex: 0 0 calc(100% - 20px);
  }
  
  .luxury-slide-image {
    height: 350px;
  }
  
  .luxury-slide-content {
    padding: 20px;
  }
  
  .luxury-slide-content h3 {
    font-size: 1.4rem;
  }
  
  .luxury-slider-prev,
  .luxury-slider-next {
    width: 45px;
    height: 45px;
  }
}

/* ======================
   INFOGRAFIK-STYLES (Aktualisiert für kombinierte Sektion)
====================== */

/* Ursprüngliche Infografik-Styles anpassen */
.infografik-section {
  background: transparent;
  padding: 0;
  margin: 0;
}

.infografik-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  margin: 0 auto;
}

/* ======================
   COMBINED SECTION STYLES
====================== */
.combined-section {
  padding: 80px 0;
}

.combined-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Textbereich etwas breiter */
  gap: 60px;
  align-items: start;
}

.text-content-wrapper {
  padding-right: 30px;
}

.infografik-wrapper {
  position: relative;
  height: fit-content;
  position: sticky;
  top: 100px; /* Leichtes Sticky-Verhalten für bessere Sichtbarkeit */
}

/* Anpassungen für die Infografik in der kombinierten Sektion */
.combined-section .infografik-section {
  background: transparent;
  padding: 0;
}

.combined-section .infografik-card {
  max-width: 100%;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design für kombinierte Sektion */
@media (max-width: 1024px) {
  .combined-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .text-content-wrapper {
    padding-right: 0;
  }
  
  .infografik-wrapper {
    position: static;
  }
}

@media (max-width: 768px) {
  .combined-section {
    padding: 60px 0;
  }
  
  .combined-content {
    gap: 30px;
  }
  
  .infografik-card {
    padding: 15px;
  }
}

/* Anpassungen für Infografik-Elemente in der kombinierten Sektion */
.combined-section .infografik-flakon-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.combined-section .infografik-flakon-svg {
  max-width: 60px;
}

.combined-section .infografik-bars {
  padding: 12px;
  margin: 20px 0;
}

.combined-section .infografik-fact-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.combined-section .infografik-timeline {
  padding: 12px;
  margin-top: 20px;
}

/* Styling für SEO Content Links */
#seo-content a {
  color: var(--deep-teal);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted var(--deep-teal);
  transition: all 0.3s ease;
  padding-bottom: 1px;
}

#seo-content a:hover {
  color: var(--rose-gold);
  border-bottom: 1px solid var(--rose-gold);
}

#seo-content ol li a,
#seo-content ul li a {
  border-bottom: none;
  font-weight: 600;
}

#seo-content ol li a:hover,
#seo-content ul li a:hover {
  color: var(--rose-gold);
  border-bottom: 1px solid var(--rose-gold);
}

/* Styling für die Top 10 Liste */
#seo-content ol {
  counter-reset: item;
  padding-left: 0;
  list-style: none;
}

#seo-content ol li {
  display: block;
  margin-bottom: 15px;
  counter-increment: item;
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}

#seo-content ol li:before {
  content: counter(item) ".";
  color: var(--deep-teal);
  font-weight: 600;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

/* Verbesserte Tabellen-Styles für bessere Lesbarkeit */
#seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  background: white;
}

#seo-content th {
  background: linear-gradient(to right, var(--deep-teal), var(--accent));
  color: white;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
}

#seo-content td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.5;
}

#seo-content tr:nth-child(even) {
  background-color: rgba(232, 200, 162, 0.1);
}

#seo-content tr:hover {
  background-color: rgba(183, 110, 121, 0.05);
}

#seo-content td:nth-child(2) {
  color: var(--rose-gold);
  font-weight: 500;
}

#seo-content td:nth-child(3) {
  color: var(--deep-teal);
  font-weight: 600;
}

/* Responsive Design für Tabellen */
@media (max-width: 768px) {
  #seo-content table {
    font-size: 0.9rem;
  }
  
  #seo-content th,
  #seo-content td {
    padding: 8px 10px;
  }
}