:root {
    --primary-color: #56C5C0; /* Zartes Rosa #ffb6c1 */  
    --price-old: red; 	
    --primary-dark: #e6a2ad;
    --text-color: #333;
    --light-text: #777;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Platz für fixed header */
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;

}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent; /* Transparenter Hintergrund */
    transition: background-color 0.3s ease;
}
header.sticky {
    background-color: var(--white); /* Hintergrund beim Scrollen */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    max-height: 60px; /* Maximale Höhe für das Logo */
    padding: 10px 0; /* Optional: Abstand oben/unten */
}

.logo-img {
    height: auto;
    width: auto;
    max-height: 100%; /* Begrenzt auf Container-Höhe */
    max-width: 200px; /* Maximale Breite des Logos */
    object-fit: contain;
}


.desktop-nav ul {
    display: flex;
}

.desktop-nav ul li {
    margin: 0 15px;
}

.desktop-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.desktop-nav ul li a:hover {
    color: var(--primary-color);
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}
.delivery-info i {
    color: inherit;
    font-size: 0.9em;
}
.delivery-info {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}
.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons a {
    color: var(--text-color);
    margin-left: 20px;
    font-size: 18px;
    transition: var(--transition);
}

.nav-icons a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
}

.product-gallery {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding: 0 10px 10px;
}

.thumbnail {
    width: 25%;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}

/* ===== PRODUKTKARTEN-LISTE ===== */
.product-features {
  margin: 15px 0;
  padding: 0 10px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.feature-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Individuelle Icons für jeden Punkt */
.feature-item:nth-child(1):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2356C5C0'%3E%3Cpath d='M12 2L5 12l7 10 7-10L12 2zm0 15.5L7.5 12 12 6.5 16.5 12 12 17.5z'/%3E%3C/svg%3E");
}
.feature-item:nth-child(1):hover:before {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.feature-item:nth-child(2):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2356C5C0'%3E%3Cpath d='M12 2a10 10 0 0 0-7.1 17L12 12l7.1 7.1A10 10 0 0 0 12 2zm0 15.5L5.5 12 12 6.5 18.5 12 12 17.5z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.feature-item:nth-child(3):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2356C5C0'%3E%3Cpath d='M3 15h2v2H3zm4 0h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM3 11h2v2H3zm4 0h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM3 7h2v2H3zm4 0h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z'/%3E%3C/svg%3E");
}

.feature-item:nth-child(4):before { /* Anpassen der child-Nummer */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2356C5C0'%3E%3Cpath d='M3 5h2v14H3zm4 0h2v14H7zm4 0h3v14h-3zm5 0h2v14h-2zm4 0h1v14h-1z'/%3E%3C/svg%3E");
}

.feature-item:nth-child(5):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2356C5C0'%3E%3Cpath d='M19 7h-3V5H3v14h16v-8h3l-3-4zm-4 6h-2v2h2v-2z'/%3E%3Cpath d='M9 12H7v2h2v-2zm4 0h-2v2h2v-2z' style='fill:%2328a745'/%3E%3C/svg%3E");
}
.feature-item:nth-child(6):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2356C5C0'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10z'/%3E%3Cpath d='M12 13l3 3-3 3v-2H8v-2h4v-2z'/%3E%3C/svg%3E");
}


.feature-item:nth-child(2):before,
.feature-item:nth-child(3):before {
  animation: pulse-energy 2s infinite;
}

@keyframes pulse-energy {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.8; transform: scale(1); }
}

/* Wissenschaftliche Präzision durch dünne Linien */
.feature-item:nth-child(3):before {
  background-size: 18px 18px; /* Präzisere Darstellung */
}

/* Info-Bar Styling */
.info-bar {
  display: flex;
  justify-content: space-around;
  background-color: #f5f5f5; /* Hellgrau */
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000; /* Schwarzer Text */
  font-weight: 500;
  font-size: 0.95rem;
}

.info-icon {
  width: 20px;
  height: 20px;
  color: inherit; /* Übernimmt die Textfarbe */
}


/* Aktionsbanner */
.promo-banner {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 12px 0;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 10; /* Über dem Header */
}

.promo-text {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.9; }
  50% { opacity: 1; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
  100% { opacity: 0.9; }
}

.countdown {
  color: var(--primary-color);
  font-weight: 800;
}


/* Anpassung für Header-Abstand */




/* Hero Section */
.hero-section {
    margin-top: 0 !important;
}
header {
  position: relative; /* Ändern von fixed zu relative */
}
.hero-image {
    height: 100vh; /* Volle Viewport-Höhe */
    min-height: 100vh; /* Mindesthöhe sicherstellen */
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
}

.hero-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    color: var(--white);
    z-index: 5;
    bottom: 80px; /* Abstand vom unteren Rand */
    top: auto; /* Überschreibt eventuelle vorherige top-Werte */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
    padding: 80px 20px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

/* Main Content Sections */
section {
    padding: 80px 0;
}

.intro-section {
    text-align: center;
    background-color: var(--background-light);
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.products-section {
    background-color: var(--white);
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.product-image {
    height: 500px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
   	
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color:  var(--primary-color);
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color:  var(--price-old);
    font-size: 1rem;
    font-weight: 400;
    margin-left: 10px;
}

.product-info p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.product-rating {
    display: flex;
    align-items: center;
    margin: 12px 0;
  padding: 12px 15px;
}

.stars {
    display: inline-flex;
    position: relative;
    font-size: 0;
}

.star {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 2px;
}

.star.full {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
}

.star.half {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><linearGradient id="half" x1="0" x2="100%" y1="0" y2="0"><stop offset="50%" stop-color="%23FFD700"/><stop offset="50%" stop-color="%23DDD"/></linearGradient></defs><path fill="url(%23half)" d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
}

.rating-info {
    margin-left: 8px;
    font-size: 14px;
    color: var(--light-text);
}

.rating-value {
    font-weight: 600;
    color: var(--text-color);
}

.rating-count {
    margin-left: 4px;
}



.payment-icon {
    width: 50px;
    height: 35px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.payment-icon:hover {
    filter: grayscale(0%);
}

.benefits-section {
    background-color: var(--background-light);
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-section {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonials-section {
    background-color: var(--background-light);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-container {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.testimonial {
    min-width: 100%;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-align: center;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.newsletter-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--black);
    color: var(--white);
}

.newsletter-form button:hover {
    background-color: #333;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 15px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

.feature-item {
    font-size: 0.8rem;
    padding-left: 25px;
  }
  
  .feature-item:before {
    width: 18px;
    height: 18px;
  }
    .product-gallery {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding: 0 10px 10px;
}

.thumbnail {
    width: 25%;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}
    hero-content {
        bottom: 60px;
    }

    .about-content,
    .newsletter-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
  
    .newsletter-form {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
info-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }
  
  .info-item {
    font-size: 0.9rem;
  }

 .promo-banner {
    font-size: 0.9rem;
    padding: 8px 0;
  }
.product-gallery {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding: 0 10px 10px;
}

.thumbnail {
    width: 25%;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}

   .delivery-info {
        font-size: 0.7rem;
    }  
    .desktop-nav ul {
        display: none;
    }

 .testimonials-slider {
        padding: 0 30px;
    }
    
    .testimonial {
        padding: 30px;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }

 .star {
        width: 26px;
        height: 26px;
    }
    
    .rating-info {
        font-size: 14px;
    }
    
   .hamburger {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Animation für Hamburger Icon */
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    

    
    .hero-content {
        padding-top: 50px; /* Header Höhe ausgleichen */
    }
    

    
    section {
        padding: 60px 0;
    }
    
    .intro-section h2,
    .products-section h2,
    .benefits-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
     .hero-image {
        height: 100vh;
        min-height: -webkit-fill-available; /* Für Mobile Browser */
    }

.product-payment-methods {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 10px;
    border-radius: 20px;
    align-items: center;
}

.payment-icon {
    width: 50px;
    height: 35px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.payment-icon:hover {
    filter: grayscale(0%);
}
   .logo {
        max-height: 50px; /* Kleinere Höhe auf Mobilgeräten */
    }
    
    .logo-img {
        max-width: 180px;
    }
.feature-item {
    font-size: 0.8rem;
    padding-left: 25px;
  }
  
  .feature-item:before {
    width: 18px;
    height: 18px;
  }

}

@media (max-width: 576px) {
   .hero-content {
        bottom: 40px;
    }
    .product-gallery {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding: 0 10px 10px;
}

.thumbnail {
    width: 25%;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .btn {
        padding: 10px 20px;
    }
    
    .product-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }
    
    .newsletter-form button {
        margin-top: 10px;
    }
.logo {
        height: 35px;
    }
}
@media (max-width: 480px) {
    .product-payment-methods {
        position: static;
        justify-content: center;
        margin-top: 15px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.7);
    }
.product-gallery {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding: 0 10px 10px;
}

.thumbnail {
    width: 25%;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}
 .logo {
        height: 30px;
    }

 .testimonials-slider {
        padding: 0 25px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
    }
}
    
    .hero-image {
        height: 60vh;
        min-height: 400px;
    }
}