/* =============================================
   Gärtnerei Eber – Premium Website Styles
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #1a4a1a;
    --green-mid: #2d7a2d;
    --green-light: #5ba85b;
    --green-pale: #e8f5e3;
    --green-bg: #f4faf2;
    --brown: #5d3a1a;
    --brown-light: #a67c52;
    --cream: #fdfcf8;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(26,74,26,0.08);
    --shadow-hover: 0 8px 32px rgba(26,74,26,0.14);
    --shadow-lg: 0 12px 48px rgba(26,74,26,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.75;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--green-mid);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-dark);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.cards .fade-in:nth-child(2) { transition-delay: 0.1s; }
.cards .fade-in:nth-child(3) { transition-delay: 0.2s; }
.cards .fade-in:nth-child(4) { transition-delay: 0.3s; }
.aktuelles-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.aktuelles-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.aktuelles-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   Header
   ============================================= */
.header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(26,74,26,0.06);
}

.header-scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo:hover { color: inherit; }

.logo-img {
    height: 75px;
    width: auto;
    transition: transform var(--transition);
    object-fit: contain;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.nav {
    display: flex;
    gap: 8px;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 8px;
    position: relative;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.nav a:hover {
    color: var(--green-dark);
    background: var(--green-pale);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: var(--green-pale);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* =============================================
   Hero
   ============================================= */
.hero {
    position: relative;
    background: var(--green-dark);
    color: var(--white);
    padding: 140px 0 160px;
    text-align: center;
    overflow: hidden;
    min-height: 520px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d2e0d 0%, #1a4a1a 30%, #2d7a2d 70%, #3d8a3d 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(93,186,93,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.06) 0%, transparent 40%);
    z-index: 1;
}

.hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 1;
}

.hero-deco-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -100px;
    right: -100px;
}

.hero-deco-2 {
    width: 250px;
    height: 250px;
    background: white;
    bottom: -80px;
    left: -60px;
}

.hero-deco-3 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255,255,255,0.1);
    background: none;
    top: 40%;
    left: 15%;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.wave-bottom svg {
    width: 100%;
    height: 60px;
}

/* =============================================
   Sections
   ============================================= */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--green-bg);
}

.section-green {
    background: linear-gradient(160deg, #1a4a1a 0%, #2d7a2d 100%);
    color: var(--white);
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-light);
    margin-bottom: 12px;
}

.section-label-light {
    color: rgba(255,255,255,0.6);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--green-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--green-mid));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title-light {
    color: var(--white);
}

.section-title-light::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.7));
}

.section-subtitle-light {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-top: 16px;
    font-weight: 300;
}

/* =============================================
   About
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1.02rem;
    color: var(--text-light);
}

.about-text p:first-child {
    color: var(--text);
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--green-pale);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.image-frame {
    position: relative;
}

.image-frame img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.image-accent {
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 2px solid var(--green-pale);
    border-radius: var(--radius);
    z-index: 0;
}

/* =============================================
   Cards (Angebot)
   ============================================= */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 40px 28px 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(26,74,26,0.04);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--green-mid));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 16px;
    color: var(--green-mid);
    transition: all var(--transition);
}

.card:hover .card-icon-wrap {
    background: var(--green-mid);
    color: var(--white);
    transform: scale(1.05);
}

.card-icon-svg {
    width: 32px;
    height: 32px;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* =============================================
   Aktuelles
   ============================================= */
.aktuelles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.aktuelles-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--green-light);
    transition: all var(--transition);
    position: relative;
}

.aktuelles-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.aktuelles-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--green-pale);
    color: var(--green-mid);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.ehrung-badge {
    background: #fff3e0;
    color: #e65100;
}

.aktuelles-card.highlight {
    border-left-color: var(--green-dark);
    background: linear-gradient(145deg, var(--green-pale) 0%, var(--white) 100%);
}

.aktuelles-card.ehrung {
    border-left-color: var(--brown-light);
}

.aktuelles-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.aktuelles-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* =============================================
   Wochenmarkt (Green Section)
   ============================================= */
.markt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.markt-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
}

.markt-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.markt-icon {
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.markt-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.markt-ort {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
}

.markt-divider {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 18px auto;
}

.markt-zeiten {
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
}

.markt-uhr {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.vorbestellen {
    text-align: center;
    margin-top: 48px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 36px;
    border-radius: var(--radius);
}

.vorbestellen p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
}

.vorbestellen-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   WhatsApp & Telefon Buttons
   ============================================= */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white) !important;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #1ebe57;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.tel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    color: var(--white) !important;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all var(--transition);
}

.tel-btn:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* Instagram Feed Section */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.02rem;
    margin-top: 12px;
}

.section-subtitle a {
    font-weight: 600;
}

.instagram-feed {
    max-width: 900px;
    margin: 0 auto;
}

.instagram-placeholder {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 60px 40px;
    text-align: center;
    border: 2px dashed rgba(26,74,26,0.12);
}

.instagram-placeholder svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.instagram-placeholder p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Instagram Button */
.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white) !important;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(131, 58, 180, 0.3);
}

.instagram-btn:hover {
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(131, 58, 180, 0.4);
}

.kontakt-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    padding: 0;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: translateY(-2px);
    padding-left: 0;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* =============================================
   Öffnungszeiten
   ============================================= */
.oeffnungszeiten-wrapper {
    display: flex;
    justify-content: center;
}

.oeffnungszeiten {
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-width: 500px;
}

.oeffnungszeiten td {
    padding: 16px 28px;
    border-bottom: 1px solid rgba(26,74,26,0.06);
    font-size: 0.98rem;
}

.oeffnungszeiten tr:last-child td {
    border-bottom: none;
}

.oeffnungszeiten td:first-child {
    font-weight: 600;
    color: var(--green-dark);
    background: var(--green-pale);
    min-width: 140px;
}

.oeffnungszeiten tr.closed td:last-child {
    color: var(--text-muted);
    font-style: italic;
}

/* =============================================
   Kontakt
   ============================================= */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.kontakt-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.kontakt-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.kontakt-detail svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.kontakt-detail p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

.kontakt-detail a {
    color: var(--green-mid);
    font-weight: 500;
}

.kontakt-detail a:hover {
    color: var(--green-dark);
}

.kontakt-info .whatsapp-btn {
    margin-top: 12px;
}

.kontakt-hinweis {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.kontakt-karte iframe {
    box-shadow: var(--shadow-lg);
}

/* =============================================
   Footer
   ============================================= */
.footer {
    position: relative;
}

.footer-wave {
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 40px;
}

.footer-inner {
    background: var(--green-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(2);
    opacity: 0.9;
}

.footer-slogan {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.65;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: all var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.65;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.8);
}

/* =============================================
   Back to Top
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--green-dark);
    border: 1px solid rgba(26,74,26,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        padding: 16px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        gap: 4px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .nav.nav-open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 120px;
        min-height: auto;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .about-grid,
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
    }

    .image-accent {
        display: none;
    }

    .markt-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aktuelles-grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .oeffnungszeiten {
        min-width: 100%;
    }

    .oeffnungszeiten td {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.65rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .vorbestellen-buttons {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-btn, .tel-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* --- Elfsight Branding ausblenden --- */
a[href*="elfsight.com"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
}
}
