/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Schriften: Body = sans-serif (System-Stack, gute Bildschirmlesbarkeit).
       Überschriften = Serif (Palatino als CI-Schrift für Headlines).
       System-Stack ohne Webfont-Download: Palatino auf Mac/iOS,
       'Book Antiqua' als Palatino-Zwilling auf Windows, Georgia als
       universeller Serif-Fallback, 'serif' als letzte Sicherung. */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-serif: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #4a5c3a; /* Sanftes Dunkelgrün statt schwarz */
    background-color: #F8F5EB; /* Marken-CI: Heller Hintergrund */
}

/* Header Styles - WordPress Design nachgebaut */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Collapsible Header für Homepage */
.header-collapsible {
    transition: none;
    box-shadow: none;
}

.header-collapsible.expanded {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header klappt aus bei Hover über beigen Bereich */
.header-collapsible .header-top:hover ~ .logo-container,
.header-collapsible:hover .logo-container {
    animation: slideDownLogo 0.5s ease-out forwards;
}

.header-collapsible .header-top:hover ~ .header-bottom,
.header-collapsible:hover .header-bottom {
    animation: slideDownGreen 0.5s ease-out 0.3s forwards;
}

.header-collapsible .header-top:hover ~ .header-bottom .main-nav,
.header-collapsible .header-top:hover ~ .header-bottom .main-nav-mobile,
.header-collapsible:hover .main-nav,
.header-collapsible:hover .main-nav-mobile {
    animation: fadeInNav 0.3s ease-out 0.7s forwards;
}

/* Beiger Bereich bleibt immer sichtbar */
.header-collapsible .header-top {
    transform: translateY(0);
    box-shadow: none;
}

/* Hover-Zone auf die SICHTBAREN Teile beschränken: Die Layout-Box des
   Headers behält auch eingeklappt ihre volle Höhe (Kinder sind nur per
   transform verschoben) – ohne diesen Fix klappte das Menü schon aus,
   wenn die Maus im unsichtbaren Leerraum darunter stand (z.B. über dem
   ✕-Exit der Guided Tour, das dadurch unklickbar war). :hover der Kinder
   propagiert zum Container, die Ausklapp-Regeln oben greifen weiterhin. */
.header-collapsible {
    pointer-events: none;
}

.header-collapsible .header-top,
.header-collapsible .logo-container,
.header-collapsible .header-bottom {
    pointer-events: auto;
}

/* Logo und grüner Bereich sind eingeklappt */
.header-collapsible .logo-container {
    opacity: 0;
    transform: translate(-50%, -100px);
    transition: none;
}

.header-collapsible .header-bottom {
    transform: translateY(-100%);
    transition: none;
}

.header-collapsible .main-nav,
.header-collapsible .main-nav-mobile {
    opacity: 0;
}

/* Beim Ausklappen: Logo und Navigation animiert einblenden */

.header-collapsible.expanded .logo-container {
    animation: slideDownLogo 0.5s ease-out forwards;
}

.header-collapsible.expanded .header-bottom {
    animation: slideDownGreen 0.5s ease-out 0.3s forwards;
}

.header-collapsible.expanded .main-nav,
.header-collapsible.expanded .main-nav-mobile {
    animation: fadeInNav 0.3s ease-out 0.7s forwards;
}

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

@keyframes slideDownGreen {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInNav {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Menu Toggle Button */
.menu-toggle-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    background: rgba(91, 124, 49, 0.95);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.menu-toggle-btn:hover {
    background: #5B7C31;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.menu-toggle-btn.header-visible {
    background: #F8F5EB;
    color: #5B7C31;
    border-color: #5B7C31;
}

.menu-toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.menu-toggle-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Hide menu toggle on non-homepage */
body:not(.homepage) .menu-toggle-btn {
    display: none;
}

/* Hide menu toggle and auto-expand header on mobile */
@media (max-width: 768px) {
    .menu-toggle-btn {
        display: none !important;
    }
    
    .header-collapsible .logo-container {
        opacity: 1 !important;
        transform: translate(-50%, 0) !important;
        animation: none !important;
    }
    
    .header-collapsible .header-bottom {
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    .header-collapsible .main-nav,
    .header-collapsible .main-nav-mobile {
        opacity: 1 !important;
        animation: none !important;
    }
    
    .header-collapsible {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }
    
    .header-collapsible .header-top {
        box-shadow: 0 3px 8px rgba(0,0,0,0.2) !important;
    }
}

/* Oberer beiger Bereich */
.header-top {
    background-color: #F8F5EB; /* Marken-CI: Heller Hintergrund */
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2); /* Schatten unter dem gesamten beigen Bereich */
    z-index: 12;
}

/* Logo Container - bündig mit Unterkante des beigen Bereichs */
.logo-container {
    position: absolute;
    left: 50%;
    top: 100%; /* An der unteren Kante des beigen Bereichs */
    transform: translate(-50%, 0); /* Nur horizontal zentriert, vertikal bündig */
    z-index: 11;
}

/* Logo Halbkreis-Lasche - Teil des beigen Streifens */
.logo-circle {
    width: 130px; /* Optimierte Breite */
    height: 65px; /* Optimierte Höhe */
    background-color: #F8F5EB; /* Exakt gleiche Farbe wie beiger Streifen */
    border-radius: 0 0 65px 65px; /* Halbkreis nach unten - angepasst an neue Höhe */
    display: flex;
    align-items: flex-start; /* Logo an der Oberkante des Halbkreises */
    justify-content: center;
    /* box-shadow entfernt für nahtlosen Übergang */
    border: none; /* Kein Rand - nahtloser Übergang */
    margin-top: 0;
    padding-top: 0; /* Kein Padding oben für nahtlosen Übergang */
}

.logo-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: -50px; /* Logo nach oben verschieben - zentrierter */
}

/* Unterer grüner Bereich */
.header-bottom {
    background-color: #5B7C31; /* Marken-CI: Hintergrund grün */
    height: 120px; /* Höher, damit Navigation unter der Halbkreis-Lasche Platz hat */
    display: flex;
    align-items: flex-end; /* Navigation am unteren Rand */
    justify-content: center;
    padding-bottom: 5px; /* Abstand vom unteren Rand */
    padding-top: 70px; /* Platz für den Halbkreis */
    z-index: 10;
}

.logo-image {
    max-height: 100px; /* Noch größeres Logo */
    width: auto;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

/* Sprachumschaltung - rechts oben */
.lang-switches {
    position: absolute;
    top: 20px;
    right: 30px;
}

.lang-switch {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.lang-switch li a {
    padding: 0.4rem 0.7rem;
    text-decoration: none;
    color: #666;
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-switch li a:hover {
    background-color: #fff;
    color: #333;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

/* Hauptnavigation */
.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.main-nav a:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: calc(100vh - 200px);
}

/* Portal-spezifische Main-Anpassung */
.homepage .main {
    margin: 0 auto;
    padding: 0;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #5B7C31; /* Marken-CI: Hintergrund grün für Überschriften */
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #5B7C31; /* Marken-CI: Hintergrund grün für Überschriften */
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #5B7C31; /* Marken-CI: Hintergrund grün für Überschriften */
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Listen */
ul, ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #e1efce; /* Marken-CI: Footer */
    border-top: 1px solid #d0e0b8;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer p {
    margin-bottom: 1rem;
    color: #666;
}

.footer a {
    color: #666;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.875rem;
}

.footer a:hover {
    color: #333;
    text-decoration: underline;
}

/* Dropdown-Menü Styles */
.lang-switch-mobile,
.main-nav-mobile {
    display: none;
}

.lang-dropdown-btn,
.nav-dropdown-btn {
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-dropdown-btn:hover,
.nav-dropdown-btn:hover {
    background-color: #fff;
    color: #333;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

.nav-dropdown-btn {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-dropdown-btn:hover {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.lang-dropdown,
.nav-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1000;
    top: 100%;
    right: 0;
}

.nav-dropdown {
    left: 0;
    right: auto;
}

.lang-dropdown.show,
.nav-dropdown.show {
    display: block;
}

.lang-dropdown li,
.nav-dropdown a {
    display: block;
}

.lang-dropdown a,
.nav-dropdown a {
    color: #333;
    padding: 0.8rem 1rem;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.lang-dropdown a:hover,
.nav-dropdown a:hover {
    background-color: #f8f9fa;
    color: #5B7C31;
}

.lang-dropdown li:first-child a,
.nav-dropdown a:first-child {
    border-radius: 4px 4px 0 0;
}

.lang-dropdown li:last-child a,
.nav-dropdown a:last-child {
    border-radius: 0 0 4px 4px;
}

/* Responsive Design für Dropdown-Menüs */
@media (max-width: 768px) {
    /* Sprachumschaltung: Desktop ausblenden, Mobile anzeigen */
    .lang-switch-desktop {
        display: none;
    }
    
    .lang-switch-mobile {
        display: block;
        position: relative;
    }
    
    /* Navigation: Desktop ausblenden, Mobile anzeigen */
    .main-nav-desktop {
        display: none;
    }
    
    .main-nav-mobile {
        display: block;
        position: relative;
    }
}

/* Tablet-Bereich: Sprachumschaltung als Dropdown */
@media (min-width: 769px) and (max-width: 1023px) {
    .lang-switch-desktop {
        display: none;
    }
    
    .lang-switch-mobile {
        display: block;
        position: relative;
    }
    
    .main-nav {
        gap: 0.8rem !important;
    }
    
    .main-nav a {
        font-size: 0.7rem !important;
        padding: 0.5rem 0.5rem !important;
    }
}

/* Responsive Navigation für mittlere Bildschirmgrößen */
@media (min-width: 1024px) and (max-width: 1100px) {
    .main-nav {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
}

@media (min-width: 1101px) and (max-width: 1300px) {
    .main-nav {
        gap: 1.2rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.7rem 0.9rem;
    }
}

/* Responsive Design für Mobile Geräte */
@media (max-width: 768px) {
    /* Header-Anpassungen für Mobile: nur der beige Streifen.
       Der grüne Bereich entfällt komplett – die Navigation sitzt als
       Dropdown links oben im Streifen (Pendant zum Sprach-Dropdown rechts).
       Der Logo-Halbkreis ragt in die Seite (typisch WL-Design). */
    .header-top {
        height: 60px; /* Kompakter auf Mobile */
    }

    .header-bottom {
        display: none; /* Grüner Streifen entfällt auf Mobile */
    }

    /* Menü-Dropdown links oben im beigen Streifen */
    .main-nav-mobile {
        position: absolute;
        top: 10px;
        left: 15px;
        z-index: 13;
    }

    /* Button-Optik an den Sprach-Button (rechts) angleichen –
       heller Stil statt der weißen Variante für den grünen Balken */
    .nav-dropdown-btn {
        background-color: rgba(255,255,255,0.8);
        color: #666;
        border: 1px solid #ddd;
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
        text-transform: none;
        letter-spacing: normal;
    }

    /* Logo-Anpassungen für Mobile */
    .logo-circle {
        width: 100px; /* Kleinerer Halbkreis auf Mobile */
        height: 50px;
        border-radius: 0 0 50px 50px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.15); /* löst sich vom Streifen, ragt in die Seite */
    }
    
    .logo-circle a {
        margin-top: -35px; /* Angepasst für kleineren Halbkreis */
    }
    
    .logo-image {
        max-height: 70px; /* Kleineres Logo auf Mobile */
    }
    
    /* Sprachumschaltung für Mobile */
    .lang-switches {
        top: 10px;
        right: 15px;
    }
    
    .lang-switch {
        gap: 0.3rem;
        flex-wrap: wrap;
    }
    
    .lang-switch li a {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    /* Navigation für Mobile */
    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        letter-spacing: 0.3px;
    }
    
    /* Content-Anpassungen für Mobile */
    .main {
        padding: 0 1rem;
        margin: 1rem auto;
    }
    
    /* Typography für Mobile */
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    h3 {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    /* Product Grid für Mobile */
    .product-list {
        grid-template-columns: 1fr; /* Einzelne Spalte auf Mobile */
        gap: 1rem;
    }
    
    .product-item {
        padding: 1rem;
    }
    
    /* Home Info für Mobile */
    .home-info {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    /* Ticket 4: Mobile Responsive für neue Box-Designs */
    .content-box,
    .content-box-beige {
        padding: 1.5rem;
        margin: 1rem 0;
        border-radius: 12px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-box {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .product-box .product-image {
        height: 150px;
        border-radius: 8px;
    }
    
    .product-box .product-title {
        font-size: 1.2rem;
    }
    
    .webshop-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .webshop-box {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .manufacturer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .manufacturer-box {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .info-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .post-single {
        padding: 0;
        border-radius: 0;
    }
    
    .post-entry {
        padding: 1.5rem;
        border-radius: 12px;
    }
}

/* Sehr kleine Bildschirme (unter 480px) */
@media (max-width: 480px) {
    .header-top {
        height: 50px;
    }
    
    .header-bottom {
        height: 90px;
        padding-top: 40px;
    }
    
    .logo-circle {
        width: 80px;
        height: 40px;
        border-radius: 0 0 40px 40px;
    }
    
    .logo-circle a {
        margin-top: -25px;
    }
    
    .logo-image {
        max-height: 50px;
    }
    
    .lang-switches {
        top: 8px;
        right: 10px;
    }
    
    .lang-switch li a {
        padding: 0.2rem 0.4rem;
        font-size: 0.65rem;
    }
    
    .main-nav {
        gap: 0.5rem;
    }
    
    .main-nav a {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
}

/* Landscape Mode auf Mobile - Minimalistischer Header */
@media (max-height: 650px) and (orientation: landscape) {
    .header {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .header-top {
        height: 45px !important;
        min-height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 15px;
        position: relative;
    }
    
    .header-bottom {
        height: 45px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 15px;
        flex-wrap: nowrap;
    }
    
    /* Logo-Container neu positionieren - zentriert in header-top */
    .logo-container {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }
    
    /* Logo vereinfacht - komplett in header-top (beiger Bereich), zentriert */
    .logo-circle {
        width: auto !important;
        height: 100% !important;
        max-height: 45px !important;
        border-radius: 0 !important;
        background: none !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .logo-circle a {
        margin-top: 0 !important;
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }
    
    .logo-image {
        max-height: 32px !important;
        width: auto !important;
        display: block;
        object-fit: contain;
    }
    
    .lang-switches {
        top: 10px !important;
        right: 10px !important;
    }
    
    .lang-switch li a {
        padding: 0.2rem 0.3rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Navigation zentriert */
    #menu {
        gap: 0.3rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
    
    #menu li a {
        font-size: 0.8rem !important;
        padding: 0.3rem 0.5rem !important;
        white-space: nowrap !important;
    }
}

/* Extra kleiner Landscape Mode (< 400px Höhe) */
@media (max-height: 400px) and (orientation: landscape) {
    .header-top {
        height: 35px !important;
        padding-left: 10px;
    }
    
    .header-bottom {
        height: 35px !important;
        padding-left: 10px;
    }
    
    .logo-image {
        max-height: 28px !important;
    }
    
    #menu li a {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.4rem !important;
    }
}

/* Kleinere Überschrift bei geringer Höhe */
@media (max-height: 1050px) {
    .portal-greeting {
        font-size: 2.5rem !important;
    }
}

@media (max-height: 800px) {
    .portal-greeting {
        font-size: 2rem !important;
    }
}

@media (max-height: 650px) and (orientation: landscape) {
    .portal-greeting {
        font-size: 1.6rem !important;
    }
}

/* Tablet-Ansicht (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-nav {
        gap: 2rem;
    }
    
    .main-nav a {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }
    
    .logo-circle {
        width: 120px;
        height: 60px;
        border-radius: 0 0 60px 60px;
    }
    
    .logo-circle a {
        margin-top: -45px;
    }
    
    .logo-image {
        max-height: 85px;
    }
}

/* ===== TICKET 4: MODERNE BOX-DESIGN & CI-RICHTLINIEN ===== */

/* Basis Content-Box Klassen */
.content-box {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.content-box:hover {
    box-shadow: 0 4px 16px rgba(91, 124, 49, 0.12);
    transform: translateY(-2px);
}

.content-box-beige {
    background-color: #F8F5EB;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.content-box-beige:hover {
    box-shadow: 0 4px 16px rgba(91, 124, 49, 0.12);
    transform: translateY(-2px);
}

/* Produkt-Boxen mit modernem Design */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-box {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-box:hover {
    box-shadow: 0 6px 20px rgba(91, 124, 49, 0.15);
    transform: translateY(-4px);
}

.product-box .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-box .product-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #5B7C31;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-box .product-artnr {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-box .product-description {
    color: #4a5c3a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Info-Boxen für verschiedene Bereiche */
.info-box {
    background-color: #F8F5EB;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #5B7C31;
}

.info-box h3 {
    color: #5B7C31;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Webshop-Boxen - Erweitert für Importeure mit Sprachflaggen */
.webshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.webshop-box {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: left;
}

.webshop-box:hover {
    box-shadow: 0 6px 20px rgba(91, 124, 49, 0.15);
    transform: translateY(-3px);
    border-color: #5B7C31;
}

/* Titel-Zeile mit Firmenname und Sprachflaggen */
.webshop-box .box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.webshop-box .company-name {
    color: #5B7C31;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.webshop-box .language-flags {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex-shrink: 0;
}

/* Allgemeine Flaggen-Styles */
.flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: inline-block;
    background-size: cover;
    background-position: center;
    vertical-align: middle;
    margin-left: 4px;
}

.webshop-box .language-flags .flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: inline-block;
    background-size: cover;
    background-position: center;
}

/* Flaggen-Hintergründe (CSS-basiert für bessere Performance) */
.flag.de { background: linear-gradient(to bottom, #000 33%, #dd0000 33%, #dd0000 66%, #ffce00 66%); }
.flag.at { background: linear-gradient(to bottom, #ed2939 33%, #ffffff 33%, #ffffff 66%, #ed2939 66%); }
.flag.ch { background: linear-gradient(to right, #ff0000 0%, #ff0000 100%); position: relative; }
.flag.ch::after { content: '+'; position: absolute; color: white; font-size: 16px; font-weight: bold; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.flag.be { background: linear-gradient(to right, #000 33%, #fdda24 33%, #fdda24 66%, #ef3340 66%); }
.flag.en { background: linear-gradient(45deg, #012169 25%, transparent 25%), linear-gradient(-45deg, #012169 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #012169 75%), linear-gradient(-45deg, transparent 75%, #012169 75%), linear-gradient(to right, #c8102e 50%, transparent 50%); }
.flag.fr { background: linear-gradient(to right, #002395 33%, #ffffff 33%, #ffffff 66%, #ed2939 66%); }
.flag.it { background: linear-gradient(to right, #009246 33%, #ffffff 33%, #ffffff 66%, #ce2b37 66%); }
.flag.es { background: linear-gradient(to bottom, #aa151b 25%, #f1bf00 25%, #f1bf00 75%, #aa151b 75%); }
.flag.nl { background: linear-gradient(to bottom, #ae1c28 33%, #ffffff 33%, #ffffff 66%, #21468b 66%); }
.flag.pt { background: linear-gradient(to right, #046a38 40%, #da020e 40%); }
.flag.sk { background: linear-gradient(to bottom, #ffffff 33%, #0b4ea2 33%, #0b4ea2 66%, #ee1c25 66%); }

/* Länder-Information */
.webshop-box .countries {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.webshop-box .countries strong {
    color: #5B7C31;
    font-weight: 600;
}

/* Bild-Bereich */
.webshop-box .webshop-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 1rem;
}

.webshop-box .box-image {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.webshop-box .image-placeholder {
    width: 100%;
    height: 150px;
    background-color: #F8F5EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    border: 2px dashed #ddd;
}

/* Beschreibung */
.webshop-box .description {
    color: #4a5c3a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* URL-Link */
.webshop-box .shop-url {
    display: inline-block;
    background-color: #5B7C31;
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.webshop-box .shop-url:hover {
    background-color: #4a6629;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(91, 124, 49, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Mobile Anpassungen für Webshop-Boxen */
@media (max-width: 768px) {
    .webshop-box .box-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .webshop-box .company-name {
        font-size: 1.2rem;
        min-width: auto;
    }
    
    .webshop-box .language-flags .flag {
        width: 20px;
        height: 15px;
    }
}

/* Hersteller-Boxen */
.manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.manufacturer-box {
    background-color: #F8F5EB;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
}

.manufacturer-box:hover {
    box-shadow: 0 6px 20px rgba(91, 124, 49, 0.15);
    transform: translateY(-3px);
}

/* Buttons mit CI-Design */
.btn-primary {
    background-color: #5B7C31;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #4a6629;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 124, 49, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: #5B7C31;
    border: 2px solid #5B7C31;
    border-radius: 12px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background-color: #5B7C31;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 124, 49, 0.3);
    text-decoration: none;
}

/* Verbesserte Typografie */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333333;
}

h1 {
    font-size: 2.5rem;
    color: #5B7C31;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

h2 {
    font-size: 2rem;
    color: #5B7C31;
    margin: 2.5rem 0 1.5rem 0;
}

h3 {
    font-size: 1.5rem;
    color: #333333;
    margin: 2rem 0 1rem 0;
}

h4 {
    font-size: 1.25rem;
    color: #333333;
    margin: 1.5rem 0 0.8rem 0;
}

/* Bilder in Boxen */
.box-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.box-image-small {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

/* Layout-Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-spacing {
    margin: 3rem 0;
}

/* Legacy-Styles für Rückwärtskompatibilität */
.home-info {
    background-color: #F8F5EB;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #5B7C31;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 6px 20px rgba(91, 124, 49, 0.15);
    transform: translateY(-3px);
}

.product-item h3 {
    margin-top: 0;
    color: #5B7C31;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Post-Styles für Artikel - Vereinfacht für Grid-Layout */
.post-single {
    /* Hintergrund entfernt für transparentes Design */
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 2rem 0;
}

.post-header {
    /* Komplett ausgeblendet */
    display: none;
}

.post-title {
    color: #5B7C31;
    margin-bottom: 1rem;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-content {
    line-height: 1.7;
    color: #4a5c3a;
}

.post-content h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.post-content p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.post-content strong {
    color: #5B7C31;
    font-weight: 600;
}

/* Listen-Styles für Artikel-Übersichten */
.posts {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.post-entry {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
}

.post-entry:hover {
    box-shadow: 0 6px 20px rgba(91, 124, 49, 0.15);
    transform: translateY(-2px);
}

.entry-header h2 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
}

.entry-header h2 a {
    color: #5B7C31;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-header h2 a:hover {
    color: #4a6629;
    text-decoration: none;
}

.entry-content {
    color: #4a5c3a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.entry-footer {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid #F8F5EB;
}

/* ===== PRODUCT PAGE STYLES WITH IMAGES & VARIANTS ===== */

/* Product single page layout */
.product-single {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    padding: 2.5rem;
    margin: 2rem 0;
}

/* Main product content - image left, info right */
.product-main-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.product-image-container {
    flex: 0 0 400px;
    max-width: 400px;
}

.product-main-image {
    width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.product-info-container {
    flex: 1;
    min-width: 0;
}

.product-header {
    margin-bottom: 2rem;
}

.product-artnr {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 2rem;
    font-weight: 600;
    color: #5B7C31;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-description {
    font-size: 1.1rem;
    color: #4a5c3a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.product-content {
    line-height: 1.7;
    color: #4a5c3a;
}

.product-content p {
    margin-bottom: 1.5rem;
}

.product-content strong {
    color: #5B7C31;
    font-weight: 600;
}

/* Product variants section */
.product-variants {
    border-top: 2px solid #F8F5EB;
    padding-top: 2rem;
}

.product-variants h3 {
    color: #5B7C31;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.variant-item {
    background-color: #F8F5EB;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.variant-item:hover {
    box-shadow: 0 4px 12px rgba(91, 124, 49, 0.12);
    transform: translateY(-2px);
    border-color: #5B7C31;
}

.variant-image {
    margin-bottom: 1rem;
    text-align: center;
}

.variant-image-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.variant-artnr {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.variant-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.variant-title a {
    color: #5B7C31;
    text-decoration: none;
    transition: color 0.3s ease;
}

.variant-title a:hover {
    color: #4a6629;
    text-decoration: underline;
}

.current-variant {
    font-size: 0.9rem;
    color: #5B7C31;
    font-weight: 500;
    font-style: italic;
}

.variant-description {
    font-size: 0.9rem;
    color: #4a5c3a;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.variant-size {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
}

/* Responsive design for product pages */
@media (max-width: 768px) {
    .product-single {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .product-main-content {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .product-image-container {
        flex: none;
        max-width: 100%;
    }
    
    .product-title {
        font-size: 1.6rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .variants-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .variant-item {
        padding: 1.2rem;
    }
    
    .variant-image-img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .product-single {
        padding: 1rem;
    }
    
    .product-main-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-title {
        font-size: 1.4rem;
    }
    
    .variant-item {
        padding: 1rem;
    }
    
    .variant-image-img {
        max-width: 80px;
    }
}

/* ===== PRODUCT OVERVIEW GRID LAYOUT ===== */

/* Product overview grid for product list pages */
.product-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-overview-item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-overview-item:hover {
    box-shadow: 0 6px 20px rgba(91, 124, 49, 0.15);
    transform: translateY(-3px);
    border-color: #5B7C31;
}

.product-overview-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
}

.product-overview-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-overview-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5B7C31;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    text-align: center;
}

.product-overview-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-image-placeholder {
    background-color: #F8F5EB;
    border: 2px dashed #ddd;
    color: #666;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-overview-artnr {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
}

/* Responsive design for product overview grid */
@media (max-width: 768px) {
    .product-overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .product-overview-link {
        padding: 1.5rem;
    }
    
    .product-overview-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .product-overview-image {
        height: 150px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .product-overview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .product-overview-link {
        padding: 1.2rem;
    }
    
    .product-overview-title {
        font-size: 1.1rem;
    }
    
    .product-overview-image {
        height: 120px;
    }
}

/* Desktop: 4 columns for larger screens */
@media (min-width: 1200px) {
    .product-overview-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 2rem auto;
    }
}

/* VISIONÄRE STARTSEITE - "Das Portal zum Weg ins Neue" */

/* Portal Gate - Das Tor zwischen den Welten mit Parallax */
.portal-gate {
    min-height: 200vh; /* Normal - Portal Zoom und Fade */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    z-index: 1;
}

.gate-container {
    position: relative;
    width: 100%;
    height: 200vh;
}

.gate-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    transition: opacity 0.8s ease;
}

.gate-image.fade-out {
    opacity: 0;
    pointer-events: none;
    /* Wichtig: Wenn ausgeblendet, komplett verstecken */
    visibility: hidden;
}

.gate-img {
    position: relative;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.1) saturate(1.2);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    top: 8vh;
    transition: top 0.1s ease-out;
}

.gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.1) 30%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Weißer Fade-Overlay für Übergang Portal -> Content */
.gate-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F8F5EB;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.gate-content {
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.portal-greeting {
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.portal-invitation {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(255,255,255,0.6);
}

.scroll-portal-indicator {
    position: fixed;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    cursor: pointer;
    z-index: 4;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    transition: opacity 0.3s ease;
}

.scroll-portal-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-portal-indicator span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.scroll-portal-indicator .arrow {
    font-size: 2rem;
    font-weight: normal;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-portal-indicator:hover {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.05);
    transition: all 0.3s ease;
}

/* Transition-Section nicht mehr verwendet - Überschrift ist jetzt auf Blick-ins-Alte Bild */

/* Blick ins Alte - Bild mit 2 sequenziellen Texten (Überschrift + Einleitung) */
.blick-ins-alte-section {
    min-height: 300vh; /* Genug Platz für 2 Texte + Scroll-Effekt */
    position: relative;
    background: transparent;
    z-index: 15;
}

.blick-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.blick-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 1;
}

.blick-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 10;
}

/* Gemeinsame Styles für beide Texte */
.blick-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
    padding: 2rem;
    max-width: 90%;
    z-index: 10;
}

.blick-text.visible {
    opacity: 1;
}

/* Überschrift "Die Reise beginnt" */
.blick-heading h3 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Einleitungssatz "Im ansteigenden Chaos..." */
.blick-intro-text p {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0;
}

/* Fragen Section - nach dem Bild */
.questions-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 20;
}

.questions-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.question-item {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.question-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.question-item .question-text {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 500;
    color: #333333;
    text-align: center;
    line-height: 1.5;
    padding: 2rem;
}

/* Nach den Fragen */
.after-questions-section {
    min-height: 80vh;
    background: #F8F5EB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    z-index: 20;
    position: relative;
}

.after-questions-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #4a5c3a;
}

/* WLW Logo nach intro_conclusion */
.wlw-logo-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wlw-logo {
    max-width: 30%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.wlw-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .wlw-logo {
        max-width: 50%;
    }
}

/* Mobile Anpassung für Transition-Text */
@media (max-width: 940px) {
    .transition-text {
        font-size: 1.3rem;
    }
    
    .transition-text h3 {
        font-size: 2.5rem;
    }
    
    .question-text {
        font-size: 2rem;
    }
    
    .blick-question {
        width: 90%;
    }
}

/* Gemälde Sektion - Vereinfacht mit CSS Fade-in am Ende */
.painting-section {
    min-height: 80vh;
    position: relative;
    background: #F8F5EB;
    z-index: 30;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.painting-container {
    position: relative;
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 0.3s;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.painting-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Willkommens-Bereich nach dem Portal - Vereinfacht */
.welcome-after-portal {
    display: none; /* Durch transition-section ersetzt */
}

/* Wesenskräfte Titel - Zurück zur ursprünglich eleganten Box */
.wesenskraefte-intro {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(45deg, #F8F5EB 0%, #e8e2d4 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wesenskraefte-title {
    font-size: 4rem;
    font-weight: 200;
    color: #5B7C31;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 4px rgba(91, 124, 49, 0.1);
    position: static;
    transform: none;
    opacity: 1;
    transition: none;
}

.wesenskraefte-title.visible {
    opacity: 1;
}

.wesenskraefte-title.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
}

/* Wandlungshelfer - Charaktere mit Apple-Style Scroll-Pausen */
.wandlungshelfer-section {
    background: #F8F5EB;
    padding: 4rem 0;
}

.wandlungshelfer-item {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.helper-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

/* Wechselseitige Anordnung */
.item-left .helper-content {
    flex-direction: row;
}

.item-right .helper-content {
    flex-direction: row-reverse;
}

.helper-symbol {
    flex: 0 0 150px;
}

.symbol-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5B7C31, #7a9b57);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(91, 124, 49, 0.3);
    transition: transform 0.3s ease;
}

.symbol-circle:hover {
    transform: scale(1.05);
}

.symbol-initial {
    font-size: 3rem;
    font-weight: 200;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Neue Styles für Wesenskraft-Bilder */
.helper-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(91, 124, 49, 0.3);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #5B7C31, #7a9b57);
    display: flex;
    align-items: center;
    justify-content: center;
}

.helper-image:hover {
    transform: scale(1.05);
}

.wesenskraft-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.wesenskraft-image:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

.helper-text {
    flex: 1;
    text-align: left;
}

.item-right .helper-text {
    text-align: right;
}

.helper-name {
    font-size: 2.2rem;
    font-weight: 600;
    color: #5B7C31;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.05em;
}

.helper-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #7a9b57;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.helper-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5c3a;
    margin: 0;
    max-width: 500px;
}

.item-right .helper-description {
    margin-left: auto;
}

/* Call to Action - Die Einladung */
.journey-cta {
    background: linear-gradient(135deg, #5B7C31 0%, #7a9b57 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

/* Weg ins Neue - Bild */
.weg-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F5EB 0%, #e8e2d4 100%);
    border-radius: 8px;
}

.weg-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Community Section */
.community-section {
    background: #F8F5EB;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 35;
}

.community-container {
    max-width: 900px;
    margin: 0 auto;
}

.community-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #5B7C31;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.community-content {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a5c3a;
    margin-bottom: 3rem;
}

.community-content p {
    margin-bottom: 1.5rem;
}

.btn-community {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #5B7C31 0%, #7a9b57 100%);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(91, 124, 49, 0.3);
}

.btn-community:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 124, 49, 0.4);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 200;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-content p {
    font-size: 1.3rem;
    margin: 0 0 3rem 0;
    opacity: 0.9;
}

.btn-journey {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #5B7C31;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-journey:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    background: #F8F5EB;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .portal-greeting {
        font-size: 2.5rem;
    }
    
    .portal-invitation {
        font-size: 1.2rem;
    }
    
    .scroll-portal-indicator span {
        font-size: 1rem;
    }
    
    .scroll-portal-indicator .arrow {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .painting-title {
        font-size: 2.5rem;
    }
    
    .wesenskraefte-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .wandlungshelfer-item {
        margin-bottom: 4rem;
    }
    
    .helper-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem;
    }
    
    .helper-text {
        text-align: center !important;
    }
    
    .helper-description {
        margin: 0 auto !important;
    }
    
    .symbol-circle {
        width: 120px;
        height: 120px;
    }
    
    .symbol-initial {
        font-size: 2.5rem;
    }
    
    .helper-name {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .portal-greeting {
        font-size: 2rem;
    }
    
    .portal-invitation {
        font-size: 1rem;
    }
    
    .painting-title {
        font-size: 2rem;
    }
    
    .wesenskraefte-title {
        font-size: 2rem;
    }
}

/* ===========================================
   FIRMENPROFIL / COMPANY PROFILE STYLES
   =========================================== */

/* Company Profile Header */
.company-profile-header {
    background: linear-gradient(135deg, #F8F5EB 0%, #e1efce 100%);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(91, 124, 49, 0.1);
}

.company-profile-header .header-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.company-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.header-text h1 {
    color: #5B7C31;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.company-tagline {
    font-size: 1.1rem;
    color: #4a5c3a;
    font-style: italic;
    margin: 0;
}

/* Company Content Wrapper */
.company-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-content h2 {
    color: #5B7C31;
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    text-align: center;
    position: relative;
}

.company-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #5B7C31;
    margin: 0.5rem auto;
    border-radius: 2px;
}

/* Name Meaning Box */
.name-meaning {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.name-meaning strong {
    color: #5B7C31;
    font-weight: 700;
}

/* Location Section */
.location-section {
    margin: 2rem 0;
}

.location-text {
    margin-bottom: 2rem;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.facility-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(91, 124, 49, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 124, 49, 0.15);
}

.facility-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.facility-card h3 {
    color: #5B7C31;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.facility-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    margin: 3rem 0;
}

.team-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.team-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5c3a;
}

.team-image {
    text-align: center;
}

.team-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Philosophy Section */
.philosophy-section {
    margin: 3rem 0;
}

.philosophy-section .content-box-beige {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

.philosophy-section strong {
    color: #5B7C31;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    margin: 4rem 0 2rem 0;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Shop Buttons für Webshop-Seite */
.shop-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.company-url {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    color: #5B7C31;
    text-decoration: none;
    border: 2px solid #5B7C31;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.company-url:hover {
    background-color: #5B7C31;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 124, 49, 0.3);
}

/* Responsive Design für Firmenprofil */
@media (max-width: 768px) {
    .company-profile-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .company-logo {
        width: 100px;
    }
    
    .header-text h1 {
        font-size: 2rem;
    }
    
    .company-tagline {
        font-size: 1rem;
    }
    
    .company-content {
        padding: 0 1rem;
    }
    
    .company-content h2 {
        font-size: 1.7rem;
        margin: 2rem 0 1rem 0;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-image {
        order: -1;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .shop-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .facility-image {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .company-profile-header {
        padding: 1.5rem 0.5rem;
    }
    
    .header-text h1 {
        font-size: 1.7rem;
    }
    
    .company-tagline {
        font-size: 0.9rem;
    }
    
    .company-content h2 {
        font-size: 1.5rem;
    }
    
    .facility-card {
        padding: 1rem;
    }
    
    .facility-image {
        max-height: 120px;
    }
}

/* ===========================================
   VEVAVI IBERIA SPECIFIC STYLES
   =========================================== */

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(91, 124, 49, 0.1);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(91, 124, 49, 0.15);
}

.mission-card h3 {
    color: #5B7C31;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.mission-card p {
    color: #4a5c3a;
    font-size: 1rem;
    line-height: 1.6;
}

/* Invitation Section */
.invitation-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.invitation-section strong {
    color: #5B7C31;
    font-size: 1.2rem;
}

/* Company Subtitle */
.company-subtitle {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Responsive Design für VeVaVi */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .mission-card {
        padding: 1.5rem 1rem;
    }
    
    .mission-card h3 {
        font-size: 1.2rem;
    }
    
    .invitation-section strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mission-card {
        padding: 1.25rem 0.75rem;
    }
    
    .mission-card h3 {
        font-size: 1.1rem;
    }
    
    .mission-card p {
        font-size: 0.95rem;
    }
}

/* ===========================================
   DEFINITIONEN STARTSEITE STYLES
   =========================================== */

/* Definition Sections */
.definition-section {
    padding: 4rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    z-index: 25; /* Höher als gate-image */
}

.definition-section.weg-ins-neue {
    background: linear-gradient(135deg, #F8F5EB 0%, rgba(248, 245, 235, 0.8) 100%);
}

.definition-section.wahre-lebenswerte {
    background: linear-gradient(135deg, #e1efce 0%, rgba(225, 239, 206, 0.8) 100%);
}

.definition-section.produkt-reise {
    background: linear-gradient(135deg, #F8F5EB 0%, rgba(248, 245, 235, 0.9) 100%);
}

/* Einladungs-Sektion */
.einladung-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e1efce 0%, #F8F5EB 100%);
    text-align: center;
}

.einladung-container {
    max-width: 1000px;
    margin: 0 auto;
}

.einladung-content {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #4a5c3a;
}

.einladung-content strong {
    color: #5B7C31;
    font-weight: 700;
}

.final-invitation {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.invitation-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #4a5c3a;
}

.invitation-values {
    font-size: 1.6rem;
    line-height: 2.2;
    margin: 2rem 0;
    color: #5B7C31;
}

.invitation-cta {
    font-size: 2rem;
    margin-top: 2.5rem;
    color: #5B7C31;
    font-weight: 700;
    letter-spacing: 1px;
}

.definition-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.definition-content {
    position: relative;
    z-index: 2;
}

.definition-title {
    font-size: 3rem;
    color: #5B7C31;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.definition-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #5B7C31 0%, #7a9b57 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.definition-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a5c3a;
    max-width: 800px;
    margin: 0 auto;
}

.definition-text strong {
    color: #5B7C31;
    font-weight: 700;
    font-size: 1.1em;
}

.definition-text br {
    margin-bottom: 0.5rem;
}

/* Responsive Design für Definitionen */
@media (max-width: 768px) {
    .definition-section {
        padding: 3rem 1rem;
        margin: 1.5rem 0;
    }
    
    .definition-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .definition-title::after {
        width: 80px;
        height: 3px;
    }
    
    .definition-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .definition-section {
        padding: 2rem 0.5rem;
    }
    
    .definition-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .definition-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Manufacturer logo styles */
.manufacturer-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.manufacturer-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.manufacturer-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.manufacturer-link:hover {
    opacity: 0.8;
}

.manufacturer-logo {
    width: 120px;
    height: auto;
    display: block;
}

.manufacturer-text {
    font-size: 1rem;
    color: #5B7C31;
    font-weight: 500;
}

/* Product FAQ styles */
.product-faq {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    color: #5B7C31;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: #4a5c3a;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer a {
    color: #5B7C31;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Webshop contact info styles */
.webshop-contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #5B7C31;
}

.webshop-contact-info p {
    color: #4a5c3a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.webshop-contact-info p:last-child {
    margin-bottom: 0;
}

.webshop-contact-info a {
    color: #5B7C31;
    text-decoration: none;
    font-weight: 500;
}

.webshop-contact-info a:hover {
    text-decoration: underline;
}

/* ========================================
   PRODUCT FILTER
   ======================================== */

.manufacturer-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 3rem auto 3rem;
  padding: 1.5rem;
  flex-wrap: wrap;
  background: rgba(91, 124, 49, 0.03);
  border-radius: 20px;
  max-width: 900px;
}

.filter-btn {
  position: relative;
  padding: 0.875rem 2rem;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #5b7c31;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(91, 124, 49, 0.08),
              0 1px 3px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(91, 124, 49, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.filter-btn:hover::before {
  width: 300px;
  height: 300px;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(91, 124, 49, 0.15),
              0 3px 8px rgba(0, 0, 0, 0.08);
  color: #4a6527;
}

.filter-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.filter-btn.active {
  background: linear-gradient(135deg, #5b7c31 0%, #4a6527 100%);
  color: white;
  box-shadow: 0 6px 16px rgba(91, 124, 49, 0.35),
              0 2px 8px rgba(91, 124, 49, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.filter-btn.active::before {
  background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active:hover {
  background: linear-gradient(135deg, #4a6527 0%, #3d5320 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(91, 124, 49, 0.4),
              0 4px 12px rgba(91, 124, 49, 0.25);
}

/* Icon/Badge for active filter */
.filter-btn.active::after {
  content: '✓';
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  font-size: 0.85rem;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn.active::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

/* Product transition effects */
.product-overview-item {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-overview-item.filtered-out {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .manufacturer-filter {
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 16px;
  }
  
  .filter-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .filter-btn.active::after {
    right: 0.6rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .manufacturer-filter {
    padding: 0.75rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
  }
}
