/* =========================================
   Pelikan Apotheke Delmenhorst
   Design matching pelikan-apotheke-ganderkesee.de
   ========================================= */

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400 700;
    font-stretch: 100%;
    font-display: swap;
    src: url('/fonts/open-sans-400-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400 700;
    font-stretch: 100%;
    font-display: swap;
    src: url('/fonts/open-sans-400-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Open Sans Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/open-sans-condensed-700-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Open Sans Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/open-sans-condensed-700-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --color-red: #e2001a;
    --color-red-hover: rgba(226, 0, 26, 0.7);
    --color-blue: #1a78b9;
    --color-blue-hover: rgba(26, 120, 185, 0.7);
    --color-white: #FFFFFF;
    --color-bg: #f8f8f8;
    --color-bg-alt: #eaeaea;
    --color-text: #252525;
    --color-text-light: #404040;
    --color-text-muted: #606060;
    --color-border: #cccccc;
    --color-border-light: #eaeaea;
    --color-green: #1B6B3A;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-condensed: 'Open Sans Condensed', 'Open Sans', sans-serif;
    --transition: 0.25s ease-in;
    --container-max: 1140px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.8em;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-red-hover);
    text-decoration: underline;
}

a:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 2px;
}

p {
    margin-bottom: 0;
    word-wrap: break-word;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-red);
    color: var(--color-white);
    padding: 12px 24px;
    z-index: 1000;
    font-weight: 600;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
    color: var(--color-white);
    text-decoration: none;
}

/* ========================
   Top Bar – red bar like main site
   ======================== */
.top-bar {
    background: var(--color-red);
    color: var(--color-white);
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.top-bar a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.5);
}

.top-bar-right .languages {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* ========================
   Header
   ======================== */
.header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--color-text);
}

.logo:hover {
    color: var(--color-text);
    text-decoration: none;
}

.logo-img {
    height: 160px;
    width: auto;
}

.logo-text {
    display: none;
}

/* Navigation – blue bordered buttons like main site */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 4px;
    justify-content: center;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 1em;
    color: var(--color-blue);
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--color-blue);
    margin: 0;
    white-space: nowrap;
    transition: all var(--transition);
}

.nav-link:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
    text-decoration: none;
}

.nav-link.active {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: block;
    padding: 10px 15px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 1em;
    color: var(--color-blue);
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--color-blue);
    margin: 0;
    white-space: nowrap;
    transition: all var(--transition);
    cursor: pointer;
    background: none;
}

.nav-dropdown-toggle::after {
    content: " ▾";
    font-size: 0.7em;
}

.nav-dropdown-toggle:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
    text-decoration: none;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    border: 1px solid var(--color-blue);
    border-top: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 18px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-blue);
    text-decoration: none;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
    color: var(--color-red);
    font-size: 30px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-red);
    transition: all var(--transition);
    position: absolute;
    left: 10px;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    top: 8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ========================
   Buttons – matching main site style
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 400;
    border: 0;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1em;
    white-space: nowrap;
    margin-top: 20px;
}

.btn-primary,
a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:active {
    background: var(--color-red);
    color: #FFFFFF !important;
}

.btn-primary:hover,
a.btn-primary:hover {
    background: var(--color-red-hover);
    color: #FFFFFF !important;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-text-light);
    border: 1px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-red-hover);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
}

.btn-outline:hover {
    background: var(--color-blue);
    color: var(--color-white);
    text-decoration: none;
}

.btn-light {
    background: var(--color-white);
    color: var(--color-red);
    border: 1px solid var(--color-white);
}

.btn-light:hover {
    background: var(--color-bg);
    color: var(--color-red);
    text-decoration: none;
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    color: var(--color-white);
    text-decoration: none;
}

.btn .fa, .btn svg {
    margin-right: 7px;
}

/* ========================
   Hero Section – background image like main site
   ======================== */
.hero {
    position: relative;
    overflow: hidden;
    background: url('/img/header-bg.jpg') center center / cover no-repeat;
    color: var(--color-white);
    padding: 100px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.hero::after {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-badge--heart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 22px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-condensed);
    letter-spacing: 0.8px;
    border-radius: 50px;
    text-transform: uppercase;
}

.hero-heart-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.hero-heart {
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(229, 57, 53, 0.7)) drop-shadow(0 0 14px rgba(229, 57, 53, 0.4));
    animation: heartbeat 1.4s ease-in-out infinite;
}

.hero-heart-wrap::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 80, 80, 0.3) 0%, transparent 70%);
    animation: heartglow 1.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.25); }
    60% { transform: scale(1); }
}

@keyframes heartglow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    15% { opacity: 1; transform: scale(1.4); }
    30% { opacity: 0.4; transform: scale(1); }
    45% { opacity: 0.9; transform: scale(1.35); }
    60% { opacity: 0.4; transform: scale(1); }
}

.hero h1 {
    font-family: var(--font-condensed);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.25em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 4px #333;
    text-align: center;
}

.hero-highlight {
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5em;
    color: var(--color-white);
    margin-bottom: 32px;
    text-align: center;
    text-shadow: 2px 2px 3px #333;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Info Card */
.info-card {
    background: var(--color-white);
    padding: 28px;
    color: var(--color-text);
    box-shadow: var(--shadow-lg);
}

.info-card-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.info-card-section:last-of-type {
    margin-bottom: 20px;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card h3 svg {
    color: var(--color-blue);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.hours-table td {
    padding: 4px 0;
    color: var(--color-text-light);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-text);
}

.info-card address {
    font-style: normal;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.info-card .btn-outline {
    width: 100%;
    justify-content: center;
}

/* ========================
   Trust Section
   ======================== */
.trust-section {
    padding: 60px 0;
    background: var(--color-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--color-bg);
    transition: all var(--transition);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27, 107, 58, 0.1) 0%, rgba(26, 120, 185, 0.1) 100%);
    color: var(--color-green);
    margin-bottom: 16px;
    border: 2px solid rgba(27, 107, 58, 0.15);
    transition: all var(--transition);
}

.trust-item:hover .trust-icon {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
    transform: scale(1.1);
}

.trust-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ========================
   Section Styles
   ======================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 12px;
    line-height: 1.25em;
}

.section-header p {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================
   Hauptapotheke Banner
   ======================== */

.hauptapotheke-banner {
    padding: 32px 0;
    background: var(--color-white);
}

.hauptapotheke-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 24px;
}

.hauptapotheke-card--filiale {
    border-color: var(--color-red);
    border-width: 2px;
}

.hauptapotheke-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 20px;
}

.hauptapotheke-badge--filiale {
    background: var(--color-red);
}

.hauptapotheke-body {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 36px 32px 28px;
}

.hauptapotheke-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-green) 0%, #155d30 100%);
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(27, 107, 58, 0.3);
}

.hauptapotheke-info {
    flex: 1;
    min-width: 0;
}

.hauptapotheke-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 6px;
    font-family: var(--font-condensed);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hauptapotheke-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

.hauptapotheke-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 2px solid var(--color-green);
    background: var(--color-bg);
}

.hauptapotheke-footer-col {
    padding: 20px 24px;
    border-right: 1px solid var(--color-border-light);
}

.hauptapotheke-footer-col:last-child {
    border-right: none;
}

.hauptapotheke-footer-col h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-green);
    margin: 0 0 10px;
}

.hauptapotheke-footer-col h4 svg {
    flex-shrink: 0;
}

.hauptapotheke-footer-col p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0 0 4px;
    line-height: 1.5;
}

.hauptapotheke-footer-col p:last-child {
    margin-bottom: 0;
}

.hauptapotheke-footer-col a {
    color: var(--color-blue) !important;
    text-decoration: none;
    transition: color var(--transition);
}

.hauptapotheke-footer-col a:hover {
    color: var(--color-green) !important;
    text-decoration: underline;
}

.hauptapotheke-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-green);
    color: var(--color-white) !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-sans);
    flex-shrink: 0;
    transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(27, 107, 58, 0.25);
}

.hauptapotheke-cta:hover {
    background: #155d30;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(27, 107, 58, 0.35);
}

.hauptapotheke-cta svg {
    transition: transform 0.2s ease;
}

.hauptapotheke-cta:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 768px) {
    .hauptapotheke-body {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px 24px;
        gap: 20px;
    }

    .hauptapotheke-name {
        font-size: 18px;
    }

    .hauptapotheke-icon {
        width: 72px;
        height: 72px;
    }

    .hauptapotheke-icon svg {
        width: 36px;
        height: 36px;
    }

    .hauptapotheke-footer {
        grid-template-columns: 1fr;
    }

    .hauptapotheke-footer-col {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
        text-align: center;
    }

    .hauptapotheke-footer-col:last-child {
        border-bottom: none;
    }

    .hauptapotheke-footer-col h4 {
        justify-content: center;
    }
}

/* ========================
   Services Section
   ======================== */
.services-section {
    padding: 60px 0;
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-blue);
}

.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 24px 28px 28px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 10px;
    line-height: 1.25em;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8em;
}

/* ========================
   About Section
   ======================== */
.about-section {
    padding: 60px 0;
    background: var(--color-white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 20px;
    line-height: 1.25em;
}

.about-content p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8em;
}

.about-content p a {
    color: var(--color-red);
    text-decoration: underline;
}

.about-content p a:hover {
    color: var(--color-red-hover);
}

.about-features {
    list-style: none;
    margin-top: 24px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 17px;
    color: var(--color-text);
    font-weight: 500;
}

.about-features li svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-map iframe {
    width: 100%;
    box-shadow: var(--shadow-md);
}

/* ========================
   Zahlungsmöglichkeiten
   ======================== */
.payment-section {
    padding: 50px 0;
    background: var(--color-white);
}

.payment-section .section-header {
    margin-bottom: 32px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.payment-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 28px;
    background: var(--color-bg);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    min-width: 120px;
    transition: all var(--transition);
}

.payment-icon-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--color-primary);
}

.payment-icon-item > img {
    width: 100px;
    height: 63px;
    object-fit: contain;
    border-radius: 6px;
}

.payment-card {
    width: 100px;
    height: 63px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    overflow: hidden;
}

.payment-card img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

.payment-card--white {
    background: #fff;
    border: 1px solid #e0e0e0;
}

.payment-card--dark {
    background: #1a1a2e;
    border: 1px solid #333;
}

.payment-card--black {
    background: #000;
    border: 1px solid #333;
}

.payment-card--black img {
    filter: invert(1);
}

.payment-card--girocard {
    padding: 0;
}

.payment-card--girocard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.payment-icon-item span {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-text);
    text-align: center;
}

/* ========================
   FAQ Section
   ======================== */
.faq-section {
    padding: 60px 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 5px;
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--color-blue);
}

.faq-item[open] {
    border-color: var(--color-blue);
}

.faq-item summary {
    padding: 20px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    background: var(--color-blue);
    transition: background var(--transition);
}

.faq-item summary:hover {
    background: var(--color-blue-hover);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 300;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item[open] summary {
    background: var(--color-blue-hover);
}

.faq-answer {
    padding: 30px;
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.8em;
    border: 1px solid var(--color-border);
    border-top: 0;
}

.faq-answer a {
    color: var(--color-red);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--color-red-hover);
}

/* ========================
   CTA Section
   ======================== */
.cta-section {
    background: url('/img/beratung-bg.jpg') center center / cover no-repeat;
    color: var(--color-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 120, 185, 0.7);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-family: var(--font-condensed);
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1em;
}

.cta-inner p {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5em;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================
   Footer – pelikan background like main site
   ======================== */
.footer {
    background: var(--color-white);
    color: var(--color-text-light);
    padding: 0;
}

.footer-pelikan {
    background: url('/img/pelikan-bg.png') center center / contain repeat-x;
    padding: 0;
    text-align: center;
}

.footer-pelikan img {
    display: block;
    margin: 0 auto;
    height: 50px;
    width: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-logo .logo-name {
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.footer-logo .logo-location {
    font-size: 13px;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.6em;
}

.footer-heart-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 20px;
    font-family: var(--font-condensed);
    letter-spacing: 0.5px;
}

.footer-col h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.footer-col address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.6em;
}

.footer-col address p {
    margin-bottom: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 4px;
}

.footer-col a {
    color: var(--color-text-light);
    font-size: 13px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-red-hover);
    text-decoration: underline;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.6em;
}

.footer-bottom {
    border-top: 1px solid var(--color-border-light);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 5px;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--color-red-hover);
}

.footer-legal a::after {
    content: ' |';
    color: var(--color-text-muted);
    margin-left: 5px;
}

.footer-legal a:last-child::after {
    content: '';
}

/* ========================
   Responsive Design
   ======================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-info-card {
        max-width: 420px;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 12px;
        white-space: nowrap;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-badge--heart {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-heart {
        width: 22px;
        height: 22px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-divider {
        display: none;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }

    .header-inner {
        min-height: 50px;
    }

    .logo-img {
        height: 80px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        text-align: left;
        border-color: var(--color-white);
        padding: 15px;
        font-size: 16px;
        margin: 0;
    }

    .nav-link:hover {
        color: var(--color-red);
        background: transparent;
        border-color: var(--color-white);
    }

    .nav-link.active {
        color: var(--color-red);
        background: transparent;
        border-color: var(--color-white);
    }

    .nav-dropdown-toggle {
        text-align: left;
        border-color: var(--color-white);
        padding: 15px;
        font-size: 16px;
        margin: 0;
    }

    .nav-dropdown-toggle:hover {
        color: var(--color-red);
        background: transparent;
        border-color: var(--color-white);
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: var(--color-white);
    }

    .nav-dropdown-menu a {
        font-size: 15px;
        padding: 10px 15px;
        border-bottom: none;
    }

    .nav-dropdown-menu a:hover {
        background: transparent;
        color: var(--color-red);
    }

    .hero {
        padding: 75px 0;
        background-image: url('/img/header-bg-mobile.jpg');
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .payment-icons {
        gap: 10px;
        justify-content: center;
    }

    .payment-icon-item {
        min-width: 95px;
        padding: 14px 10px;
        flex: 0 0 calc(33.333% - 8px);
    }

    .payment-icon-item > img {
        width: 80px;
        height: 50px;
    }

    .payment-card {
        width: 80px;
        height: 50px;
    }

    .payment-icon-item span {
        font-size: 11px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-item {
        padding: 20px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-section {
        padding: 75px 0;
    }

    .cta-inner h2 {
        font-size: 26px;
    }

    .cta-inner p {
        font-size: 20px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 20px;
    }

    .hero h1 {
        font-size: 22px;
    }
}

/* ========================
   Print Styles
   ======================== */
@media print {
    .top-bar,
    .nav-toggle,
    .hero-bg,
    .cta-section,
    .btn,
    .footer-pelikan {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    .header {
        position: static;
        box-shadow: none;
    }

    .hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }
}

/* ========================
   Page Styles (for subpages)
   ======================== */
.page-hero {
    background: url('/img/header-bg.jpg') center center / cover no-repeat;
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-condensed);
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 3px 3px 4px #333;
}

.page-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5em;
    text-shadow: 2px 2px 3px #333;
}

.page-content {
    padding: 60px 0;
    background: var(--color-white);
}

.page-content .container {
    max-width: 800px;
}

.page-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 32px 0 16px;
    line-height: 1.25em;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8em;
}

.page-content ul,
.page-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--color-text-light);
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-content a {
    color: var(--color-red);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--color-red-hover);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}

.contact-card {
    background: var(--color-bg);
    padding: 28px;
    border: 1px solid var(--color-border-light);
}

.contact-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 26px;
    }

    .page-hero p {
        font-size: 18px;
    }
}

/* ========================
   Notdienst Widget
   ======================== */
.notdienst-widget {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    margin: 32px 0;
    overflow: hidden;
}

.notdienst-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--color-border-light);
}

.notdienst-header h2 {
    font-family: var(--font-condensed);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-red);
    margin: 0 0 4px;
    line-height: 1.2;
}

.notdienst-date {
    font-size: 15px;
    color: var(--color-red);
    font-weight: 600;
}

.notdienst-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 350px;
    align-items: stretch;
}

.page-content .notdienst-widget ~ h2,
.page-content .notdienst-widget ~ .contact-grid,
.page-content .notdienst-widget ~ table,
.page-content .notdienst-widget ~ ul,
.page-content .notdienst-widget ~ p {
    max-width: 800px;
}

.notdienst-list {
    border-right: 1px solid var(--color-border-light);
}

.notdienst-entry {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--color-border-light);
    cursor: pointer;
    transition: background var(--transition);
}

.notdienst-entry:last-child {
    border-bottom: none;
}

.notdienst-entry:hover,
.notdienst-entry.active {
    background: #fef2f2;
}

.notdienst-entry-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 2px;
    line-height: 1.3;
}

.notdienst-entry-detail {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

.notdienst-entry-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.notdienst-entry-info {
    flex: 1;
    min-width: 0;
}

.notdienst-entry-actions {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.notdienst-entry-actions a {
    font-size: 12px;
    color: var(--color-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.notdienst-entry-actions a:hover {
    text-decoration: underline;
}

.notdienst-map {
    position: relative;
    min-height: 350px;
}

.notdienst-map #notdienst-map-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

@keyframes notdienst-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

.notdienst-footer {
    padding: 12px 28px;
    border-top: 1px solid var(--color-border-light);
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: right;
    background: var(--color-bg);
}

.notdienst-footer a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .notdienst-body {
        grid-template-columns: 1fr;
    }

    .notdienst-list {
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
    }

    .notdienst-map {
        min-height: 280px;
    }

    .notdienst-header h2 {
        font-size: 22px;
    }
}

/* ========================
   Gesundheitstipps
   ======================== */
.tipps-season-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.tipps-season-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 2px solid;
    font-size: 15px;
}

.tipps-season-icon {
    display: inline-flex;
    align-items: center;
}

.tipps-season-icon svg {
    width: 20px;
    height: 20px;
}

.tipps-date {
    font-size: 14px;
    color: var(--color-text-muted);
}

.tipps-highlight {
    margin-bottom: 40px;
}

.tipps-highlight-card {
    background: var(--color-bg);
    border-left: 5px solid var(--color-red);
    padding: 36px 40px;
    position: relative;
}

.tipps-highlight-badge {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.tipps-highlight-icon {
    margin-bottom: 12px;
    color: var(--color-red);
}

.tipps-highlight-icon svg {
    width: 44px;
    height: 44px;
}

.tipps-highlight-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-red);
    margin: 0 0 14px;
    line-height: 1.25;
}

.tipps-highlight-card p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 18px;
}

.tipps-highlight-tip {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 16px 20px;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.tipps-highlight-tip strong {
    color: var(--color-blue);
}

.tipps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.tipps-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.tipps-card:hover {
    border-color: var(--color-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.tipps-card-icon {
    margin-bottom: 10px;
    color: var(--color-blue);
}

.tipps-card-icon svg {
    width: 32px;
    height: 32px;
}

.tipps-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-blue);
    margin-bottom: 8px;
}

.tipps-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 10px;
    line-height: 1.3;
}

.tipps-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 14px;
    flex: 1;
}

.tipps-card-tip {
    font-size: 13px;
    color: var(--color-text-muted);
    padding-top: 14px;
    border-top: 1px solid var(--color-border-light);
    line-height: 1.5;
}

/* Magazin-Sektion */
.magazin-section {
    margin-top: 48px;
    margin-bottom: 48px;
    padding-top: 40px;
    border-top: 2px solid var(--color-border-light);
}

.magazin-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 6px;
}

.magazin-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.magazin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.magazin-article {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 22px;
    text-decoration: none;
    transition: all var(--transition);
}

.magazin-article:hover {
    border-color: var(--color-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.magazin-article-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-red);
    margin-bottom: 10px;
}

.magazin-article h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
}

.magazin-article p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.magazin-article-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-red);
}

/* My Life Magazin */
.magazin-mylife {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid var(--color-border-light);
    padding: 28px;
    margin-bottom: 24px;
}

.magazin-mylife-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.magazin-mylife-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-red);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magazin-mylife-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.magazin-mylife-header p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.magazin-mylife-editions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.magazin-mylife-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition);
}

.magazin-mylife-card:hover {
    border-color: var(--color-red);
    box-shadow: var(--shadow-sm);
}

.magazin-mylife-card-icon {
    flex-shrink: 0;
    color: var(--color-red);
}

.magazin-mylife-card-text {
    flex: 1;
    min-width: 0;
}

.magazin-mylife-card-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.magazin-mylife-card-text span {
    font-size: 11px;
    color: var(--color-text-muted);
}

.magazin-mylife-card svg:last-child {
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.magazin-mylife-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.magazin-mylife-hint {
    font-size: 12px;
    color: var(--color-text-muted);
}

.magazin-sources {
    font-size: 12px;
    color: var(--color-text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--color-border-light);
}

.magazin-sources a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

.magazin-sources a:hover {
    color: var(--color-red);
}

@media (max-width: 1024px) {
    .magazin-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .magazin-mylife-editions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .magazin-grid {
        grid-template-columns: 1fr;
    }

    .magazin-mylife-editions {
        grid-template-columns: 1fr;
    }

    .magazin-mylife-header {
        flex-direction: column;
    }

    .magazin-mylife-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* OTC-Gesundheitsthemen */
.otc-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid var(--color-border-light);
    margin-bottom: 48px;
}

.otc-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.otc-header-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-green);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otc-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 2px;
}

.otc-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
}

.otc-featured-card {
    background: linear-gradient(135deg, #f0f7f2 0%, #fff 40%);
    border: 2px solid var(--color-green);
    padding: 36px;
    margin-bottom: 28px;
    position: relative;
}

.otc-featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.otc-featured-badge {
    display: inline-block;
    background: var(--color-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 20px;
}

.otc-featured-period {
    font-size: 12px;
    color: var(--color-text-muted);
}

.otc-featured-icon {
    color: var(--color-green);
    margin-bottom: 12px;
}

.otc-featured-icon svg {
    width: 48px;
    height: 48px;
}

.otc-featured-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 14px;
    line-height: 1.3;
}

.otc-featured-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.otc-featured-treatment {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-left: 4px solid var(--color-green);
    padding: 20px 24px;
}

.otc-featured-treatment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.otc-featured-treatment p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
}

.otc-grid-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.otc-grid {
    margin-bottom: 24px;
}

.otc-grid .otc-card {
    display: inline-flex;
    flex-direction: column;
    width: calc(33.333% - 14px);
    vertical-align: top;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 24px;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.otc-grid .otc-card:nth-child(n+5):nth-child(-n+5) {
    margin-right: 0;
}

.otc-grid .otc-card:last-child {
    margin-right: 0;
}

.otc-card:hover {
    border-color: var(--color-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.otc-card-icon {
    margin-bottom: 10px;
    color: var(--color-green);
}

.otc-card-icon svg {
    width: 32px;
    height: 32px;
}

.otc-card-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-green);
    margin-bottom: 8px;
}

.otc-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.otc-card p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.otc-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7f2;
    border: 1px solid #d4e8d9;
    padding: 16px 24px;
    color: var(--color-green);
    font-size: 14px;
    line-height: 1.5;
}

.otc-cta svg {
    flex-shrink: 0;
}

.otc-cta a {
    color: var(--color-green);
}

@media (max-width: 1024px) {
    .otc-grid .otc-card {
        width: calc(50% - 10px);
        margin-right: 20px;
    }
    .otc-grid .otc-card:nth-child(even+1) {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .otc-grid .otc-card {
        width: 100%;
        margin-right: 0;
    }

    .otc-featured-card {
        padding: 24px;
    }

    .otc-featured-card h3 {
        font-size: 19px;
    }

    .otc-header {
        flex-direction: column;
    }

    .otc-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Stellenangebote ── */

.jobs-intro {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f0faf4 0%, #e8f5ee 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid rgba(27,107,58,.12);
}

.jobs-intro-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--color-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.jobs-intro h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 8px;
}

.jobs-intro p {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

.job-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--color-border-light);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: box-shadow .2s, border-color .2s;
}

.job-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    border-color: var(--color-green);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.job-card-badge {
    background: var(--color-green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 14px;
    border-radius: 20px;
}

.job-card-date {
    font-size: 13px;
    color: var(--color-text-light);
}

.job-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.job-card-desc {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.job-card-section {
    margin-bottom: 16px;
}

.job-card-section h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 8px;
}

.job-card-section ul {
    margin: 0;
    padding-left: 20px;
}

.job-card-section li {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 4px;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
    flex-wrap: wrap;
    gap: 12px;
}

.job-card-start {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light);
    font-size: 14px;
}

.btn-sm {
    font-size: 13px;
    padding: 8px 20px;
}

.btn-danger,
a.btn-danger,
a.btn-danger:link,
a.btn-danger:visited,
a.btn-danger:active {
    background: #dc3545;
    color: #FFFFFF !important;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.btn-danger:hover,
a.btn-danger:hover {
    background: #c82333;
    color: #FFFFFF !important;
    text-decoration: none;
}

.jobs-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fafbfc;
    border-radius: 16px;
    border: 2px dashed var(--color-border-light);
    margin-bottom: 40px;
}

.jobs-empty svg {
    color: var(--color-text-light);
    margin-bottom: 16px;
    opacity: .5;
}

.jobs-empty h3 {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.jobs-empty p {
    color: var(--color-text-light);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Initiativbewerbungs-Formular */

.initiative-form-wrapper {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #dc3545;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(220,53,69,.08);
}

.initiative-form-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.initiative-form-header svg {
    flex-shrink: 0;
    color: #dc3545;
    margin-top: 2px;
}

.initiative-form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 4px;
}

.initiative-form-header p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.initiative-form-row {
    display: flex;
    gap: 16px;
}

.initiative-form-group {
    flex: 1;
    margin-bottom: 16px;
}

.initiative-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.initiative-form-group input,
.initiative-form-group select,
.initiative-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.initiative-form-group input:focus,
.initiative-form-group select:focus,
.initiative-form-group textarea:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,.1);
}

.initiative-upload-section {
    margin-bottom: 20px;
    padding-top: 8px;
}

.initiative-upload-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.initiative-upload-section h4 svg {
    color: #dc3545;
}

.initiative-upload-hint {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.initiative-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.initiative-upload-item {
    position: relative;
}

.initiative-upload-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 2px dashed var(--color-border-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.initiative-upload-item label:hover {
    border-color: #dc3545;
    background: rgba(220,53,69,.03);
    color: #dc3545;
}

.initiative-upload-item label svg {
    flex-shrink: 0;
    color: var(--color-text-light);
}

.initiative-upload-item label:hover svg {
    color: #dc3545;
}

.initiative-upload-item input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.initiative-file-name {
    display: block;
    font-size: 12px;
    color: var(--color-green);
    margin-top: 4px;
    padding-left: 16px;
    word-break: break-all;
    min-height: 16px;
}

.initiative-success {
    text-align: center;
    padding: 40px 20px;
}

.initiative-success svg {
    margin-bottom: 16px;
}

.initiative-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 8px;
}

.initiative-success p {
    color: var(--color-text);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .initiative-form-row {
        flex-direction: column;
        gap: 0;
    }

    .initiative-form-wrapper {
        padding: 24px;
    }

    .initiative-form-header {
        flex-direction: column;
    }

    .initiative-upload-grid {
        grid-template-columns: 1fr;
    }
}

.jobs-apply-info {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 32px;
    margin: 40px 0;
}

.jobs-apply-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 24px;
    text-align: center;
}

.jobs-apply-steps {
    display: flex;
    gap: 24px;
}

.jobs-apply-step {
    flex: 1;
    text-align: center;
}

.jobs-apply-step-num {
    width: 40px;
    height: 40px;
    background: var(--color-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 12px;
}

.jobs-apply-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}

.jobs-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-green) 0%, #15803d 100%);
    color: #FFFFFF !important;
    padding: 20px 28px;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 40px;
}

.jobs-contact span,
.jobs-contact a,
.jobs-contact a:link,
.jobs-contact a:visited,
.jobs-contact a:active,
.jobs-contact a:hover {
    color: #FFFFFF !important;
}

/* Admin-Bereich */

.jobs-admin-section {
    padding: 0 0 60px;
}

.jobs-admin-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 20px;
}

.jobs-admin-toggle:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.jobs-admin-panel {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid var(--color-border-light);
}

.jobs-admin-login h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 8px;
}

.jobs-admin-login > p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.jobs-admin-login-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
}

.jobs-admin-login-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    font-size: 15px;
}

.jobs-admin-login-form input:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(27,107,58,.1);
}

.jobs-admin-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
}

.jobs-admin-hint {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 12px;
    opacity: .7;
}

.jobs-admin-hint code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.jobs-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.jobs-admin-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
}

.jobs-form {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--color-border-light);
    margin-bottom: 28px;
}

.jobs-form h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 20px;
}

.jobs-form-row {
    display: flex;
    gap: 16px;
}

.jobs-form-group {
    flex: 1;
    margin-bottom: 16px;
}

.jobs-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.jobs-form-group input,
.jobs-form-group select,
.jobs-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.jobs-form-group input:focus,
.jobs-form-group select:focus,
.jobs-form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(27,107,58,.1);
}

.jobs-form-actions {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.jobs-admin-list h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.jobs-admin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid var(--color-border-light);
    margin-bottom: 10px;
    gap: 16px;
}

.jobs-admin-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jobs-admin-item-info strong {
    font-size: 15px;
    color: var(--color-text);
}

.jobs-admin-item-meta {
    font-size: 13px;
    color: var(--color-text-light);
}

.jobs-admin-item-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.jobs-admin-empty {
    color: var(--color-text-light);
    font-style: italic;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .jobs-intro {
        flex-direction: column;
        padding: 24px;
    }

    .jobs-apply-steps {
        flex-direction: column;
        gap: 16px;
    }

    .jobs-form-row {
        flex-direction: column;
        gap: 0;
    }

    .job-card {
        padding: 24px;
    }

    .job-card-title {
        font-size: 19px;
    }

    .jobs-admin-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .jobs-contact {
        flex-direction: column;
        text-align: center;
    }
}

.tipps-apotheke-section {
    margin-top: 16px;
    max-width: 800px;
}

.tipps-apotheke-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .tipps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tipps-grid {
        grid-template-columns: 1fr;
    }

    .tipps-highlight-card {
        padding: 24px;
    }

    .tipps-highlight-card h2 {
        font-size: 22px;
    }

    .tipps-season-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   Cookie-Consent-Banner
   ========================================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-text);
    color: var(--color-white);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner-hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1 1 400px;
}

.cookie-banner-text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.cookie-banner-text p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #ccc;
}

.cookie-banner-text a {
    color: var(--color-white) !important;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background var(--transition);
}

.cookie-btn-accept {
    background: var(--color-green);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: #155d30;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--color-white);
    border: 1px solid #666;
}

.cookie-btn-reject:hover {
    border-color: var(--color-white);
}

.maps-placeholder {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.maps-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    min-height: 280px;
    color: var(--color-text-muted);
}

.maps-placeholder-inner svg {
    color: var(--color-green);
    margin-bottom: 12px;
    opacity: 0.6;
}

.maps-placeholder-inner p {
    margin: 0 0 6px;
    font-size: 14px;
}

.maps-placeholder-inner p strong {
    font-size: 16px;
    color: var(--color-text);
}

.maps-load-btn {
    margin-top: 16px;
}

.maps-extern-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--color-blue) !important;
}

.maps-blocked-notice {
    background: var(--color-bg-alt);
    padding: 40px;
    text-align: center;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.maps-blocked-notice a {
    color: var(--color-blue);
}

/* =========================================
   Floating Kontakt-Button (FAB)
   ========================================= */

.fab-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
}

.fab-contact-btn {
    width: 56px;
    height: 56px;
    border: none;
    background: var(--color-green);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    transition: background var(--transition), transform 0.3s ease;
}

.fab-contact-btn:hover {
    background: #155d30;
    transform: scale(1.05);
}

.fab-contact-btn .fab-close-icon {
    display: none;
}

.fab-open .fab-contact-btn svg:first-child {
    display: none;
}

.fab-open .fab-contact-btn .fab-close-icon {
    display: block;
}

.fab-menu {
    position: absolute;
    bottom: 68px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.fab-open .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--color-white);
    color: var(--color-text) !important;
    text-decoration: none !important;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    transition: background var(--transition), transform 0.15s ease;
    border-radius: 4px;
}

.fab-menu-item:hover {
    background: var(--color-bg);
    transform: translateX(-4px);
}

.fab-menu-item svg {
    flex-shrink: 0;
    color: var(--color-green);
}

/* =========================================
   Scroll-to-Top Button
   ========================================= */

.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9000;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--color-red);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background var(--transition);
    border-radius: 50%;
}

.scroll-top-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--color-red-hover);
}

/* =========================================
   Fade-In Animationen
   ========================================= */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .fab-contact {
        bottom: 16px;
        right: 16px;
    }

    .scroll-top-btn {
        bottom: 16px;
        left: 16px;
    }
}

/* =========================================
   Kundenbewertungen
   ========================================= */

.reviews-section {
    padding: 64px 0;
    background: var(--color-white);
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--color-bg);
    padding: 24px;
    border: 1px solid var(--color-border-light);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ccc;
    font-size: 18px;
}

.star-filled {
    color: #f5a623;
}

.reviews-empty {
    text-align: center;
    color: var(--color-text-muted);
    padding: 20px;
}

.review-form-wrapper {
    background: var(--color-bg);
    padding: 32px;
    border: 1px solid var(--color-border-light);
    margin-top: 32px;
}

.review-form-wrapper h3 {
    margin-bottom: 20px;
    color: var(--color-text);
}

.review-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.review-form-group {
    flex: 1 1 200px;
    margin-bottom: 16px;
}

.review-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.review-form-group input,
.review-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    font-family: var(--font-sans);
    font-size: 14px;
    background: var(--color-white);
    box-sizing: border-box;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
}

.star-btn:hover,
.star-btn.star-active {
    color: #f5a623;
}

.review-notice {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.review-success {
    text-align: center;
    padding: 32px;
}

.review-success p {
    margin-top: 12px;
}

/* Reviews Admin */
.reviews-admin-section {
    margin-top: 32px;
    text-align: center;
}

.reviews-admin-toggle {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    font-family: var(--font-sans);
}

.reviews-admin-panel {
    margin-top: 16px;
    text-align: left;
}

.reviews-admin-login {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.reviews-admin-login input {
    padding: 8px 14px;
    border: 1px solid var(--color-border);
    font-family: var(--font-sans);
}

.reviews-admin-area h4 {
    margin: 24px 0 12px;
    color: var(--color-text);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-border-light);
}

.review-admin-card {
    background: var(--color-bg);
    padding: 20px;
    border: 1px solid var(--color-border-light);
    margin-bottom: 12px;
}

.review-admin-pending {
    border-left: 4px solid #f5a623;
}

.review-admin-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.reviews-admin-empty {
    color: var(--color-text-muted);
    font-style: italic;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.btn-success {
    background: var(--color-green);
    color: var(--color-white) !important;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
}

.btn-success:hover {
    background: #155d30;
}

/* =========================================
   Newsletter (Footer)
   ========================================= */

.footer-newsletter {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px 0 0;
    margin-top: 32px;
    text-align: center;
}

.footer-newsletter h3 {
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-newsletter > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 14px;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group .btn {
    border-radius: 0;
    white-space: nowrap;
}

.newsletter-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.newsletter-hint a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: underline;
}

.newsletter-success p {
    color: var(--color-white);
}

@media (max-width: 640px) {
    .reviews-list {
        grid-template-columns: 1fr;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group input {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
}
