/* --- 1. DESIGN SYSTEM --- */
:root {
    --primary-green: #15704B;   
    --primary-hover: #0f5236;
    --bg-light: #E8F5E9;        
    --bg-white: #F1F8E9;        
    --bg-science: #F9FAFB;    
    --text-main: #111827;       
    --text-muted: #4B5563;      
    --border-color: #C5E1A5;    
    --font-main: 'Inter', sans-serif;
    --radius-card: 16px; 
    --shadow-subtle: 0 4px 6px -1px rgba(21, 112, 75, 0.08), 0 2px 4px -1px rgba(21, 112, 75, 0.04);
    --shadow-hover: 0 10px 15px -3px rgba(21, 112, 75, 0.15), 0 4px 6px -2px rgba(21, 112, 75, 0.1);
}

html { scroll-behavior: smooth; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========================================
   NEUE SCHRIFTARTEN (Prata & Montserrat)
   ========================================= */

/* 1. Fließtext: Montserrat (Modern & Klar) */
body, p, li, a, span, button, input, textarea, select {
    font-family: 'Montserrat', sans-serif;
}

/* 2. Überschriften: Prata (Elegant & Editorial) */
h1, h2, h3, h4, h5, h6,
.logo-text,
.hero-title,
.header-headline,
.blog-title,
.widget-title,
.legal-title {
    font-family: 'Prata', serif;
    font-weight: 400; /* Prata hat nur einen Schnitt */
    letter-spacing: 0.5px;
}

/* Optional: Button-Texte wirken oft in Montserrat Bold besser als in Prata */
.btn, button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; padding: 0; }
img { display: block; max-width: 100%; }

/* Globale Titel-Stile */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}
.section-header-center h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
}
.section-header-center p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* NAV LINKS - Jetzt als Liste gestylt */
.nav-links { 
    display: flex; 
    gap: 32px; 
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500; 
    font-size: 0.95rem; 
    margin-left: auto;
    margin-right: 40px;
}

.nav-links li { display: inline-block; }

.nav-links a { text-decoration: none; color: inherit; transition: 0.2s; }
.nav-links a:hover { color: var(--primary-green); }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    gap: 8px;
}
.btn-primary { background-color: var(--primary-green); color: white; border: none; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-1px); }
.btn-outline { background-color: white; border: 2px solid var(--primary-green); color: var(--primary-green); }
.btn-outline:hover { background-color: var(--primary-green); color: white; }

.btn-vitality {
    background-color: #ffffff;
    color: #15704B;
    border: none;
    padding: 12px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-vitality:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background-color: #f0f0f0;
}

.btn-header-white {
    background-color: #ffffff;
    color: #15704B;
    border: none;
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-header-white:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}

/* --- 2. TOP BAR & NAV --- */
.top-bar {
    background-color: #ffffff; 
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    width: 100%;
}
.top-dot { color: var(--primary-green); margin: 0 8px; }

nav {
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- DESKTOP DROPDOWN MENU --- */

/* Damit das Dropdown relativ zum Eltern-Element positioniert wird */
.nav-links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Das Dropdown-Menü (Standardmäßig versteckt) */
.dropdown-menu {
    display: none; /* Versteckt */
    position: absolute;
    top: 100%; /* Direkt unter dem Menüpunkt */
    left: 50%;
    transform: translateX(-50%); /* Horizontal zentriert */
    background: #ffffff;
    min-width: 240px; /* Breite des Dropdowns */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 15px 0;
    z-index: 1000;
    border-top: 3px solid var(--primary-green); /* Grüner Akzent oben */
    
    /* Kleine Animation */
    opacity: 0;
    transition: opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 10px; /* Kleiner Abstand für Animation */
}

/* Mouseover-Effekt: Menü anzeigen */
.nav-links li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    margin-top: 0; /* Animation nach oben */
}

/* Links im Dropdown */
.dropdown-menu li {
    display: block;
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap; /* Verhindert Umbruch */
}

/* Hover-Effekt für die einzelnen Links */
.dropdown-menu a:hover {
    background-color: #F9FAFB;
    color: var(--primary-green);
    padding-left: 30px; /* Kleiner Rutscher nach rechts */
}

/* Kleiner Pfeil nach oben (optional, für Optik) */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent var(--primary-green) transparent;
}

.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 40px; height: 40px;
    background-color: var(--primary-green);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem;
}
.logo-text { font-weight: 700; font-size: 1.25rem; line-height: 1.1; letter-spacing: -0.02em; color: #111; }

/* --- 3. HEADER SECTION --- */
.header-section {
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1544568100-847a948585b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    color: #111;
    padding: 6rem 5%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #050505; 
    display: flex;
    align-items: center;
    min-height: 85vh; 
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

.header-content { max-width: 600px; }
.header-badge { background: #E8F5E9; color: var(--primary-green); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 20px; }

.header-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111;
}

.header-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center; /* Standard rechts */
    opacity: 0;
    transition: opacity 2.5s ease-in-out; 
}

.slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.header-text-box {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    max-width: 580px; 
    border-left: 4px solid #4ade80; 
}

/* --- 4. SHOP SECTION --- */
.shop-section {
    padding: 4rem 5%;
    background: #F1F8E9;
    scroll-margin-top: 80px; 
}

.shop-container { max-width: 1400px; margin: 0 auto; }
.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.shop-header h2 { font-size: 2rem; font-weight: 700; color: #111; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}
.product-card {
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
    padding: 15px;
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary-green); transform: translateY(-5px); }

.prod-img { 
    height: 200px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative;
    margin-bottom: 15px;
    background-color: white;
    overflow: hidden;
    border-radius: 8px;
}
.prod-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

.prod-cat { font-size: 0.7rem; text-transform: uppercase; color: #999; font-weight: 700; margin-bottom: 5px; letter-spacing: 0.5px; }
.prod-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #111; }
.prod-price { font-size: 1.1rem; color: var(--primary-green); font-weight: 700; display: block; margin-bottom: 15px; }
.btn-cart { width: 100%; padding: 10px; border: 1px solid #ddd; background: white; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.2s; color: #333; margin-top: auto;}
.btn-cart:hover { border-color: #333; color: #111; background: #f9f9f9; }

.badge-tag { position: absolute; top: 10px; left: 10px; padding: 4px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; z-index: 2; }
.tag-bestseller { background: #DBEAFE; color: #1E40AF; }
.tag-neu { background: #DCFCE7; color: #166534; }

.product-spotlight {
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 50px; 
    background: #F9F9F9; 
    border-radius: 20px; 
    padding: 50px; 
    margin-bottom: 5rem;
    width: 100%;
    box-sizing: border-box;
}

/* --- 5. CATEGORIES SECTION --- */
.categories-animal-section {
    background-color: #F8FAFC; 
    padding: 6rem 5%;
    scroll-margin-top: 80px; 
}

.cat-grid-animal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.cat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-card);
    text-align: center;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.cat-img { height: 80px; margin: 0 auto 1.5rem auto; display: block; }

.cat-card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--primary-green); font-weight: 700; }
.cat-card p { color: #666; margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.5; }

/* --- 6. SCIENCE SECTION --- */
.categories-science-section {
    background-color: var(--bg-science);
    padding: 6rem 5%;
    scroll-margin-top: 80px;
}

.science-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.science-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-card);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    text-align: center;
}

.science-img-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 4px solid #f9f9f9;
}
.science-img-circle img { width: 100%; height: 100%; object-fit: cover; }

.science-text { text-align: left; }
.science-text h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: #111; line-height: 1.2; font-weight: 800; }
.science-text p { font-size: 1.1rem; color: #555; margin-bottom: 1.5rem; line-height: 1.7; }
.science-text h3 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 1rem; color: var(--primary-green); font-weight: 700; }

.check-list { list-style: none; margin-bottom: 2rem; padding: 0; }
.check-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; color: #444; font-size: 1.05rem; }
.check-list li i { color: var(--primary-green); margin-top: 4px; }

.science-split-section { display: flex; flex-wrap: wrap; min-height: 600px; background: white; }
.science-image-col { flex: 1 1 500px; position: relative; overflow: hidden; min-height: 400px; }
.science-text-col { flex: 1 1 500px; padding: 5rem; display: flex; flex-direction: column; justify-content: center; background: #fff; }

/* --- 7. BLOG SECTION --- */
.blog-section {
    background-color: #F1F8E9; 
    padding: 6rem 5%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.blog-card { 
    background: white; 
    border-radius: var(--radius-card); 
    overflow: hidden; 
    box-shadow: var(--shadow-subtle); 
    transition: 0.3s; 
    display: flex; 
    flex-direction: column;
    border: none;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.blog-img-wrapper {
    height: 200px;
    width: 100%;
    background-color: #eee;
}
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.blog-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.75rem; color: #999; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.blog-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; color: #111; }
.blog-excerpt { font-size: 0.95rem; color: #666; margin-bottom: 1.5rem; flex-grow: 1; }
.blog-link { 
    color: var(--primary-green); 
    font-weight: 600; 
    display: inline-flex; 
    align-items: center; 
    gap: 5px; 
    margin-top: auto; 
}
.blog-link:hover { text-decoration: underline; }

.blog-footer { text-align: center; margin-top: 4rem; }

/* --- FOOTER --- */
footer { 
    background: #0F3E36; 
    color: #E8F5E9; 
    padding: 5rem 5% 2rem 5%; 
    font-size: 0.95rem; 
    scroll-margin-top: 80px;
}

.footer-content { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
    gap: 50px; 
}

.footer-col h4 { 
    color: white; 
    margin-bottom: 1.5rem; 
    font-size: 1.1rem; 
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #CFD8D7; transition: 0.2s; text-decoration: none; }
.footer-col a:hover { color: white; transform: translateX(3px); display: inline-block;}

/* SOCIAL MEDIA ICONS */
.social-icons { display: flex; gap: 15px; }

.footer-col .social-icon {
    display: flex !important;   
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    line-height: 1;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.footer-col .social-icon:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-3px) !important; 
    box-shadow: 0 5px 15px rgba(21, 112, 75, 0.3);
}

.social-icon i { display: block; line-height: 1; }

.newsletter-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-input {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.95rem;
    width: 100%;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { outline: none; border-color: var(--primary-green); background-color: rgba(255,255,255,0.2); }

.newsletter-btn {
    padding: 14px;
    border-radius: 8px;
    border: none;
    background-color: var(--primary-green);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.newsletter-btn:hover { background-color: #1a7d55; }

.privacy-hint { font-size: 0.75rem; opacity: 0.6; margin-top: 12px; line-height: 1.4; color: #aaa; }

.footer-bottom { 
    text-align: center; 
    margin-top: 4rem; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    opacity:0.8; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-legal-links { display: flex; gap: 25px; }
.footer-legal-links a:hover { color: white; text-decoration: underline; transform: none; }

.intro-section { scroll-margin-top: 80px; }

/* Responsive General */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .header-text-box { max-width: 550px; }
}

@media (max-width: 900px) {
    .header-section { flex-direction: column; text-align: center; padding: 4rem 5%; }
    .header-headline { font-size: 2.5rem; }
    .nav-links { display: none; }
    .cat-grid-animal { grid-template-columns: 1fr; }
    .science-layout { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; }
}

@media (max-width: 768px) {
    .header-section { min-height: 70vh; }
    .hero-overlay { background: rgba(0,0,0,0.5); } 
    
    .header-text-box { 
        width: 100%; 
        max-width: 100%; 
        background: transparent; 
        backdrop-filter: none; 
        border: none; 
        border-left: 4px solid #4ade80;
        padding: 0 0 0 20px; 
    }
    
    .slide { background-position: center center !important; }

    .science-split-section { flex-direction: column; }
    .science-image-col, .science-text-col { flex: 1 1 100%; min-height: 300px; }
    .science-text-col { padding: 3rem 1.5rem !important; }
    .product-spotlight { padding: 30px; gap: 30px; }
    .product-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ARTIKEL LAYOUT V2 (Hero & Content)
   ========================================= */

/* Hero Section */
.article-hero-section {
    position: relative;
    background-color: #111;
    background-size: cover;
    background-position: center;
    height: 40vh; 
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    color: white;
    padding-bottom: 3rem;
    margin-top: -1px;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.hero-meta {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--primary-green);
    padding: 4px 12px;
    border-radius: 20px;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Artikel Container Grid */
.article-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Typografie im Artikel */
.article-body { font-size: 1.125rem; line-height: 1.8; color: #374151; }
.article-body h2 { color: var(--text-main, #111); font-size: 1.8rem; margin-top: 3rem; margin-bottom: 1rem; font-weight: 700; }
.article-body h3 { color: var(--text-main, #111); font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.8rem; font-weight: 700; }
.article-body p { margin-bottom: 1.5rem; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 1.5rem; }
.article-body li { margin-bottom: 10px; }
.lead-text { font-size: 1.35rem; color: #111; line-height: 1.6; margin-bottom: 2.5rem; font-weight: 500; }

/* Sidebar Elemente */
.sidebar { position: sticky; top: 100px; height: fit-content; }

.product-widget {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-img { height: 150px; object-fit: contain; margin-bottom: 15px; }
.widget-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.widget-price { color: var(--primary-green); font-weight: 700; font-size: 1.2rem; display: block; margin-bottom: 15px; }

/* Autor Box */
.author-box {
    background: #F9FAFB;
    padding: 30px;
    border-radius: 12px;
    margin-top: 4rem;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #eee;
}

/* Footer Abstand Fix für Artikelseiten */
footer { margin-top: 4rem; }

/* Mobile Anpassungen */
@media (max-width: 900px) {
    .article-hero-section { height: auto; min-height: 300px; padding-top: 6rem; }
    .hero-title { font-size: 2.2rem; }
    .article-container-v2 { grid-template-columns: 1fr; padding-top: 2rem; }
    .sidebar { position: static; margin-top: 3rem; }
}

/* --- COLLECTION / COMING SOON PAGE STYLES --- */

.collection-hero {
    background-image: linear-gradient(to right, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0.2)), url('https://images.unsplash.com/photo-1624819772167-9c969399201f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    border-bottom: 1px solid #eee;
}

.coming-soon-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.email-input {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    max-width: 350px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.email-input:focus {
    border-color: #15704B;
}

@media (max-width: 768px) {
    .collection-hero { padding: 5rem 0; }
    .header-content h1 { font-size: 2.5rem; }
}

/* --- SCIENCE PAGE STYLES --- */

.science-hero {
    background-image: linear-gradient(to right, rgba(21, 112, 75, 0.9), rgba(21, 112, 75, 0.7)), url('media/langlebigkeit-tiere-science.webp?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 12rem 0 8rem 0;
    color: white;
    text-align: center;
}

.hallmark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 4rem;
}

.hallmark-card {
    background: #F9FAFB;
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-green);
    transition: transform 0.3s ease;
}

.hallmark-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hallmark-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

/* Alternierendes Layout für Deep Dive Sektionen */
.deep-dive-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 6rem;
}

.deep-dive-row.reversed {
    direction: rtl; /* Bild rechts, Text links */
}

.deep-dive-row.reversed .science-content {
    direction: ltr; /* Textrichtung zurücksetzen */
}

.science-img-rect {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.citation-box {
    border-left: 3px solid var(--primary-green);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
    font-family: 'Prata', serif;
}

/* Mobile Adjustments for Science Page */
@media (max-width: 900px) {
    .hallmark-grid { grid-template-columns: 1fr; }
    .deep-dive-row { grid-template-columns: 1fr; gap: 40px; }
    .deep-dive-row.reversed { direction: ltr; }
    .science-hero { padding: 8rem 5%; }
}

/* --- ANIMAL PAGE STYLES (DOG, CAT, HORSE) --- */

.dog-hero {
    position: relative;
    background-image: linear-gradient(to right, rgba(21, 112, 75, 0.8), rgba(21, 112, 75, 0.3)), url('media/langlebigkeit-tiere-hund-03.webp?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: 50% 40%;
    min-height: 70vh; 
    display: flex;
    align-items: center;
    padding: 0;
    color: white;
}

.cat-hero {
    position: relative;
    background-image: linear-gradient(to right, rgba(21, 112, 75, 0.85), rgba(21, 112, 75, 0.3)), url('media/langlebigkeit-tiere-katze.webp?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: 50% 35%;
    min-height: 70vh; 
    display: flex;
    align-items: center;
    padding: 0;
    color: white;
}

.horse-hero {
    position: relative;
    background-image: linear-gradient(to right, rgba(21, 112, 75, 0.85), rgba(21, 112, 75, 0.3)), url('media/langlebigkeit-tiere-pferd_sl.webp?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 30%;
    min-height: 70vh; 
    display: flex;
    align-items: center;
    padding: 0;
    color: white;
}

.shop-container { padding-top: 80px; padding-bottom: 40px; }

.content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 5rem;
}

.content-block h2 {
    font-family: 'Prata', serif;
    font-size: 2.4rem;
    color: #111;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-green);
    padding-left: 20px;
}

.content-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #222;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-block p { margin-bottom: 1.5rem; }

.practice-box {
    background-color: #F3F4F6;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #111;
    margin: 3rem 0;
}

.info-graphic-box {
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    border-radius: 16px;
    padding: 50px;
    margin: 4rem 0;
    position: relative;
}

.graphic-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(21, 112, 75, 0.3);
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.protocol-card {
    background: white;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.protocol-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.protocol-btn {
    margin-top: auto; 
    background: #f9f9f9;
    color: #111;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    transition: 0.2s;
    display: inline-block;
}
.protocol-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.routine-section {
    background: #F9FAFB;
    padding: 5rem 5%;
    margin-bottom: 4rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.routine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
}

.routine-col {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden; 
    transition: transform 0.3s;
}

.routine-col:hover { transform: translateY(-5px); }

.routine-img-header {
    height: 200px;
    width: 100%;
    position: relative;
}

.routine-img-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.routine-content {
    padding: 30px;
    position: relative;
}

.time-badge {
    background: white;
    color: #111;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: -15px; 
    left: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-mini-spotlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.mini-img { width: 80px; height: 80px; object-fit: contain; }
.mini-content h4 { margin: 0 0 5px 0; font-size: 1.1rem; }

.highlight-box {
    background-color: #062419; 
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin: 0;
}

/* Mobile Adjustments for Animal Pages */
@media (max-width: 900px) {
    .protocol-grid { grid-template-columns: 1fr; }
    .routine-grid { grid-template-columns: 1fr; }
    .dog-hero, .cat-hero, .horse-hero { min-height: auto; padding: 10rem 5% 5rem 5%; }
    .content-block h2 { font-size: 2rem; }
}

/* --- PARTNER PAGE STYLES --- */

.partner-page-body {
    background-color: #FAFAFA;
}

.partner-hero {
    background-color: #050505;
    color: white;
    padding: 12rem 0 8rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(21, 112, 75, 0.15) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
    pointer-events: none;
}

.partner-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.partner-hero .hero-headline {
    font-family: 'Prata', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.partner-hero .hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #999;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
}

.hero-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #15704B, transparent);
    margin: 40px auto 0 auto;
}

.manifesto-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.manifesto-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 20px;
}

.criteria-card h3 {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #15704B;
}

.criteria-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.form-section {
    background: #FAFAFA;
    padding: 4rem 0;
    border-top: 1px solid #e0e0e0;
}

.partner-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.form-input, .form-textarea, .form-select {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    transition: border 0.3s ease;
}

.form-input:focus {
    border-color: #15704B;
    outline: none;
}

blockquote {
    font-family: 'Prata', serif;
    font-size: 1.6rem;
    color: #222;
    border-left: 4px solid #15704B;
    padding-left: 20px;
    margin: 3rem 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .partner-hero .hero-headline { font-size: 3rem; }
    .partner-hero { padding: 8rem 0 5rem 0; }
    .criteria-grid { grid-template-columns: 1fr; }
}

/* HAMBURGER & MOBILE MENU STYLES */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    color: #111;
    cursor: pointer;
    margin-left: 20px;
}

.desktop-btn {
    display: inline-flex;
}

/* Mobile Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Dunkler Dimmer im Hintergrund */
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer (Full Width) */
.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -100%; /* Startet außerhalb */
    width: 100%;  /* Volle Breite */
    height: 100%;
    
    /* GLASSMORPHISM BACKGROUND (Stärkerer Milchglas-Effekt) */
    background: rgba(255, 255, 255, 0.75); 
    backdrop-filter: blur(20px);           
    -webkit-backdrop-filter: blur(20px);   
    
    padding: 20px 30px; /* Oben etwas weniger Padding */
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother Übergang */
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Scrollbar falls das Menü zu lang ist */
}

.mobile-nav-overlay.active .mobile-nav-content {
    right: 0;
}

/* HEADER IM MENÜ (LOGO ZENTRIERT) */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative; /* Wichtig für absolute Positionierung des Logos */
    height: 60px;
}

/* Logo absolut in die Mitte zwingen */
.mobile-logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    width: 200px; /* Genug Platz geben */
    text-align: center;
}

.close-menu {
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    z-index: 10; /* Über dem Logo falls es sich überlappt */
}

/* LINKS */
.mobile-links {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: center; /* Alles zentriert */
}

.mobile-links > li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(21, 112, 75, 0.3); /* Deine gewünschte grüne Linie */
    padding-bottom: 15px;
}

.mobile-links > li:last-child {
    border-bottom: none;
}

.mobile-links a {
    font-family: 'Prata', serif;
    font-size: 1.5rem; 
    color: #111;
    text-decoration: none;
    display: block;
    transition: 0.2s;
}

.mobile-links a:hover {
    color: var(--primary-green);
    transform: scale(1.05);
}

/* EXPERTISE UNTERMENÜ STYLE */
.mobile-group-title {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    color: #111;
    display: block;
    margin-bottom: 15px;
    /* Sieht aus wie ein Link, ist aber die Überschrift */
}

.mobile-sub-menu {
    list-style: none;
    padding: 15px 0 5px 0; /* Top padding added */
    margin-top: 10px;
    background: rgba(255,255,255,0.3); /* Ganz leicht hinterlegt */
    border-radius: 8px;
}

.mobile-sub-menu li {
    border-bottom: 1px solid rgba(21, 112, 75, 0.2); /* Hier die neue Linie */
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.mobile-sub-menu li:last-child {
    border-bottom: none; /* Keine Linie beim letzten Element */
}

.mobile-sub-menu a {
    font-family: 'Montserrat', sans-serif; /* Modernere Schrift für Unterpunkte */
    font-size: 1.1rem; /* Etwas kleiner */
    color: #555;
    font-weight: 500;
}

.mobile-sub-menu i {
    margin-right: 8px;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.mobile-cta {
    text-align: center;
    width: 100%;
    margin-top: auto;
    padding: 15px;
}

/* --- CONTACT PAGE STYLES --- */
.contact-hero {
    background-image: linear-gradient(to right, rgba(21, 112, 75, 0.9), rgba(21, 112, 75, 0.7)), url('https://images.unsplash.com/photo-1555685812-4b943f1cb0eb?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: white;
    text-align: center;
}

/* Update Media Query */
@media (max-width: 900px) {
    .hamburger-menu { display: block; }
    .desktop-btn { display: none; } 
    .nav-links { display: none; }
    .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; } /* Make contact grid stack on mobile */
}

.form-consent .form-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.6rem;
  color: #666;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
}

.form-consent a {
  color: #15704B;
  text-decoration: underline;
}
