/* ZUSAMMENGEFÜHRTE STYLE.CSS 
   Enthält: Globales Layout, Navigation, Startseite, Ratgeber-Seiten & integrierte Inline-Styles
   Status: FINAL BEREINIGT & OPTIMIERT (Inkl. Footer-Grid & Trust-Seal)
*/

/* ==========================================================================
   LANDINGPAGE MODE
   Blendet nur das Menü aus, wenn ?header=reduced aktiv ist.
   ========================================================================== */
body.lp-mode .nav-menu,
body.lp-mode .menu-toggle {
    display: none !important;
}

/* --- 1. BASIS & VARIABLEN --- */
:root {
    --primary-color: #007CA5;
    --secondary-color: #c94d0c;
    --background-light: #E9F5F8;
    --background-dark: #f7f7f7;
    --text-dark: #212121;
    --text-medium: #666;
    --border-light: #d3e4e8;
    --font-family: 'Poppins', sans-serif;
    --star-color: #FFD700;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

body.layout-ratgeber {
    font-size: 18px;
    line-height: 1.75;
    color: #1f2b33;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

/* --- ADVERTORIAL BADGE --- */
.advertorial-badge {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #888;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 9999;
    border: 1px solid #ddd;
}

.layout-ratgeber .advertorial-badge {
    position: absolute; /* Ratgeber scrollt es mit */
    top: 15px;
    right: 20px;
    font-size: 11px;
    color: #666;
    letter-spacing: 0.5px;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

/* --- 2. HEADER & NAVIGATION --- */
.header {
    background-color: #fff;
    padding: 0.5rem 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 200px;
    flex-shrink: 0;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.header-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.header-text-block .main-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 2px;
}

.header-text-block .sub-title {
    font-size: 0.85em;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1.1;
}

.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1001;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-list li { position: relative; }

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

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

li.has-dropdown > .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: auto; 
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    border-radius: 4px;
    z-index: 1002;
}

.dropdown-menu li { padding: 0; }
.dropdown-menu li a {
    padding: 10px 20px;
    font-weight: 400;
    display: block;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background-color: var(--background-light);
    color: var(--secondary-color);
}

@media (min-width: 993px) {
    .has-dropdown:hover > .dropdown-menu { display: block; }
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- 3. CONTENT BEREICHE & TYPOGRAFIE --- */
.hero, .page-hero {
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 20px;
    position: relative;
    overflow: hidden;
}

.hero-content { max-width: 600px; z-index: 1; }
.page-hero .container { max-width: 900px; }

.hero h1, .page-hero h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p, .page-hero p {
    font-size: 1.1em;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* --- NEU: TRUST BANNER (Bekannt aus) --- */
.trust-banner {
    background-color: #fff;
    padding: 1.2rem 20px;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}
.trust-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
}
.trust-banner-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.trust-banner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-banner-logos img {
    height: 35px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}
.trust-banner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (min-width: 768px) {
    .trust-banner .container {
        flex-direction: row;
        gap: 25px;
    }
    .trust-banner-logos {
        gap: 50px;
    }
}

.info-section {
    background-color: #fff;
    padding: 4rem 20px;
    text-align: center;
}

.info-text h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 1rem;
}

.page-content {
    padding: 4rem 20px;
    background-color: #fff;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}
.layout-ratgeber .content-container { max-width: 920px; }

.content-container h1 { font-size: 2.5em; color: var(--primary-color); margin-bottom: 1.5rem; }
.content-container h2 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}
.content-container h3 { font-size: 1.3em; color: var(--primary-color); margin-top: 1.5rem; margin-bottom: 0.5rem; font-weight: 600; }
.content-container h4 { font-size: 1.1em; color: var(--primary-color); margin-top: 1.2rem; margin-bottom: 0.5rem; }
.content-container p { margin-bottom: 1.5rem; color: var(--text-dark); }
.content-container ul { list-style: disc; margin-left: 25px; margin-bottom: 1.5rem; }
.content-container ul li { margin-bottom: 0.5rem; }
.content-container a { color: var(--primary-color); text-decoration: none; border-bottom: 1px solid transparent; transition: border-bottom 0.3s ease; }
.content-container a:hover { border-bottom: 1px solid var(--primary-color); }

.layout-ratgeber p, 
.layout-ratgeber li { max-width: 72ch; }
.layout-ratgeber h1, .layout-ratgeber h2, .layout-ratgeber h3 { letter-spacing: -0.2px; }
.layout-ratgeber h2 { margin-top: 2.2rem; }
.layout-ratgeber h3 { margin-top: 1.6rem; }
.layout-ratgeber ul { padding-left: 1.2rem; }
.layout-ratgeber li { margin: 0.4rem 0; }

/* --- 4. KARTEN & GRID (Ratgeber & Kategorien) --- */
.ratgeber-grid, .category-container, .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ratgeber-grid { padding: 4rem 20px; }
.category-grid { margin-top: 2rem; gap: 2rem; }

.ratgeber-card, .category-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card {
    border-radius: 14px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ratgeber-card:hover, .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image, .category-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}
.category-card-image { border-bottom: 3px solid var(--secondary-color); height: 200px; }

.ratgeber-card h3, .category-card-content h3 {
    color: var(--primary-color);
    font-size: 1.25em;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    margin: 0;
}

.category-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.category-grid .category-card-content { padding: 1.5rem; }

.ratgeber-card p, .category-card-content p {
    color: var(--text-medium);
    font-size: 0.95em;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    flex-grow: 1;
}

.read-more {
    display: block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0 1.5rem 1.5rem 1.5rem;
    transition: color 0.3s ease;
}
.read-more:hover { text-decoration: underline; }

.category-button {
    background-color: var(--secondary-color);
    color: #fff !important;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 10px rgba(201, 77, 12, 0.3);
    text-align: center;
    margin: 0 1.5rem 1.5rem 1.5rem;
    align-self: flex-start;
}
.category-button:hover { background-color: #b0400c; transform: translateY(-2px); }

.category-grid .category-button {
    margin: 1rem 0 0 0;
    background: var(--primary-color);
    box-shadow: none;
}
.category-grid .category-button:hover { background: #005f7e; }

.category-section { padding: 2rem 20px 4rem 20px; background-color: #fff; }

/* --- 5. PRODUKT CTA BOX & PREISE --- */
.cta-separator {
    background-color: var(--background-dark);
    padding: 4rem 20px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.product-cta-box {
    position: relative; /* WICHTIG FÜR DAS TRUST-SEAL LOGO */
    background-color: #fff;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem 2rem 2rem !important; 
    overflow: hidden; 
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layout-ratgeber .product-cta-box { border-radius: 14px; }

/* Trust Seal Logo in der CTA Box */
.trust-seal-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 75px;
    height: 75px;
    object-fit: contain;
    z-index: 10;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}

.cta-header-bar {
    background-color: var(--background-light); 
    width: calc(100% + 4rem); 
    margin: 0 -2rem 2rem -2rem; 
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.product-cta-box .cta-header-bar h2 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.9rem !important; 
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700 !important;
}

.layout-ratgeber .cta-header-bar h2 { font-size: 1.1rem !important; }

.product-cta-box h2 {
    font-size: 1.8em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-image-container { width: 250px; margin-bottom: 1.5rem; }

.product-specification {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.4rem;
    font-weight: 400;
    text-align: center;
}

/* Benefit-Liste (Häkchen & Herz) */
.product-cta-box .cta-benefits {
    list-style-type: none !important; 
    padding: 0 !important;
    margin: 1.5rem 0 2rem 0 !important;
    text-align: left !important;      
    display: inline-block !important; 
    width: auto !important;           
    max-width: 100%;       
}

.product-cta-box .cta-benefits li {
    position: relative !important;
    padding-left: 2rem !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.4 !important;
    color: var(--text-dark);
    font-size: 0.95rem !important;  
    text-align: left !important;
}

.product-cta-box .cta-benefits li::before {
    content: '\2714';             
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.product-cta-box .cta-benefits li.special-highlight {
    font-style: italic;
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-top: 1.2rem !important;          
    border-top: 1px dotted var(--border-light);
    padding-top: 1rem !important; 
    text-align: center !important; 
    padding-left: 0 !important;    
    width: 100%; 
}

.product-cta-box .cta-benefits li.special-highlight::before {
    content: '\2665'; 
    color: var(--primary-color);
    position: static !important; 
    display: inline-block !important;
    margin-right: 6px; 
    font-size: 1.1rem;
    vertical-align: middle; 
    line-height: 1;         
}

/* Preis-Darstellungen & Badges */
.price-info { margin: 1.5rem 0; font-size: 1.2em; font-weight: 600; }
.price-info .old-price { color: var(--text-medium); text-decoration: line-through; font-weight: 400; font-size: 0.9em; }

.price-highlight-box {
    text-align: center;
    margin: 1.5rem 0 1rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.discount-badge {
    background-color: #d32f2f; 
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulse 2s infinite; 
}

.price-row {
    display: flex;
    flex-direction: column; 
    align-items: center;
    line-height: 1.2;
}

.old-price-label {
    color: var(--text-medium);
    font-size: 0.95rem;
    text-decoration: line-through; 
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.new-price-label {
    color: var(--secondary-color); 
    font-size: 2.2rem; 
    font-weight: 700;
    letter-spacing: -0.5px;
}
.new-price-label small { font-size: 0.5em; font-weight: 400; color: var(--text-dark); vertical-align: middle; margin-right: 3px; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button { 
    background-color: var(--secondary-color);
    color: #fff !important;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 15px rgba(201, 77, 12, 0.4);
    border: none;
}
.cta-button:hover { background-color: #b0400c; transform: translateY(-2px); }

.coupon-box {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    color: var(--primary-color);
}
.coupon-code { color: var(--secondary-color); font-size: 1.1em; letter-spacing: 1px; }

/* --- NEU: Partner-Banner in der CTA Box --- */
.dogfit-partner {
    margin-top: 2.5rem;
    width: 100%;
    text-align: center;
}
.dogfit-partner .partner-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.dogfit-partner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}

/* --- 6. GLOBALE RATGEBER-KOMPONENTEN --- */
.hero-pills { margin: 1.25rem auto 0 auto; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 980px; }
.pill { background: var(--background-light); border: 1px solid var(--border-light); color: #0b4b63; border-radius: 999px; padding: 8px 12px; font-size: 0.95rem; font-weight: 600; }
.pill strong { color: var(--primary-color); }

.toc-box { margin: 1.8rem 0 2.2rem 0; padding: 1.2rem; border: 1px solid var(--border-light); border-radius: 12px; background: #ffffff; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
.toc-title { margin: 0 0 0.8rem 0; color: var(--primary-color); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.95rem; text-align: center; }
.toc-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;}
.page-home .toc-box { text-align: center; }
.page-home .toc-links { justify-content: center; }
.toc-links a { text-decoration: none; color: var(--primary-color); font-weight: 600; background: #f0f7f9; border: 1px solid var(--border-light); padding: 8px 12px; border-radius: 999px; font-size: 0.95rem; transition: background 0.2s ease; }
.toc-links a:hover { background: var(--background-light); }

.early-cta-container { text-align: center; margin: 2.5rem 0; padding: 1.5rem; background-color: #f0f7f9; border-radius: 12px; border: 1px solid var(--border-light); }
.early-cta-jump-button { display: inline-block; background-color: var(--primary-color); color: #ffffff !important; padding: 14px 28px; border-radius: 35px; text-decoration: none; font-weight: 600; font-size: 1.05rem; transition: transform 0.2s ease, background-color 0.3s ease; box-shadow: 0 4px 12px rgba(0, 124, 165, 0.25); border: none; }
.early-cta-jump-button:hover { background-color: #005f7e; transform: translateY(-2px); }

.mini-compare { margin: 2rem 0; border: 1px solid var(--border-light); border-radius: 12px; overflow: hidden; background: #fff; }
.mini-compare-header { background: var(--background-light); padding: 0.9rem 1rem; font-weight: 700; color: var(--primary-color); letter-spacing: 0.5px; }
.mini-compare-body { padding: 1rem; display: grid; gap: 10px; }
.mini-compare-row { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 10px 12px; border: 1px solid #eef4f6; border-radius: 10px; background: #fcfeff; }
.mini-compare-row strong { color: #0b4b63; }
.mini-compare-row span { color: #3b4b55; font-size: 0.98rem; }

.faq-box { margin: 2.2rem 0 0 0; border: 1px solid var(--border-light); border-radius: 12px; background: #ffffff; overflow: hidden; }
.page-home .faq-box { margin-top: 3rem; }
.faq-head { background: var(--background-light); padding: 1rem; font-weight: 700; color: var(--primary-color); letter-spacing: 0.5px; }
.faq-item { border-top: 1px solid #eef4f6; padding: 0.2rem 0; }
details { padding: 0.6rem 1rem; }
summary { cursor: pointer; font-weight: 700; color: #1f2b33; list-style: none; outline: none; font-size: 1.02rem; }
summary::-webkit-details-marker { display: none; }
details p { margin: 0.6rem 0 0 0; color: #3b4b55; }

[id$="-section"], [id$="-recommendation"], [id$="-bundle"], [id$="-box"] { scroll-margin-top: 100px; }

/* Sticky CTA (Mobile) */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.95); border-top: 1px solid var(--border-light); padding: 10px 12px; display: none; z-index: 9998; backdrop-filter: blur(6px); }
.sticky-cta-inner { max-width: 980px; margin: 0 auto; display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.sticky-cta-left { display: flex; flex-direction: column; gap: 2px; }
.sticky-cta .line1 { font-weight: 700; color: var(--primary-color); font-size: 0.98rem; }
.sticky-cta .line2 { color: #3b4b55; font-size: 0.92rem; }
.sticky-cta-btn { background: var(--primary-color); color: #fff !important; text-decoration: none; padding: 10px 14px; border-radius: 999px; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 12px rgba(0,124,165,0.25); border: none; }
.sticky-cta-btn:hover { background: #005f7e; }

/* --- 7. REVIEWS / TESTIMONIALS --- */
.reviews-section { padding: 4rem 20px; background-color: var(--background-dark); }
.reviews-section h2 { text-align: center; color: var(--primary-color); font-size: 2em; margin-bottom: 3rem; }
.reviews-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.review-card { background-color: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex: 1; min-width: 300px; max-width: 550px; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.stars { color: var(--star-color); font-size: 1.4rem; letter-spacing: 2px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-color); }
.review-card h4 { color: var(--secondary-color); font-size: 1.2rem; margin-bottom: 0.75rem; }
.review-card p { font-style: italic; color: var(--text-dark); margin-bottom: 1.5rem; line-height: 1.6; flex-grow: 1; }
.reviewer-name { display: block; text-align: right; font-weight: 600; color: var(--text-medium); font-size: 0.9rem; }
.reviews-cta-container { display: flex; flex-direction: column; align-items: center; margin-top: 3rem; }

/* --- 8. FOOTER --- */
.footer { background-color: var(--primary-color); color: #fff; padding: 3rem 20px; margin-top: 4rem; }
.footer-container { max-width: 1200px; margin: 0 auto; text-align: left; }

/* Footer Grid-Layout (Desktop links/rechts, Mobile untereinander) */
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-left {
    flex: 1;
    min-width: 280px;
}
.footer-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.footer-right a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}
.footer-right a:hover {
    opacity: 1;
    text-decoration: underline;
}
.footer-seal {
    width: 70px;
    height: auto;
    border-radius: 6px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .footer-right {
        align-items: flex-start;
        text-align: left;
    }
}

.footer-links { margin-bottom: 1.5rem; }
.footer-links a { color: #fff; text-decoration: none; margin-right: 30px; font-size: 1rem; font-weight: 500; transition: opacity 0.3s ease; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.footer p { font-size: 1rem; margin-bottom: 2rem; opacity: 0.9; margin-top: 0; }
.footer .disclaimer, .layout-ratgeber .footer .disclaimer-text { font-size: 0.65rem !important; color: #ffffff !important; opacity: 0.9; margin-top: 2rem; line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 2rem; text-align: left; }

/* --- 9. SEITENSPEZIFISCHE ANPASSUNGEN --- */
.page-home .ratgeber-grid { gap: 2rem; padding: 1rem 20px 3rem 20px; }
.page-home .ratgeber-card { border-radius: 14px; border: 1px solid var(--border-light); }
.page-home .read-more { display: inline-block; margin: 1.5rem; padding: 10px 20px; background: var(--primary-color); color: #fff !important; text-decoration: none; border-radius: 999px; font-weight: 600; text-align: center; }

body.page-404 { display: flex; flex-direction: column; min-height: 100vh; }
.page-404 main { flex: 1; display: flex; align-items: center; justify-content: center; }
.page-404 .error-container { text-align: center; padding: 4rem 20px; max-width: 800px; }
.page-404 .error-image { max-width: 350px; width: 100%; height: auto; border-radius: 15px; margin-bottom: 2rem; }
.page-404 h1 { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; }
.page-404 .back-home-button { background-color: var(--secondary-color); color: #fff; padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; border: none; display: inline-block; }

.kombi-intro-box { max-width: 800px; margin: 0 auto 2.5rem auto; text-align: center; background-color: #fff; padding: 1.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); }
.kombi-intro-box h3 { color: var(--primary-color); font-size: 1.5em; margin-bottom: 0.5rem; }
.kombi-intro-box p { font-size: 1.1em; color: var(--text-dark); }
.safety-note { margin-top: 1rem; font-size: 0.95rem; color: #3b4b55; }
.safety-note strong { color: var(--primary-color); }

/* --- 10. RESPONSIVE / MOBILE (KOMBINIERT) --- */
@media (max-width: 992px) {
    .header-container { height: auto; padding: 10px 0; flex-wrap: wrap; }
    .header-text-block { position: static; transform: none; margin: 10px 0; order: 3; width: 100%; }
    .logo { order: 1; margin-left: 10px; }
    .menu-toggle { display: flex; order: 2; margin-right: 10px; }
    .nav-menu { order: 4; width: 100%; display: none; flex-direction: column; background-color: #fff; border-top: 1px solid #eee; margin-top: 10px; height: auto; }
    .nav-menu.active { display: flex; }
    .nav-list { flex-direction: column; width: 100%; gap: 0; }
    .nav-list li { width: 100%; text-align: center; border-bottom: 1px solid #f9f9f9; }
    .nav-list a { padding: 15px; }
    li.has-dropdown > .dropdown-menu { position: static; display: block; box-shadow: none; background-color: #f9f9f9; padding-left: 0; width: 100%; }
    .dropdown-menu li a { padding-left: 2rem; font-size: 0.95rem; text-align: center; }
    .hero h1, .page-hero h1 { font-size: 1.8em; }
}

@media (max-width: 768px) {
    /* CTA Box Mobile Anpassungen */
    .product-cta-box { padding: 0 1.5rem 1.5rem 1.5rem !important; }
    .cta-header-bar { width: calc(100% + 3rem); margin: 0 -1.5rem 1.5rem -1.5rem; padding: 1rem; }
    
    /* Trust-Seal-Logo Mobile Anpassungen */
    .trust-seal-logo {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
    }
    
    /* Layout Ratgeber Mobile */
    .layout-ratgeber .advertorial-badge { right: 15px; }
    .sticky-cta { display: block; }
    .layout-ratgeber main, body.page-404 main { padding-bottom: 86px; }
    .page-home .hero-pills { padding: 0 10px; }
}