/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Color Variables - K&K Logo Colors */
:root {
    --primary-color: #DC143C;    /* Logo Rot */
    --secondary-color: #B91C1C;  /* Dunkleres Rot */
    --accent-color: #DC143C;     /* Logo Rot für Akzente */
    --dark-color: #1F2937;       /* Sehr dunkles Grau/Schwarz */
    --light-color: #F9FAFB;      /* Sehr helles Grau */
    --white: #ffffff;
    --gray: #6B7280;
    --success: #DC143C;          /* Rot für Success auch */
    --shadow: rgba(220, 20, 60, 0.15);  /* Rötlicher Schatten */
    --logo-red: #DC143C;         /* Spezielle Logo-Farbe */
    --logo-dark: #000000;        /* Logo Schwarz */
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Toggle Button */
.language-toggle {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 1rem;
}

.language-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.language-toggle i {
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 120px 20px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    width: 100%;
}

/* Hero Quote - Neue Position innerhalb des Contents mit Animationen */
.hero-quote {
    margin: 1.5rem 0;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.hero-quote .quote-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 
        0 0 15px rgba(252, 165, 165, 0.9),
        0 0 30px rgba(252, 165, 165, 0.7),
        0 0 45px rgba(252, 165, 165, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    position: relative;
    animation: typewriter 4s steps(55) 2.5s both, glow 2s ease-in-out infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--white);
    letter-spacing: 2px;
}

/* Typewriter Animation */
@keyframes typewriter {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Cursor blinking animation */
@keyframes cursor {
    0%, 50% { border-color: var(--accent-color); }
    51%, 100% { border-color: transparent; }
}

/* Glow Animation */
@keyframes glow {
    0% {
        text-shadow: 
            0 0 10px rgba(252, 165, 165, 0.8),
            0 0 20px rgba(252, 165, 165, 0.6),
            0 0 30px rgba(252, 165, 165, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(252, 165, 165, 1),
            0 0 25px rgba(252, 165, 165, 0.8),
            0 0 35px rgba(252, 165, 165, 0.6),
            0 0 45px rgba(252, 165, 165, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.4);
    }
}

/* Responsive Anpassungen für das animierte Quote-Design */
@media (max-width: 768px) {
    .hero-quote {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .hero-quote .quote-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero-quote {
        margin: 0.6rem 0;
        padding: 0.6rem 0;
    }
    
    .hero-quote .quote-text {
        font-size: 1.1rem;
        white-space: normal;
        overflow: visible;
        border-right: none;
        animation: fadeInUp 1s ease-out 2s forwards, glow 2s ease-in-out infinite alternate;
        letter-spacing: 0.5px;
    }
}

/* Alte fullwidth quote styles entfernen/anpassen */
.hero-quote-fullwidth {
    display: none; /* Falls noch irgendwo verwendet */
}

.hero h1[data-i18n="hero-welcome"] {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: 3rem;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.hero-subtitle {
  font-family: 'Raleway', Arial, sans-serif !important;
  font-weight: 700;
  font-size: 1.5rem;
  color: #f8b6c2;
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}

.hero-description {
  font-family: 'Raleway', Arial, sans-serif !important;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.hero-image {
    text-align: center;
    margin-top: 3rem;
}

.hero-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Photo Carousel Section */
.photo-carousel {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.carousel-background {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--dark-color) 50%, 
        var(--primary-color) 75%, 
        var(--secondary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
}

.carousel-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.photo-carousel .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.photo-carousel .section-header h2,
.photo-carousel .section-header p {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: auto;
    height: 600px;
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    margin: 0 auto;
}

.carousel-slide video {
    width: auto;
    height: 600px;
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    margin: 0 auto;
    background: var(--dark-color);
}

.carousel-video {
    position: relative;
}

.video-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.video-indicator i {
    color: var(--accent-color);
}

/* Video Dot Styling */
.carousel-dot[data-video="true"] {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: 2px solid var(--accent-color);
}

.carousel-dot[data-video="true"]:hover {
    transform: scale(1.4);
    box-shadow: 0 0 15px var(--accent-color);
}

.carousel-dot[data-video="true"].active {
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.carousel-slide .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 3rem 2rem 2rem;
    border-radius: 0 0 20px 20px;
}

.carousel-slide .slide-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.carousel-slide .slide-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--white);
    border-radius: 50%;
    opacity: 0.6;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.carousel-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.carousel-counter {
    color: var(--white);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Loading Animation */
.carousel-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    color: var(--white);
    font-size: 1.2rem;
}

.carousel-loading::after {
    content: '';
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design für Carousel */
@media (max-width: 768px) {
    .photo-carousel {
        padding: 80px 0;
    }
    
    .carousel-slide img,
    .carousel-slide video {
        height: 450px;
    }

    .video-indicator {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        font-size: 1.2rem;
        padding: 12px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-slide .slide-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .carousel-slide .slide-title {
        font-size: 1.2rem;
    }
    
    .carousel-slide .slide-description {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img,
    .carousel-slide video {
        height: 400px;
    }
    
    .carousel-wrapper {
        border-radius: 15px;
    }
    
    .carousel-slide img {
        border-radius: 15px;
    }
    
    .carousel-slide .slide-overlay {
        border-radius: 0 0 15px 15px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: 50%;
    font-size: 1rem;
}

.feature span {
    font-weight: 500;
    color: var(--dark-color);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow);
}

/* Über uns - Moderne geschwungene Schriftarten */
.about .section-header h2[data-i18n="about-title"] {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about .section-header p[data-i18n="about-subtitle"] {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

/* "Unsere Geschichte" Überschrift */
.about-text h3[data-i18n="about-story-title"] {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* "Unsere Speisekarte" Section */
.products .section-header h2[data-i18n="products-title"] {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.products .section-header p[data-i18n="products-description"] {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

/* Responsive Anpassungen für geschwungene Schrift */
@media (max-width: 768px) {
    .about .section-header h2[data-i18n="about-title"] {
        font-size: 2.8rem;
    }
    
    .about .section-header p[data-i18n="about-subtitle"] {
        font-size: 1.1rem;
    }
    
    .about-text h3[data-i18n="about-story-title"] {
        font-size: 2rem;
    }
    
    .products .section-header h2[data-i18n="products-title"] {
        font-size: 2.8rem;
    }
    
    .products .section-header p[data-i18n="products-description"] {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about .section-header h2[data-i18n="about-title"] {
        font-size: 2.2rem;
    }
    
    .about .section-header p[data-i18n="about-subtitle"] {
        font-size: 1rem;
    }
    
    .about-text h3[data-i18n="about-story-title"] {
        font-size: 1.6rem;
    }
    
    .products .section-header h2[data-i18n="products-title"] {
        font-size: 2.2rem;
    }
    
    .products .section-header p[data-i18n="products-description"] {
        font-size: 1rem;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-button {
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--gray);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.tab-button.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

/* Tab Content */
.tab-content {
    margin-top: 2rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

/* Product Filter Buttons */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before {
    left: 0;
}

.filter-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.filter-btn.active:hover {
    background: var(--secondary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: var(--light-color);
    border-radius: 10px 10px 0 0;
}

/* Product Badges */
.product-badges {
    position: relative;
    padding: 12px 15px 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hide empty badge containers */
.product-badges:empty {
    display: none;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.badge-turkey {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-turkey:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.badge-vegetarian {
    background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%);
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-vegetarian:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.badge-vegan {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-vegan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.badge-vegan-available {
    background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-vegan-available:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.4);
}

/* Badge Animation */
@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
}

.badge:hover {
    animation: badgeGlow 2s ease-in-out infinite;
}

/* Responsive Badge Design */
@media (max-width: 768px) {
    .product-badges {
        padding: 10px 12px 6px;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .product-badges {
        padding: 8px 10px 4px;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        letter-spacing: 0.3px;
    }
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Reviews Section Styles */
.reviews {
    padding: 2rem 0;
    background: var(--white);
}

/* Reviews Carousel Styles */
.reviews-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    min-height: 300px;
}

.reviews-carousel-slide {
    min-width: 100%;
    padding: 3rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.reviews-carousel-slide .review-content {
    max-width: 800px;
}

.reviews-carousel-slide .review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.reviews-carousel-slide .review-stars i {
    color: #ffd700;
    font-size: 1.5rem;
}

.reviews-carousel-slide .review-text {
    font-size: 1.3rem;
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.reviews-carousel-slide .review-author {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.reviews-carousel-slide .review-date {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Carousel Navigation Buttons */
.reviews-carousel-wrapper .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.reviews-carousel-wrapper .carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.reviews-carousel-wrapper .carousel-btn-prev {
    left: 20px;
}

.reviews-carousel-wrapper .carousel-btn-next {
    right: 20px;
}

/* Carousel Dots */
.reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
}

.reviews-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-carousel-dot:hover {
    background: rgba(220, 20, 60, 0.6);
    transform: scale(1.2);
}

.reviews-carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

/* Carousel Controls */
.reviews-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.reviews-carousel-controls .carousel-control-btn {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.reviews-carousel-controls .carousel-control-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.reviews-carousel-controls .carousel-counter {
    color: var(--dark-color);
    font-weight: 600;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-carousel-slide {
        padding: 2rem 1.5rem;
    }
    
    .reviews-carousel-slide .review-text {
        font-size: 1.1rem;
    }
    
    .reviews-carousel-wrapper .carousel-btn {
        font-size: 1.2rem;
        padding: 12px;
    }
    
    .reviews-carousel-wrapper .carousel-btn-prev {
        left: 10px;
    }
    
    .reviews-carousel-wrapper .carousel-btn-next {
        right: 10px;
    }
    
    .reviews-carousel-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews-carousel-slide {
        padding: 1.5rem 1rem;
    }
    
    .reviews-carousel-slide .review-text {
        font-size: 1rem;
    }
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.google-reviews h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-reviews h3 i {
    color: #4285f4;
    font-size: 1.2rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
}

.rating-summary .stars {
    display: flex;
    gap: 2px;
}

.rating-summary .stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    color: var(--dark-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
}

.review-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.reviewer-info strong {
    color: var(--dark-color);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.reviewer-info small {
    color: var(--gray);
    font-size: 0.85rem;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #ffd700;
    font-size: 1rem;
}

.review-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Load More Reviews Button */
.load-more-reviews {
    grid-column: 1 / -1;
    text-align: center;
    margin: 2rem 0;
}

.load-more-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: rotate(90deg);
}

/* All Reviews Link */
.all-reviews-link {
    grid-column: 1 / -1;
    text-align: center;
    margin: 2rem 0;
}

.all-reviews-link .btn {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.all-reviews-link .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(66, 133, 244, 0.4);
    filter: brightness(1.1);
}

/* View All Google Reviews Link */
.view-all-google-reviews {
    margin-top: 2rem;
    text-align: center;
}

.view-all-google-reviews a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid #4285f4;
    border-radius: 50px;
    color: #4285f4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-google-reviews a:hover {
    background: #4285f4;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

/* Notification Styles */
.notification {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.notification i {
    color: #ffd700;
}

/* WordPress Reviews */
.wordpress-reviews {
    margin-top: 3rem;
}

.wordpress-reviews h3 {
    color: var(--dark-color);
    margin-bottom: 2rem;
}

/* Button Outline Style */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .load-more-btn, .all-reviews-link .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 3rem 0;
    }
    
    .review-card {
        margin: 0 0.5rem;
    }
    
    .notification {
        left: 10px;
        right: 10px;
        font-size: 0.85rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Social Media Section */
.social {
    padding: 100px 0;
    background: var(--dark-color);
    color: var(--white);
}

.social .section-header h2,
.social .section-header p {
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    min-width: 150px;
}

.social-link.tiktok {
    background: linear-gradient(135deg, #ff0050, #000);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 2rem;
}

.social-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Impressum Section */
.impressum {
    background: var(--light-color);
    padding: 80px 0;
    position: relative;
}

.impressum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(185, 28, 28, 0.05));
    pointer-events: none;
}

.impressum-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.impressum-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.impressum-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.impressum-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.impressum-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impressum-item p {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.impressum-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.impressum-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.impressum-dispute {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
}

.impressum-dispute h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impressum-dispute p {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.impressum-dispute a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.impressum-dispute a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.impressum-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.impressum-link {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.impressum-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
    text-decoration: none;
}

@media (max-width: 768px) {
    .impressum-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impressum-item {
        padding: 20px;
    }
    
    .impressum-dispute {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .impressum {
        padding: 60px 0;
    }
    
    .impressum-item {
        padding: 18px;
    }
    
    .impressum-item h4 {
        font-size: 1rem;
    }
    
    .impressum-dispute {
        padding: 20px;
    }
    
    .impressum-dispute h4 {
        font-size: 1.1rem;
    }
}

/* Datenschutz Page */
.datenschutz-content {
    background: var(--light-color);
    padding: 120px 0 80px;
    min-height: 100vh;
    position: relative;
}

.datenschutz-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03), rgba(185, 28, 28, 0.03));
    pointer-events: none;
}

.datenschutz-content .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.datenschutz-content .section-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.datenschutz-content .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    font-style: italic;
}

.datenschutz-text {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.datenschutz-section {
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.datenschutz-section:last-child {
    border-bottom: none;
}

.datenschutz-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.datenschutz-section h2::before {
    content: '';
    width: 4px;
    height: 25px;
    background: var(--primary-color);
    margin-right: 15px;
    border-radius: 2px;
}

.datenschutz-section p {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.datenschutz-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.datenschutz-section ul li {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
}

.datenschutz-section ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.datenschutz-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.datenschutz-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.datenschutz-behoerde {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(185, 28, 28, 0.05));
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.datenschutz-behoerde h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.datenschutz-contact {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(185, 28, 28, 0.05));
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.datenschutz-back {
    text-align: center;
    margin-top: 50px;
}

.datenschutz-back .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.datenschutz-back .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

@media (max-width: 768px) {
    .datenschutz-content {
        padding: 100px 0 60px;
    }
    
    .datenschutz-content .section-header h1 {
        font-size: 2rem;
    }
    
    .datenschutz-section {
        padding: 30px 25px;
    }
    
    .datenschutz-section h2 {
        font-size: 1.3rem;
    }
    
    .datenschutz-behoerde,
    .datenschutz-contact {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .datenschutz-content {
        padding: 90px 0 50px;
    }
    
    .datenschutz-content .section-header h1 {
        font-size: 1.8rem;
    }
    
    .datenschutz-section {
        padding: 25px 20px;
    }
    
    .datenschutz-section h2 {
        font-size: 1.2rem;
    }
    
    .datenschutz-back .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Impressum Page */
.impressum-page-content {
    background: var(--light-color);
    padding: 120px 0 80px;
    min-height: 100vh;
    position: relative;
}

.impressum-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03), rgba(185, 28, 28, 0.03));
    pointer-events: none;
}

.impressum-page-content .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.impressum-page-content .section-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.impressum-page-content .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    font-style: italic;
}

.impressum-page-text {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.impressum-page-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px;
}

.impressum-page-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.impressum-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.impressum-page-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impressum-page-item p {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.impressum-page-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.impressum-page-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.impressum-page-dispute {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
    margin: 0 40px 40px 40px;
}

.impressum-page-dispute h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impressum-page-dispute p {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.impressum-page-dispute a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.impressum-page-dispute a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.impressum-page-links {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.impressum-page-link {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.impressum-page-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
    text-decoration: none;
}

.impressum-page-back {
    text-align: center;
    margin-top: 50px;
}

.impressum-page-back .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.impressum-page-back .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

@media (max-width: 768px) {
    .impressum-page-content {
        padding: 100px 0 60px;
    }
    
    .impressum-page-content .section-header h1 {
        font-size: 2rem;
    }
    
    .impressum-page-info {
        padding: 30px 25px;
    }
    
    .impressum-page-item {
        padding: 20px;
    }
    
    .impressum-page-dispute {
        margin: 0 25px 30px 25px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .impressum-page-content {
        padding: 90px 0 50px;
    }
    
    .impressum-page-content .section-header h1 {
        font-size: 1.8rem;
    }
    
    .impressum-page-info {
        padding: 25px 20px;
    }
    
    .impressum-page-item {
        padding: 18px;
    }
    
    .impressum-page-dispute {
        margin: 0 20px 25px 20px;
        padding: 20px;
    }
    
    .impressum-page-back .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    /* filter: brightness(0) invert(1); Entfernt - Logo soll farbig bleiben */
}

.footer-tagline {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .language-toggle {
        margin: 1rem 0;
        margin-left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 80px 20px 40px;
        min-height: 65vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-image img {
        max-width: 350px;
    }

    .about-content,
    .contact-content,
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
    }

    .product-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 100px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
    }

    /* Mobile Logo Anpassungen */
    .logo {
        gap: 10px;
    }

    .logo-img {
        height: 45px;
    }

    .logo-text h2 {
        font-size: 1.4rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }

    .footer-logo {
        gap: 10px;
    }

    .footer-logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 70px 15px 30px;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-image {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image img {
        max-width: 280px;
    }

    .product-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.review-card,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling Offset for Fixed Header */
html {
    scroll-padding-top: 80px;
} 

/* Reviews Header - Zeigt aktuelle Info */
.reviews-header {
    margin-bottom: 2rem;
    text-align: center;
}

.latest-reviews-note {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
    margin: 0;
}

.latest-reviews-note i {
    animation: pulse 2s infinite;
}

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

/* NEU Badge für die neuesten Bewertungen */
.new-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    animation: newBadgeGlow 2s ease-in-out infinite;
}

@keyframes newBadgeGlow {
    0%, 100% { 
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 16px rgba(255, 107, 107, 0.6);
        transform: scale(1.05);
    }
}

/* Review Card Improvements */
.review-card[data-review-index="0"],
.review-card[data-review-index="1"],
.review-card[data-review-index="2"] {
    border-left: 4px solid #ff6b6b;
    background: linear-gradient(135deg, var(--white) 0%, #fff5f5 100%);
    position: relative;
    overflow: visible;
}

.review-card[data-review-index="0"]::before,
.review-card[data-review-index="1"]::before,
.review-card[data-review-index="2"]::before {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    height: 3px;
}

/* Highlight für die neueste Bewertung */
.review-card[data-review-index="0"] {
    border: 2px solid #ff6b6b;
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.review-card[data-review-index="0"]:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 45px rgba(255, 107, 107, 0.4);
}

/* Reviewer Info Styles */
.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-info strong {
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 600;
}

.reviewer-info small {
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Verbesserte Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Load More Button Improvements */
.load-more-btn {
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

/* Review Statistics */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-color), #f8f9fa);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Improved Rating Summary */
.rating-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.rating-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffd700, var(--secondary-color));
}

.rating-summary .stars {
    display: flex;
    gap: 3px;
}

.rating-summary .stars i {
    color: #ffd700;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    animation: starTwinkle 3s ease-in-out infinite;
    animation-delay: calc(var(--star-index, 0) * 0.2s);
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); filter: brightness(1.2); }
}

.rating-text {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.rating-count {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .latest-reviews-note {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .new-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        margin-left: 0.25rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .review-card[data-review-index="0"],
    .review-card[data-review-index="1"],
    .review-card[data-review-index="2"] {
        transform: none;
        margin: 0.5rem;
    }
    
    .review-card[data-review-index="0"] {
        border-width: 1px;
        transform: none;
    }
    
    .latest-reviews-note {
        margin: 0 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

.no-wrap {
  white-space: nowrap;
} 

/* "Was unsere Kunden sagen" Section */
.reviews .section-header h2[data-i18n="reviews-title"] {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.reviews .section-header p[data-i18n="reviews-description"] {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

/* "Impressionen" Section */
.gallery .section-header h2[data-i18n="gallery-title"] {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gallery .section-header p[data-i18n="gallery-description"] {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

/* "Folgen Sie uns" Section */
.social .section-header h2[data-i18n="social-title"] {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.social .section-header p[data-i18n="social-description"] {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

/* Responsive Anpassungen für geschwungene Schrift */
@media (max-width: 768px) {
    .about .section-header h2[data-i18n="about-title"] {
        font-size: 2.8rem;
    }
    
    .about .section-header p[data-i18n="about-subtitle"] {
        font-size: 1.1rem;
    }
    
    .about-text h3[data-i18n="about-story-title"] {
        font-size: 2rem;
    }
    
    .products .section-header h2[data-i18n="products-title"] {
        font-size: 2.8rem;
    }
    
    .products .section-header p[data-i18n="products-description"] {
        font-size: 1.1rem;
    }
    
    .reviews .section-header h2[data-i18n="reviews-title"] {
        font-size: 2.8rem;
    }
    
    .reviews .section-header p[data-i18n="reviews-description"] {
        font-size: 1.1rem;
    }
    
    .gallery .section-header h2[data-i18n="gallery-title"] {
        font-size: 2.8rem;
    }
    
    .gallery .section-header p[data-i18n="gallery-description"] {
        font-size: 1.1rem;
    }
    
    .social .section-header h2[data-i18n="social-title"] {
        font-size: 2.8rem;
    }
    
    .social .section-header p[data-i18n="social-description"] {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about .section-header h2[data-i18n="about-title"] {
        font-size: 2.2rem;
    }
    
    .about .section-header p[data-i18n="about-subtitle"] {
        font-size: 1rem;
    }
    
    .about-text h3[data-i18n="about-story-title"] {
        font-size: 1.6rem;
    }
    
    .products .section-header h2[data-i18n="products-title"] {
        font-size: 2.2rem;
    }
    
    .products .section-header p[data-i18n="products-description"] {
        font-size: 1rem;
    }
    
    .reviews .section-header h2[data-i18n="reviews-title"] {
        font-size: 2.2rem;
    }
    
    .reviews .section-header p[data-i18n="reviews-description"] {
        font-size: 1rem;
    }
    
    .gallery .section-header h2[data-i18n="gallery-title"] {
        font-size: 2.2rem;
    }
    
    .gallery .section-header p[data-i18n="gallery-description"] {
        font-size: 1rem;
    }
    
    .social .section-header h2[data-i18n="social-title"] {
        font-size: 2.2rem;
    }
    
    .social .section-header p[data-i18n="social-description"] {
        font-size: 1rem;
    }
    
    .contact .section-header h2[data-i18n="contact-title"] {
        font-size: 2.8rem;
    }
    
    .contact .section-header p[data-i18n="contact-description"] {
        font-size: 1.1rem;
    }
}

/* "Kontakt & Standort" Section */
.contact .section-header h2[data-i18n="contact-title"] {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact .section-header p[data-i18n="contact-description"] {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

/* Responsive Anpassungen für geschwungene Schrift */
@media (max-width: 768px) {
    .contact .section-header h2[data-i18n="contact-title"] {
        font-size: 2.8rem;
    }
    
    .contact .section-header p[data-i18n="contact-description"] {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact .section-header h2[data-i18n="contact-title"] {
        font-size: 2.2rem;
    }
    
    .contact .section-header p[data-i18n="contact-description"] {
        font-size: 1rem;
    }
}

/* Anti-Bot E-Mail Darstellung */
.email-image {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    user-select: all;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.email-image:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.email-image::before {
    content: "📧 ";
    margin-right: 5px;
}

.email-image::after {
    content: " (Klicken zum Kopieren)";
    font-size: 11px;
    color: var(--gray);
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: -20px;
    left: 0;
    white-space: nowrap;
}

.email-image:hover::after {
    opacity: 1;
}

/* Einzelne Teile der E-Mail - für Bots schwer zu erkennen */
.email-part,
.email-at,
.email-domain,
.email-dot,
.email-tld {
    display: inline;
    position: relative;
}

/* Pseudo-Verschleierung durch CSS */
.email-at::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

.email-dot::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .email-image {
        font-size: 14px;
        padding: 6px 10px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .email-image {
        font-size: 13px;
        padding: 5px 8px;
        display: block;
        text-align: center;
        margin-top: 5px;
    }
}