/* Health & Wellness Guide Styles */

:root {
    --primary-color: #27ae60;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f9fbfd;
    --white: #ffffff;
    --gray-100: #ecf0f1;
    --gradient-primary: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    --gradient-hero: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

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

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Header & Navigation */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    list-style: none;
    border-radius: 8px;
    padding: 10px 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 8px 20px;
}

.dropdown li a:hover {
    background: var(--gray-100);
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    border: 1px solid var(--text-light);
    background: transparent;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
    order: -1;
    /* Positioniert links */
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .logo {
        flex: 1;
        text-align: center;
    }

    .language-switcher {
        order: 1;
    }

    .main-nav {
        order: 2;
        width: 100%;
    }

    .main-nav .nav-links {
        display: none !important;
        /* Standardmäßig geschlossen */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav .nav-links.active {
        display: flex !important;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-features {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-features span {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Quick Access */
.quick-access {
    background: var(--white);
    padding: 40px 0;
}

.quick-access h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 2rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.quick-link i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quick-link:hover {
    background: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.05);
}

.quick-link i {
    transition: transform 0.3s;
}

.quick-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Main Sections */
.main-section {
    padding: 80px 20px;
    opacity: 1;
    /* Fixed visibility issues */
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.main-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.alternate-bg {
    background: linear-gradient(to bottom, #f9fbfd 0%, #ffffff 100%);
}

#products {
    background: linear-gradient(180deg, #fdfbf7 0%, #f4f1ea 100%);
    /* Sanfter Sand/Creme Ton */
    padding-top: 80px;
    padding-bottom: 80px;
}

#knowledge {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    /* Kühles Weiß/Hellblau */
    padding-top: 80px;
    padding-bottom: 80px;
}

.ai-teaser-section {
    position: relative;
    overflow: hidden;
}

.ai-teaser-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* Content Blocks */
.content-block {
    margin-bottom: 60px;
}

.content-block h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #e8f8f5;
    padding: 40px;
    border-radius: 12px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    /* Changed from visible to hidden for cleaner corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.product-category {
    margin-bottom: 60px;
}

#alive-again .products-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

#alive-again .category-header-img {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

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

.card-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    /* Cleaner background */
    padding: 20px;
    /* Add padding to container */
}

.card-image img {
    max-width: 85%;
    /* Reduce max size to give breathing room */
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    align-self: flex-start;
}

.btn-outline {
    margin-top: auto;
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    justify-content: center;
}

.ai-link:hover {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.ai-link i {
    font-size: 1.1rem;
}

/* AI Teaser */
.ai-teaser-section {
    background: #1a252f;
    /* Dark sleek background */
    background: linear-gradient(145deg, #1a252f 0%, #2c3e50 100%);
    color: var(--white);
    padding: 100px 20px;
    position: relative;
}

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

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.btn-primary-large {
    background: var(--white);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.ai-preview-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.ai-msg {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.ai-msg.user {
    background: rgba(255, 255, 255, 0.2);
    margin-left: 20%;
    color: white;
}

.ai-msg.bot {
    background: var(--white);
    color: var(--text-dark);
    margin-right: 20%;
}

/* FAQ */
/* FAQ */
.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 15px;
}

.faq-category h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.9em;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding: 0 25px;
    background: #fafbfc;
}

.faq-answer.active {
    max-height: 1000px;
    /* Safe upper limit */
    padding: 0 25px 25px 25px;
    opacity: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* JS handles indicators via .toggle-icon span */


/* Hide the JS icon if we use CSS after, OR remove this if we trust the JS icon. 
   Let's check the JS. If JS adds no icon, we need this. 
   Previous JS analysis suggests it might relying on CSS for indicators. 
   To be safe, I'll use this ::after method and hide any potential duplicate icon specific classes if they existed. */

/* Disclaimer */
.disclaimer-section {
    padding: 40px 20px;
    background: var(--bg-light);
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    color: #856404;
}

/* Footer */
.main-footer {
    background: #0f171e;
    /* Very dark slate */
    color: #ecf0f1;
    padding: 80px 20px 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer-disclaimer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-disclaimer strong {
    color: var(--white);
    font-weight: 600;
}

.affiliate-notice {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.affiliate-notice p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Product Extras */
.coming-soon-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-image {
    position: relative;
    overflow: visible !important;
}

.product-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}

.product-ingredients {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    font-weight: 500;
}

.product-study {
    font-size: 1.05rem;
    color: var(--white);
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2ecc71 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    line-height: 1.6;
    border: 2px solid var(--primary-color);
}

.product-study strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Glossary Accordion */
.glossary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.glossary-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 25px;
}

.glossary-item h4 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.glossary-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.glossary-question:hover {
    background: var(--bg-light);
}

.glossary-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: right;
}

.glossary-teaser {
    padding: 0 0 20px 0;
    position: relative;
    max-height: 100px;
    overflow: hidden;
}

.glossary-teaser::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.glossary-answer.active+.glossary-teaser::after {
    display: none;
}

.glossary-teaser p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.read-more-btn {
    display: block;
    margin: 10px 0 0 0;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    width: fit-content;
}

.read-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.read-more-btn.hidden {
    display: none;
}

.glossary-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0;
}

.glossary-answer.active {
    max-height: 5000px;
    padding: 20px 0 0 0;
}

.glossary-answer h5 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.glossary-answer h5:first-child {
    margin-top: 0;
}

.glossary-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.glossary-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.glossary-answer li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.glossary-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

    .grid-2-col,
    .teaser-content {
        grid-template-columns: 1fr;
    }

    .ai-preview-card {
        margin-top: 30px;
    }

    .glossary-question {
        padding: 20px;
        font-size: 1.1rem;
    }

    .glossary-item {
        padding: 20px;
    }

    .coming-soon-badge {
        right: -15px;
        padding: 6px 30px;
        font-size: 0.8rem;
    }
}

/* Biovana Tabs */
.biovana-tabs-container {
    margin-top: 15px;
}

.tab-header {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    border-radius: 4px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: #f9f9f9;
}

.tab-btn.active {
    color: var(--primary-color);
    background: #f0f7ff;
    font-weight: 700;
}

.tab-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    animation: fadeIn 0.4s ease;
}

.tab-content h5 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.tab-content p {
    margin-bottom: 8px;
}

.nutri-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    margin-top: 5px;
}

.nutri-table th,
.nutri-table td {
    padding: 4px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.nutri-table th {
    background: #f8f9fa;
    font-weight: 700;
}

.tab-content ol {
    padding-left: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.tab-content li {
    padding-left: 5px;
    margin-bottom: 5px;
}

/* Disclaimer Section Styling */
.disclaimer-section {
    padding: 20px 0 40px;
    background-color: transparent;
}

.disclaimer-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid #ffc107;
    /* Gelber Warn-Akzent */
    border-radius: 8px;
    padding: 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.disclaimer-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}