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

        :root {
            --primary-yellow: #F9A825;
            --dark-yellow: #F57F17;
            --primary-black: #212121;
            --secondary-black: #424242;
            --light-bg: #FFFDE7;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--primary-black);
            overflow-x: hidden;
        }

        /* Navigation Bar */
        .navbar {
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

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

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            position: relative;
        }

        .language-toggle-btn {
            background: var(--primary-yellow);
            color: var(--primary-black);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .language-toggle-btn:hover {
            background: var(--dark-yellow);
            transform: translateY(-2px);
        }

        .language-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--white);
            border: 2px solid var(--primary-yellow);
            border-radius: 5px;
            margin-top: 0.5rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            min-width: 150px;
        }

        .language-dropdown.show {
            display: flex;
            flex-direction: column;
        }

        .language-dropdown .lang-btn {
            border-radius: 0;
            width: 100%;
            text-align: left;
            background: var(--white);
            color: var(--primary-black);
            border: none;
            border-bottom: 1px solid #e0e0e0;
        }

        .language-dropdown .lang-btn:last-child {
            border-bottom: none;
        }

        .language-dropdown .lang-btn:hover {
            background: var(--light-bg);
            transform: none;
        }

        .language-dropdown .lang-btn.active {
            background: var(--primary-yellow);
            color: var(--primary-black);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-yellow);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .lang-btn {
            background: var(--primary-yellow);
            color: var(--primary-black);
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        /* Slideshow Section */
        .slideshow-container {
            max-width: 100%;
            position: relative;
            margin: 0 auto;
            background: var(--primary-black);
            height: 500px;
            overflow: hidden;
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0.4; }
            to { opacity: 1; }
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
            position: relative;

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        .slide-overlay {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;

            /*background: linear-gradient(
                rgba(0,0,0,0.6),
                rgba(0,0,0,0.6)
            );*/

            padding: 3rem 2rem;
        }

        .slide-text {
            background: rgba(33, 33, 33, 0.8);
            color: white;
            padding: 1.5rem 2rem;
            border-left: 5px solid var(--primary-yellow);
            border-radius: 5px;
            max-width: 600px;
        }

        .prev-btn, .next-btn {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            padding: 1rem;
            color: var(--primary-yellow);
            background: rgba(33, 33, 33, 0.7);
            font-weight: bold;
            font-size: 1.5rem;
            border: 2px solid var(--primary-yellow);
            border-radius: 5px;
            transition: all 0.3s ease;
            user-select: none;
        }

        .prev-btn:hover, .next-btn:hover {
            background: rgba(255, 193, 7, 0.8);
            color: var(--primary-black);
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        .slide-dots {
            text-align: center;
            position: absolute;
            bottom: 20px;
            width: 100%;
        }

        .dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid var(--primary-yellow);
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .dot.active, .dot:hover {
            background-color: var(--primary-yellow);
        }

        /* Shop Information Section */
        .shop-info {
            background: linear-gradient(to bottom, var(--light-bg), var(--white));
            padding: 4rem 2rem;
        }

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

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-black);
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-yellow);
        }

        .intro-text {
            text-align: center;
            font-size: 1.2rem;
            color: var(--secondary-black);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .product-card {
            background: var(--white);
            border: 3px solid var(--primary-yellow);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
            background: var(--light-bg);
        }

        .product-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
            opacity: 0.2;
            transition: opacity 0.5s ease;
        }

        .product-card:hover .product-card-img {
            opacity: 1;
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            color: var(--primary-black);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .product-card p {
            color: var(--secondary-black);
        }

        /* Map Section */
        .map-section {
            background: var(--primary-black);
            padding: 4rem 2rem;
        }

        .map-section .section-title {
            color: var(--primary-yellow);
        }

        .map-container {
            max-width: 1200px;
            margin: 2rem auto;
            height: 450px;
            border: 4px solid var(--primary-yellow);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: var(--secondary-black);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-yellow);
            font-size: 1.5rem;
            text-align: center;
            padding: 2rem;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(to bottom, var(--light-bg), var(--white));
            padding: 4rem 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
        }

        .contact-card {
            background: var(--white);
            border: 3px solid var(--primary-yellow);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .contact-icon {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            color: var(--primary-black);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact-card p, .contact-card a {
            color: var(--secondary-black);
            font-size: 1.1rem;
            text-decoration: none;
        }

        .contact-btn {
            display: inline-block;
            background: var(--primary-yellow);
            color: var(--primary-black);
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .contact-btn:hover {
            background: var(--dark-yellow);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .phone-link {
            color: var(--primary-yellow);
            font-weight: bold;
            font-size: 1.3rem;
        }

        .phone-link:hover {
            text-decoration: underline;
        }

        /* Place Order Section */
        .place-order-section {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
            padding: 4rem 2rem;
            text-align: center;
        }

        .order-cta {
            max-width: 800px;
            margin: 0 auto;
        }

        .order-cta h2 {
            color: var(--primary-black);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .order-cta p {
            color: var(--secondary-black);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .order-cta-btn {
            display: inline-block;
            background: var(--primary-black);
            color: var(--primary-yellow);
            padding: 1.2rem 3rem;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .order-cta-btn:hover {
            background: var(--secondary-black);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
            color: var(--white);
            padding: 3rem 2rem 1rem;
        }

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

        .footer-section h3 {
            color: var(--primary-yellow);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p, .footer-section a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-section a:hover {
            color: var(--primary-yellow);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 2px solid var(--primary-yellow);
            color: var(--primary-yellow);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }

            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-right {
                width: 100%;
                justify-content: center;
            }

            .language-toggle-btn {
                width: auto;
            }

            .language-dropdown {
                right: 50%;
                transform: translateX(50%);
            }

            .logo {
                font-size: 1.5rem;
            }

            .slideshow-container {
                height: 300px;
            }

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

            .intro-text {
                font-size: 1rem;
            }

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

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

            .prev-btn, .next-btn {
                padding: 0.5rem;
                font-size: 1.2rem;
            }

            .map-container {
                height: 300px;
            }

            .order-cta h2 {
                font-size: 2rem;
            }

            .order-cta p {
                font-size: 1rem;
            }

            .order-cta-btn {
                font-size: 1.1rem;
                padding: 1rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .slideshow-container {
                height: 250px;
            }

            .slide-placeholder {
                padding: 2rem 1rem;
            }

            .slide-text {
                font-size: 1.2rem;
                padding: 1rem 1.5rem;
            }

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

            .language-toggle-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.95rem;
            }
        }