/* Modernes Farbschema für Gastronomie */
:root {
    --primary: #d4a017;  /* Gold für Gastronomie */
    --primary-dark: #b8860b;
    --secondary: #8b0000; /* Dunkelrot für Premium */
    --dark: #2c3e50;     /* Dunkelblau für Professionalität */
    --light: #f8f9fa;    /* Hellgrau für Hintergründe */
    --accent: #27ae60;   /* Grün für Sonderangebote */
    --text: #333;
    --border: #e1e1e1;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

/* Reset und Basisstile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 1.5em; /* basiert auf Schriftgröße der logo-text */
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-highlight {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}


/* Language Switcher */
.language-switcher {
    position: relative;
    display: inline-block;
    color: #d4a017;
    margin-top: 15px;
}

.current-language {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
}

.language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.language-dropdown a {
    color: var(--dark);
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.language-dropdown a:hover {
    background: #f1f1f1;
}

.language-switcher:hover .language-dropdown {
    display: block;
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}







    .language-dropdown {
        max-height: 300px;
        overflow-y: auto;
        scrollbar-width: thin;
    }
    
    .language-dropdown::-webkit-scrollbar {
        width: 8px;
    }
    
    .language-dropdown::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 4px;
    }
    
    .language-dropdown::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
	
	



/* Hero Bereich */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(212, 160, 23, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #6b0000;
    box-shadow: 0 6px 15px rgba(139, 0, 0, 0.4);
}

/* Features Bereich */
.features {
    padding: 80px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 40px 25px;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Produkte Bereich */
.products {
    padding: 80px 0;
}



.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.85rem;
    z-index: 10;
}

.product-image {
    height: 200px;
    width: 100%;
    background: linear-gradient(45deg, #f5f7fa, #e4e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
    min-height: 60px;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-right: 10px;
}

.original-price {
    font-size: 1.1rem;
    color: #777;
    text-decoration: line-through;
}

.product-card .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
}



/* Business Notice */
.business-notice {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
}

/* Produktdetail-Galerie */
.main-image {
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    margin-bottom: 15px;
}

.main-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.thumbnails-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f5f7fa;
    border-radius: 5px;
    border: 1px solid var(--border);
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

.thumbnail-item img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.active-thumbnail {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 0 8px rgba(212, 160, 23, 0.5);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo {
        justify-content: center;
    }
    
    nav ul {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 8px 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .products-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail-item {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 250px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 30, 60, 0.9);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    font-family: 'Segoe UI', sans-serif;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    line-height: 1.5;
}

.cookie-link {
    color: #4da6ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}








 /* Modernes Farbschema für Gastronomie */
        :root {
            --primary: #d4a017;  /* Gold für Gastronomie */
            --primary-dark: #b8860b;
            --secondary: #8b0000; /* Dunkelrot für Premium */
            --dark: #2c3e50;     /* Dunkelblau für Professionalität */
            --light: #f8f9fa;    /* Hellgrau für Hintergründe */
            --accent: #27ae60;   /* Grün für Sonderangebote */
            --text: #333;
            --border: #e1e1e1;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }

        /* Reset und Basisstile */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: #fff;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Business Notice */
        .business-notice {
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 12px;
            font-size: 0.85rem;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            font-weight: bold;
            font-size: 20px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .logo-highlight {
            color: var(--primary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            font-size: 1rem;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Breadcrumb */
        .breadcrumb {
            margin: 20px 0;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: #777;
        }


        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            fill: var(--primary);
            min-width: 20px;
            margin-top: 4px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .logo {
                justify-content: center;
            }
            
            nav ul {
                margin-top: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 8px 15px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-actions {
                flex-direction: column;
            }
        }
		
		
		
		
		/* Social Media Links */
.social-item .social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white; /* Weiße Schriftfarbe */
}

.social-icon {
    width: 24px; /* Kleine Größe */
    height: 24px;
    margin-right: 10px; /* Abstand zwischen Logo und Text */
}

.social-link span {
    color: white; /* Sicherstellen, dass der Text weiß ist */
    font-size: 1em; /* Normale Schriftgröße */
}

/* Sicherstellen, dass alle Texte im Footer weiß sind */
footer, 
footer a, 
footer span, 
footer p, 
footer li, 
footer .contact-info {
    color: white;
}

/* Hover-Effekt für bessere Interaktivität */
.social-link:hover span {
    text-decoration: underline;
}

/* Anpassungen für Mobile Viewports */
@media (max-width: 768px) {
  /* Hero-Bereich optimieren */
  .hero {
    padding: 50px 0; /* Padding reduzieren */
  }
  
  .hero h1 {
    font-size: 1.8rem; /* Schriftgröße reduzieren */
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 1rem; /* Schriftgröße reduzieren */
    margin-bottom: 20px;
  }
  
  /* Logo anpassen */
  .logo-text {
    font-size: 1.2rem;
  }
  
  /* Navigation optimieren */
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  nav ul li a {
    font-size: 0.9rem;
  }
  
  /* Sprachauswahl anpassen */
  .language-switcher {
    margin-top: 10px;
  }
  
  .language-dropdown {
    max-height: 200px;
    overflow-y: auto;
  }
}

/* Weitere Optimierungen für kleine Displays */
@media (max-width: 480px) {
  .hero {
    padding: 30px 0; /* Noch weniger Padding */
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  /* Business Notice anpassen */
  .business-notice {
    font-size: 0.75rem;
    padding: 8px;
  }
  
  /* Produktkarten anpassen */
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    margin-bottom: 15px;
  }
}





 <!-- Slideshow-Styles -->
   
        /* Slideshow-spezifische Styles */
        .product-card.slideshow-card .product-image {
            height: 250px;
            position: relative;
            overflow: hidden;
        }
        
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slideshow {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slideshow img {
            position: absolute;
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            opacity: 0;
            transition: opacity 1s ease;
            border-radius: 8px;
        }
        
        .slideshow img.active {
            opacity: 1;
        }
        
        /* Badge-Stile für Slideshow */
        .slideshow-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 20;
        }
        
        .slideshow-badge-inner {
            display: inline-block;
            background-color: #27ae60;
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.0rem;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            transition: opacity 0.5s ease;
            white-space: nowrap;
            max-width: 200px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .slideshow-badge-inner.active {
            opacity: 1;
        }
        
        /* Slideshow-Steuerelemente */
        .slideshow-controls {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 25;
        }
        
        .slideshow-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slideshow-dot.active {
            background-color: #fff;
        }
        
        /* Responsive Anpassungen */
        @media (max-width: 768px) {
            .product-card.slideshow-card .product-image {
                height: 220px;
            }
        }
		
		
		
		
		
		
		
		    /* Video-Container */
    .video-container {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
        background-color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    /* Video-Poster (wird angezeigt, bis Video geladen ist) */
    .video-poster {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
    }
    
    .play-button {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        transition: all 0.3s ease;
    }
    
    .video-container:hover .play-button {
        transform: scale(1.1);
        background: rgba(0, 0, 0, 0.9);
    }
    
    /* Video-Stile */
    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    
    /* Video-Steuerelemente */
    .video-controls {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 3;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .video-container:hover .video-controls {
        opacity: 1;
    }
    
    .play-pause-btn {
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Anpassungen für Mobilgeräte */
    @media (max-width: 768px) {
        .video-container {
            height: 200px;
        }
        
        .video-container video {
            object-fit: contain;
        }
        
        /* Größerer Play-Button für Mobilgeräte */
        .play-button {
            width: 70px;
            height: 70px;
            font-size: 28px;
        }
        
        /* Steuerelemente auf Mobilgeräten immer sichtbar */
        .video-controls {
            opacity: 1;
            bottom: 15px;
            right: 15px;
        }
        
        .play-pause-btn {
            width: 45px;
            height: 45px;
            font-size: 18px;
        }
    }
    
    /* Zustände, wenn Video läuft */
    .video-playing .video-poster {
        display: none;
    }
    
    .video-playing .play-button {
        display: none;
    }
	
	
	
	
	
    