/* Produkt-Seite mit spannenden Animationen und modernem Design */

.produkt-main {
    background-color: #ffffff;
}

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

/* Product Details Section mit Gradient Background */
.produkt-details-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Dekorative Hintergrund-Elemente für visuelles Interesse */
.produkt-details-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.produkt-details-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.produkt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Gallery mit Fade-In Animation */
.produkt-gallery {
    position: sticky;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Image Display mit Hover-Effekt */
.produkt-main-image {
    position: relative;
    width: 100%;
    height: 550px;
    background: transparent; /* Transparenter Hintergrund */
    border-radius: 0; /* Keine abgerundeten Ecken */
    overflow: hidden;
    box-shadow: none; /* Keinen Schatten */
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.produkt-main-image:hover {
    box-shadow: none; /* Auch beim Hover keinen Schatten */
    transform: none; /* Keine Transform beim Hover */
}

.main-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Kein Padding */
    background: transparent; /* Transparenter Hintergrund */
}

.main-image-slide.active {
    opacity: 1;
    z-index: 1;
    animation: zoomIn 0.6s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}

.main-image-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto; /* Auto-Breite statt 100% */
    height: auto; /* Auto-Höhe statt 100% */
    object-fit: contain; /* Contain statt cover - zeigt ganzes Bild zentriert */
    transition: transform 0.4s ease;
}

.produkt-main-image:hover .main-image-slide.active img {
    transform: none; /* Kein Zoom beim Hover */
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #999;
    font-size: 1.25rem;
}

/* Slider Arrows mit Gradient und Animation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #7cb342 0%, #6da036 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.4);
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #20620c 0%, #184a09 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 28px rgba(32, 98, 12, 0.5);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Thumbnails mit Hover-Animationen */
.produkt-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.thumbnail-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.3) 0%, rgba(32, 98, 12, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover {
    opacity: 0.85;
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.thumbnail-item:hover::after {
    opacity: 1;
}

.thumbnail-item.active {
    opacity: 1;
    border-color: #7cb342;
    box-shadow: 0 6px 24px rgba(124, 179, 66, 0.5);
    transform: scale(1.05);
}

.thumbnail-item.active::after {
    opacity: 0;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info mit Fade-In Animation */
.produkt-info {
    padding: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(74, 143, 42, 0.15);
    color: #2d5a1a;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

.produkt-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px 0;
    line-height: 1.2;
    position: relative;
    display: block;
}

/* Entferne dekorativen Unterstrich für Titel */
/* .produkt-title::after wurde entfernt */

/* Subtitle mit Gradient und Animation */
.produkt-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #7cb342 0%, #20620c 100%);
    padding: 18px 32px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 32px;
    box-shadow: 0 6px 24px rgba(124, 179, 66, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.produkt-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.produkt-subtitle:hover::before {
    left: 100%;
}

.produkt-subtitle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(124, 179, 66, 0.45);
}

.produkt-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555;
}

.produkt-description h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #333;
    margin: 40px 0 20px 0;
    position: relative;
    padding-left: 20px;
}

.produkt-description h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 60%;
    background: linear-gradient(180deg, #7cb342 0%, #20620c 100%);
    border-radius: 3px;
}

.produkt-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #20620c;
    margin: 30px 0 16px 0;
}

.produkt-description p {
    margin-bottom: 16px;
}

.produkt-description ul,
.produkt-description ol {
    margin: 20px 0 20px 30px;
}

.produkt-description li {
    margin-bottom: 12px;
    line-height: 1.8;
    position: relative;
    padding-left: 10px;
}

.produkt-description ul li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: #7cb342;
    font-weight: bold;
}

/* Bulletpoints Styles von About-Seite übernommen */
/* Produkt Bulletpoints */
.produkt-bulletpoints {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bulletpoint-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.0625rem;
    color: #333;
    transition: all 0.3s ease;
}

.bulletpoint-item:hover {
    transform: translateX(5px);
}

.bulletpoint-icon {
    width: 24px;
    height: 24px;
    background: #4a8f2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.bulletpoint-item:hover .bulletpoint-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 16px rgba(124, 179, 66, 0.45);
}

/* Ansprechpartner-Box innerhalb Produktinfo */
.produkt-contact-person {
    margin-top: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.produkt-contact-person:hover {
    border-color: #7cb342;
    box-shadow: 0 8px 30px rgba(124, 179, 66, 0.2);
    transform: translateY(-4px);
}

.contact-person-header {
    background: linear-gradient(135deg, #7cb342 0%, #20620c 100%);
    padding: 18px 24px;
}

.contact-person-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.contact-person-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 24px;
}

.contact-person-photo {
    flex-shrink: 0;
}

.contact-person-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #7cb342;
    box-shadow: 0 4px 16px rgba(124, 179, 66, 0.3);
}

.contact-person-info {
    flex: 1;
}

.contact-person-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.contact-person-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: #666;
}

.contact-person-detail svg {
    color: #7cb342;
    flex-shrink: 0;
}

.contact-person-detail a {
    color: #7cb342;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-person-detail a:hover {
    color: #20620c;
    text-decoration: underline;
}

.contact-opening-hours {
    padding: 20px 24px;
    background: #f0f8f0;
    border-top: 2px solid #e8e8e8;
    font-size: 0.9375rem;
}

.contact-opening-hours strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
}

.contact-opening-hours div {
    color: #666;
    line-height: 1.6;
}

/* Application Section mit Gradient Background */
.produkt-application {
    padding: 100px 0;
    background: linear-gradient(135deg, #7cb342 0%, #1e600a 100%);
    position: relative;
    overflow: hidden;
}

/* Dekorative Elemente */
.produkt-application::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Animation beim Scrollen */
.application-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.application-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.application-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 28px 0;
    line-height: 1.2;
}

.application-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

.application-text p {
    margin-bottom: 20px;
}

/* Application Image mit parallax-ähnlichem Effekt */
.application-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.2s;
}

.application-image.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.application-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.application-image:hover::after {
    opacity: 1;
}

.application-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.application-image:hover img {
    transform: scale(1.08);
}

/* Contact Section mit modernem Design */
.produkt-contact {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

.contact-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards mit Hover-Effekten und Animationen */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #7cb342 0%, #2c5282 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    border-color: #7cb342;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.25);
}

.contact-icon {
    color: #7cb342;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px 0;
}

.contact-card p {
    margin-bottom: 12px;
    color: #666;
    font-size: 1.0625rem;
}

.contact-card a {
    color: #7cb342;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7cb342;
    transition: width 0.3s ease;
}

.contact-card a:hover::after {
    width: 100%;
}

.contact-card a:hover {
    color: #20620c;
}

/* Email CTA mit animiertem Gradient */
.contact-email-cta {
    background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
    padding: 40px 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(249, 168, 37, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
}

.contact-email-cta.animate-in {
    opacity: 1;
    transform: scale(1);
}

.contact-email-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.contact-email-cta:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 50px rgba(249, 168, 37, 0.5);
}

.contact-email-cta svg {
    color: #ffffff;
    flex-shrink: 0;
}

.contact-email-cta span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-email-cta a {
    font-size: 1.625rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-email-cta a:hover {
    transform: scale(1.08);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Trust-Elemente Section */
.produkt-trust-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.9) 0%, rgba(44, 82, 130, 0.85) 100%);
}

.trust-elements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trust-item:hover {
    border-color: #7cb342;
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(124, 179, 66, 0.2);
}

.trust-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7cb342 0%, #20620c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.15) rotate(8deg);
}

.trust-text {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

/* Technische Daten Section */
.produkt-specs-section {
    padding: 80px 0;
    background: #ffffff;
}

.produkt-specs-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0 0 50px 0;
    position: relative;
}

.specs-table {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.spec-row {
    display: grid;
    grid-template-columns: 40% 60%;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background: #f8f9fa;
}

.spec-label {
    padding: 22px 30px;
    font-weight: 700;
    color: #fff;
    background: #7cb342;;
    font-size: 1.0625rem;
}

.spec-value {
    padding: 22px 30px;
    color: #666;
    font-size: 1.0625rem;
}

/* Lieferumfang Section */
.produkt-delivery-section {
    padding: 80px 0;
    background: #111827;
    position: relative;
    overflow: hidden;
}
.produkt-delivery-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-image: url('/wp-content/themes/he-solar/img/heb-solar-photovoltaikanlagen.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.produkt-delivery-section .container {
    position: relative;
    z-index: 2;
}

.produkt-delivery-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7cb342;
    text-align: center;
    margin: 0 0 50px 0;
    position: relative;
}

.delivery-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 28px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #7cb342;
    font-size: 1.0625rem;
    color: #333;
    transition: all 0.3s ease;
}

.delivery-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.25);
}

.delivery-item svg {
    color: #7cb342;
    flex-shrink: 0;
}

/* Responsive Breakpoints für alle Sektionen hinzugefügt */

/* Tablets und kleinere Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .produkt-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .produkt-gallery {
        position: relative;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trust-elements {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .produkt-title {
        font-size: 2.25rem;
    }
    
    .application-content h2 {
        font-size: 2rem;
    }
    
    .contact-header h2 {
        font-size: 2.25rem;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .produkt-details-section {
        padding: 50px 0;
    }
    
    .produkt-application {
        padding: 60px 0;
    }
    
    .produkt-contact {
        padding: 60px 0;
    }
    
    .produkt-specs-section {
        padding: 50px 0;
    }
    
    .produkt-delivery-section {
        padding: 50px 0;
    }
    
    .produkt-trust-section {
        padding: 40px 0;
    }
    
    .produkt-main-image {
        height: 400px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
    
    .thumbnail-item {
        width: 80px;
        height: 80px;
    }
    
    .produkt-title {
        font-size: 2rem;
    }
    
    .produkt-subtitle {
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .produkt-description {
        font-size: 1rem;
    }
    
    .contact-person-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-person-photo img {
        width: 100px;
        height: 100px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .trust-elements {
        grid-template-columns: 1fr;
    }
    
    .contact-email-cta {
        flex-direction: column;
        padding: 30px 35px;
        text-align: center;
    }
    
    .application-content h2 {
        font-size: 1.75rem;
    }
    
    .application-text {
        font-size: 1rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.125rem;
    }
    
    .specs-table {
        font-size: 0.9375rem;
    }
    
    .spec-row {
        grid-template-columns: 1fr;
    }
    
    .spec-label {
        border-bottom: none;
        padding: 18px 20px 10px 20px;
    }
    
    .spec-value {
        padding: 10px 20px 18px 20px;
    }
    
    .produkt-specs-section h2,
    .produkt-delivery-section h2 {
        font-size: 2rem;
    }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .produkt-main .container {
        padding: 0 15px;
    }
    
    .produkt-details-section {
        padding: 40px 0;
    }
    
    .produkt-application {
        padding: 50px 0;
    }
    
    .produkt-contact {
        padding: 50px 0;
    }
    
    .produkt-main-image {
        height: 300px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .thumbnail-item {
        width: 70px;
        height: 70px;
    }
    
    .produkt-title {
        font-size: 1.75rem;
    }
    
    .produkt-subtitle {
        font-size: 0.9375rem;
        padding: 12px 20px;
    }
    
    .produkt-description {
        font-size: 0.9375rem;
    }
    
    .produkt-description h2 {
        font-size: 1.5rem;
    }
    
    .produkt-description h3 {
        font-size: 1.25rem;
    }
    
    .bulletpoint-item {
        font-size: 0.9375rem;
    }
    
    .contact-person-header h3 {
        font-size: 1.125rem;
    }
    
    .contact-person-content {
        padding: 20px 15px;
    }
    
    .contact-person-name {
        font-size: 1rem;
    }
    
    .contact-person-detail {
        font-size: 0.875rem;
    }
    
    .contact-opening-hours {
        padding: 15px;
        font-size: 0.875rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card h3 {
        font-size: 1.25rem;
    }
    
    .contact-card p {
        font-size: 0.9375rem;
    }
    
    .contact-email-cta {
        padding: 25px 20px;
    }
    
    .contact-email-cta span {
        font-size: 1.125rem;
    }
    
    .contact-email-cta a {
        font-size: 1.25rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-text {
        font-size: 0.9375rem;
    }
    
    .application-content h2 {
        font-size: 1.5rem;
    }
    
    .application-text {
        font-size: 0.9375rem;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .produkt-specs-section h2,
    .produkt-delivery-section h2 {
        font-size: 1.75rem;
        margin-bottom: 35px;
    }
    
    .spec-label,
    .spec-value {
        padding: 15px;
        font-size: 0.875rem;
    }
    
    .delivery-item {
        padding: 16px 20px;
        font-size: 0.9375rem;
    }
}

/* Extra kleine Geräte (max-width: 400px) */
@media (max-width: 400px) {
    .produkt-main-image {
        height: 250px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .produkt-title {
        font-size: 1.5rem;
    }
    
    .contact-email-cta a {
        font-size: 1.125rem;
        word-break: break-all;
    }
}

.page-mini-slider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background-color: #20620c;
  }
  
  .mini-slider {
    width: 100%;
    height: 100%;
  }
  
  .mini-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Image wrapper with zoom animation */
  .mini-slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  
  .mini-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 12s ease-in-out infinite alternate;
  }
  
  @keyframes slowZoom {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }
  
  /* Green overlay */
  .mini-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  /* Decorative leaves - scaled down for mini slider */
  .mini-leaf {
    position: absolute;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    animation: fadeInLeaf 1.5s ease 0.5s forwards;
  }
  
  @keyframes fadeInLeaf {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 0.7;
      transform: translateY(0);
    }
  }
  
  .mini-leaf-left {
    left: 0;
    bottom: 0;
    height: 300px;
    width: auto;
  }
  
  .mini-leaf-right {
    right: 0;
    bottom: 0;
    height: 300px;
    width: auto;
  }
  
  /* Plus die responsive Media Queries aus Zeile 448-450 und 525-532 */