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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            background: #f5e6d3;
        }

        /* Decorative Simit Pattern Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle, rgba(139, 69, 19, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: -1;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 25px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(218, 165, 32, 0.95) 0%, rgba(184, 134, 11, 0.9) 100%);
            transition: all 0.3s ease;
            border-bottom: 4px solid #8B4513;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .navbar.scrolled {
            background: rgba(184, 134, 11, 0.98);
            padding: 15px 80px;
            box-shadow: 0 2px 30px rgba(0,0,0,0.3);
            border-bottom: 3px solid #8B4513;
        }

        /* Decorative navbar borders */
        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: repeating-linear-gradient(
                90deg,
                #8B4513 0px,
                #8B4513 20px,
                transparent 20px,
                transparent 40px
            );
        }

        .logo {
            font-family: 'Hobo BT', sans-serif;
            font-size: 50px;
            font-weight: normal;
            color: #fe0201;
            letter-spacing: 1px;
            text-shadow:

                1px 1px 0px #000000;
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative;
        }

       

        @keyframes rotate {
            0%, 100% { transform: rotate(-15deg); }
            50% { transform: rotate(15deg); }
        }

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

        .nav-center {
            display: flex;
            gap: 45px;
            align-items: center;
        }

        .nav-center a {
            text-decoration: none;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-center a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #fe0201;
            transition: width 0.3s ease;
            border-radius: 2px;
            box-shadow: 0 2px 5px rgba(254, 2, 1, 0.5);
        }

        .nav-center a:hover::before {
            width: 100%;
        }

        .nav-center a:hover {
            color: #ffe4b5;
            transform: translateY(-2px);
        }

        .franchise-btn {
            padding: 12px 30px;
            border: 3px solid #8B4513;
            border-radius: 30px;
            background: linear-gradient(135deg, #ffe4b5, #ffd700);
            color: #8B4513;
            cursor: pointer;
            transition: all 0.4s ease;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 13px;
            position: relative;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }

        .franchise-btn:hover {
            background: linear-gradient(135deg, #ffd700, #ffb347);
            color: #fff;
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5);
            border-color: #fe0201;
        }

        /* Cart Button */
        .cart-btn {
            padding: 12px 30px;
            border: 3px solid #8B4513;
            border-radius: 30px;
            background: linear-gradient(135deg, #fe0201, #ff6347);
            color: white;
            cursor: pointer;
            transition: all 0.4s ease;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 13px;
            position: relative;
            margin-left: 15px;
            box-shadow: 0 4px 15px rgba(254, 2, 1, 0.3);
        }

        .cart-btn:hover {
            background: linear-gradient(135deg, #ff6347, #ff4444);
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 6px 25px rgba(254, 2, 1, 0.5);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ffd700;
            color: #8B4513;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            border: 2px solid #8B4513;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        /* Hero Section */
       .hero {
    position: relative;
    height: 100vh;
    padding-top: 120px; /* navbar yüksekliği */
    display: flex;
    align-items: center;
    justify-content: center;
}


        .slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .slides {
            display: flex;
            width: 400%;
            height: 100%;
            animation: slide 24s infinite;
        }

        .slides img {
            width: 25%;
            height: 100%;
            flex-shrink: 0;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.7);
        }

        @keyframes slide {
            0%, 22% { transform: translateX(0); }
            25%, 47% { transform: translateX(-25%); }
            50%, 72% { transform: translateX(-50%); }
            75%, 97% { transform: translateX(-75%); }
            100% { transform: translateX(0); }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at center, rgba(139, 69, 19, 0.2), rgba(0,0,0,0.5)),
                linear-gradient(to bottom, rgba(218, 165, 32, 0.2), transparent);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 85px;
            font-family: 'Dancing Script', cursive;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 
        
                6px 6px 20px rgba(0,0,0,0.5);
            letter-spacing: 2px;
            animation: fadeInUp 1s ease;
            color: #ffffff;
        }
        .hero-titleesk {
            font-size: 85px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 
        
                6px 6px 20px rgba(0,0,0,0.5);
            letter-spacing: 2px;
            animation: fadeInUp 1s ease;
            color: #ffffff;
        }
        .hero-titlelogo{
            font-size: 100px;
            font-family: 'Hobo BT', sans-serif;
            font-weight: 1000;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 
                4px 4px 0px #000000,
                
                6px 6px 20px rgba(0,0,0,0.5);
            letter-spacing: 2px;
            animation: fadeInUp 1s ease;
            color: #ff0000;
        }
        .hero-title2 {
            font-size: 85px;
            font-family: 'Poppins', serif;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 
             
                
                6px 6px 20px rgba(0,0,0,0.5);
            letter-spacing: 2px;
            animation: fadeInUp 1s ease;
            color: #ffffff;
        }

        .hero-title span {
           font-family: 'Playfair Display', serif;

            display: block;
            color: #ffffff;
            font-size: 95px;
            text-shadow: 
                
                
                6px 6px 20px rgba(0,0,0,0.5);
        }

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

        .scroll-indicator {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

       

        .scroll-indicator span {
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes scroll {
            0% {
                opacity: 1;
                top: 8px;
            }
            100% {
                opacity: 0;
                top: 25px;
            }
        }

        /* Products Section */
        .products {
            padding: 120px 80px;
            background: 
                linear-gradient(135deg, #ffe4b5 0%, #ffd7a8 100%),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(139, 69, 19, 0.03) 10px,
                    rgba(139, 69, 19, 0.03) 20px
                );
            position: relative;
        }

        .products::before {
            content: '🥖';
            position: absolute;
            top: 50px;
            left: 50px;
            font-size: 80px;
            opacity: 0.1;
            transform: rotate(-15deg);
        }

        .products::after {
            content: '🥐';
            position: absolute;
            bottom: 50px;
            right: 50px;
            font-size: 80px;
            opacity: 0.1;
            transform: rotate(15deg);
        }

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

        .section-title {
            font-size: 52px;
            font-family: 'Playfair Display', serif;
            margin-bottom: 15px;
            color: #8B4513;
            text-shadow: 2px 2px 0px #ffd700;
            position: relative;
            display: inline-block;
        }

        .section-title::before {
            content: '🌾';
            position: absolute;
            left: -60px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 40px;
        }

        .section-title::after {
            content: '🌾';
            position: absolute;
            right: -60px;
            top: 50%;
            transform: translateY(-50%) scaleX(-1);
            font-size: 40px;
        }

        .section-subtitle {
            font-size: 16px;
            color: #8B4513;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .product-card {
            background: linear-gradient(145deg, #fff, #fffaf0);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 10px 40px rgba(139, 69, 19, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transition: all 0.4s ease;
            position: relative;
            cursor: pointer;
            border: 3px solid #daa520;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

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

        .product-card:hover::after {
            opacity: 0.3;
            transform: rotate(-15deg) scale(1);
        }

        .product-card:hover {
            transform: translateY(-15px) rotate(-1deg);
            box-shadow: 
                0 20px 60px rgba(139, 69, 19, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border-color: #fe0201;
        }

        .product-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.1);
        }

        .product-info {
            padding: 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .product-info h3 {
            font-size: 26px;
            margin-bottom: 12px;
            color: #333;
            font-family: 'Playfair Display', serif;
        }

        .product-info p {
            color: #777;
            line-height: 1.7;
            font-size: 15px;
        }

        .product-price {
            font-size: 28px;
            color: #fe0201;
            font-weight: bold;
            margin: 15px 0;
            font-family: 'Playfair Display', serif;
            text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
            background: linear-gradient(135deg, #ffd700, #ffb347);
            padding: 8px 20px;
            border-radius: 25px;
            display: inline-block;
            border: 2px solid #8B4513;
        }

        /* Product Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
        }

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

        .modal-content {
            background: linear-gradient(145deg, #fffaf0, #fff);
            border-radius: 25px;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
            border: 4px solid #daa520;
            box-shadow: 0 20px 60px rgba(139, 69, 19, 0.4);
        }

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

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #fe0201, #ff6347);
            border: 3px solid #8B4513;
            border-radius: 50%;
            color: white;
            font-size: 28px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .modal-close:hover {
            background: linear-gradient(135deg, #ff6347, #ff4444);
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 6px 20px rgba(254, 2, 1, 0.5);
        }

        .modal-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .modal-body {
            padding: 40px;
        }

        .modal-body h2 {
            font-size: 38px;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            color: #333;
        }

        .modal-body .product-price {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .modal-body p {
            color: #666;
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .quantity-selector span {
            font-weight: 600;
            font-size: 16px;
        }

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

        .qty-btn {
            width: 40px;
            height: 40px;
            border: 2px solid #fe0201;
            background: white;
            color: #fe0201;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .qty-btn:hover {
            background: #fe0201;
            color: white;
        }

        .qty-display {
            font-size: 24px;
            font-weight: bold;
            min-width: 40px;
            text-align: center;
        }

        .add-to-cart-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #fe0201, #ff6347);
            color: white;
            border: 3px solid #8B4513;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 6px 20px rgba(254, 2, 1, 0.3);
        }

        .add-to-cart-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(254, 2, 1, 0.5);
            background: linear-gradient(135deg, #ff6347, #ff4444);
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100%;
            background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
            box-shadow: -5px 0 30px rgba(139, 69, 19, 0.3);
            z-index: 3000;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            border-left: 5px solid #daa520;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            padding: 30px;
            background: linear-gradient(135deg, #daa520, #b8860b);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 3px solid #8B4513;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cart-header h2 {
            font-size: 24px;
            font-family: 'Playfair Display', serif;
        }

        .cart-close {
            width: 40px;
            height: 40px;
            background: rgba(139, 69, 19, 0.3);
            border: 2px solid #8B4513;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cart-close:hover {
            background: #fe0201;
            transform: rotate(90deg) scale(1.1);
            border-color: #fe0201;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            padding: 20px;
            border-bottom: 1px solid #eee;
            align-items: center;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #fe0201;
            font-weight: bold;
            font-size: 18px;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }

        .cart-item-quantity button {
            width: 28px;
            height: 28px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .cart-item-quantity button:hover {
            background: #fe0201;
            color: white;
            border-color: #fe0201;
        }

        .cart-item-remove {
            color: #999;
            cursor: pointer;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .cart-item-remove:hover {
            color: #fe0201;
        }

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        .cart-empty-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .cart-footer {
            padding: 25px;
            border-top: 3px solid #daa520;
            background: linear-gradient(135deg, #ffe4b5, #ffd7a8);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: bold;
            color: #8B4513;
        }

        .cart-total-price {
            color: #fe0201;
            font-size: 32px;
            font-family: 'Playfair Display', serif;
            text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
        }

        .checkout-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #fe0201, #ff6347);
            color: white;
            border: 3px solid #8B4513;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 6px 20px rgba(254, 2, 1, 0.3);
        }

        .checkout-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(254, 2, 1, 0.5);
            background: linear-gradient(135deg, #ff6347, #ff4444);
        }

        .checkout-btn:disabled {
            background: linear-gradient(135deg, #ccc, #999);
            cursor: not-allowed;
            transform: none;
            border-color: #999;
        }

        /* Map Section */
        .map-section {
            padding: 0;
            background: #222;
        }

        .map-container {
            width: 100%;
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(0.3);
        }

        /* Footer */
        .footer {
            background: 
                linear-gradient(135deg, #8B4513 0%, #654321 100%),
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 20px,
                    rgba(218, 165, 32, 0.1) 20px,
                    rgba(218, 165, 32, 0.1) 40px
                );
            color: white;
            padding: 60px 80px 30px;
            border-top: 5px solid #daa520;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: repeating-linear-gradient(
                90deg,
                #ffd700 0px,
                #ffd700 20px,
                transparent 20px,
                transparent 40px
            );
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-about .logo {
            margin-bottom: 20px;
            font-size: 36px;
            text-shadow: 
                3px 3px 0px #654321,
                -1px -1px 0px #ffd700;
        }

        .footer-about .logo::after {
            display: none;
        }

        .footer-about p {
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffd700, #daa520);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #8B4513;
            text-decoration: none;
            font-size: 24px;
            border: 3px solid #8B4513;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #fe0201, #ff6347);
            color: white;
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 6px 25px rgba(254, 2, 1, 0.5);
        }

        .footer-links h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }

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

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-links ul li a:hover {
            color: #ffd700;
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 2px solid rgba(218, 165, 32, 0.3);
            color: #ffd700;
            font-size: 14px;
        }

        /* Hamburger Menu Button (mobile only) */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: 2px solid #8B4513;
            border-radius: 8px;
            width: 44px;
            height: 44px;
            cursor: pointer;
            padding: 0;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.2);
        }

        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        @media (max-width: 1024px) {
            .navbar {
                padding: 20px 40px;
            }

            .nav-center {
                gap: 25px;
            }

            .hero-title,
            .hero-title2,
            .hero-titleesk {
                font-size: 60px;
            }

            .hero-titlelogo {
                font-size: 70px;
            }

            .hero-title span {
                font-size: 70px;
            }

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

        @media (max-width: 768px) {
            .navbar {
                padding: 12px 20px;
            }

            .navbar.scrolled {
                padding: 10px 20px;
            }

            .logo {
                font-size: 26px;
            }

            /* Mobile dropdown nav */
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-center {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: 100%;
                flex-direction: column;
                background: linear-gradient(180deg, rgba(184, 134, 11, 0.98) 0%, rgba(139, 69, 19, 0.98) 100%);
                padding: 0 20px;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.4s ease;
                border-bottom: 3px solid #8B4513;
            }

            .nav-center.active {
                max-height: 400px;
                padding: 15px 20px 25px;
            }

            .nav-center a {
                width: 100%;
                text-align: center;
                padding: 14px 0;
                font-size: 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            }

            .nav-center a:last-child {
                border-bottom: none;
            }

            .nav-center a:hover {
                transform: none;
                color: #ffd700;
            }

            /* Hero section mobile */
            .hero {
                padding-top: 90px;
                min-height: 100vh;
                height: auto;
            }

            .hero-content {
                padding: 30px 15px;
            }

            .hero-titlelogo {
                font-size: 48px;
                margin-bottom: 15px;
                letter-spacing: 1px;
                text-shadow: 2px 2px 0px #000000, 4px 4px 12px rgba(0,0,0,0.5);
            }

            .hero-titleesk {
                font-size: 38px;
                margin-bottom: 12px;
                letter-spacing: 1px;
            }

            .hero-title {
                font-size: 36px;
                margin-bottom: 12px;
                letter-spacing: 1px;
            }

            .hero-title2 {
                font-size: 50px;
                margin-bottom: 12px;
                letter-spacing: 1px;
            }

            .hero-title span {
                font-size: 42px;
            }

            /* Products section mobile */
            .products {
                padding: 60px 18px;
            }

            .products::before,
            .products::after {
                font-size: 50px;
            }

            .section-title {
                font-size: 34px;
            }

            .section-title::before,
            .section-title::after {
                font-size: 26px;
            }

            .section-title::before {
                left: -42px;
            }

            .section-title::after {
                right: -42px;
            }

            .section-subtitle {
                font-size: 14px;
                padding: 0 20px;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 100%;
            }

            .product-image {
                height: 230px;
            }

            .product-info {
                padding: 22px;
            }

            .product-info h3 {
                font-size: 22px;
            }

            .product-info p {
                font-size: 14px;
            }

            /* Map mobile */
            .map-container {
                height: 350px;
            }

            /* Footer mobile */
            .footer {
                padding: 40px 20px 20px;
            }

            .footer-content {
                gap: 35px;
                text-align: center;
            }

            .footer-about .logo {
                font-size: 30px;
            }

            .social-links {
                justify-content: center;
            }

            /* Modal mobile */
            .modal-content {
                width: 94%;
                max-height: 92vh;
                border-radius: 18px;
            }

            .modal-image {
                height: 240px;
            }

            .modal-body {
                padding: 25px 20px;
            }

            .modal-body h2 {
                font-size: 26px;
            }

            .modal-body .product-price {
                font-size: 28px;
            }

            .modal-body p {
                font-size: 14px;
                margin-bottom: 22px;
            }

            .modal-close {
                top: 12px;
                right: 12px;
                width: 38px;
                height: 38px;
                font-size: 22px;
            }

            .add-to-cart-btn {
                font-size: 16px;
                padding: 15px;
            }

            /* Cart sidebar mobile - full width */
            .cart-sidebar {
                width: 100%;
                right: -100%;
                border-left: none;
            }

            .cart-header {
                padding: 22px 20px;
            }

            .cart-header h2 {
                font-size: 20px;
            }

            .cart-footer {
                padding: 20px;
            }

            .cart-total-price {
                font-size: 26px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
                letter-spacing: 0;
            }

            .hero-titlelogo {
                font-size: 38px;
            }

            .hero-titleesk {
                font-size: 30px;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-title2 {
                font-size: 42px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-title::before,
            .section-title::after {
                display: none;
            }

            .products {
                padding: 50px 14px;
            }

            .product-info {
                padding: 18px;
            }

            .product-info h3 {
                font-size: 20px;
            }

            .modal-body h2 {
                font-size: 22px;
            }

            .quantity-selector {
                gap: 12px;
                flex-wrap: wrap;
            }

            .qty-btn {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .qty-display {
                font-size: 20px;
            }
        }
