html { scroll-behavior: smooth; }
        
        :root {
            --primary-color: #27ae60;
            --secondary-color: #feca57;
            --text-color: #2d3436; 
            --bg-color: #f8f9fa; 
        }

        * {
            margin: 0; padding: 0; box-sizing: border-box;
            font-family: 'Montserrat', sans-serif; 
            -webkit-tap-highlight-color: transparent;
        }

        body { background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }
        button { touch-action: manipulation; }

        /* ========================================= */
        /* ШАПКА (ЗАВЖДИ ЗВЕРХУ)                     */
        /* ========================================= */
        header {
            background-color: rgba(255, 255, 255, 0.85); 
            backdrop-filter: blur(15px); 
            -webkit-backdrop-filter: blur(15px); 
            display: flex; justify-content: space-between; align-items: center;
            margin: 20px auto; 
            width: 92%; max-width: 1200px; padding: 10px 30px; border-radius: 100px; 
            border: 1px solid rgba(255, 255, 255, 0.6); 
            box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
            position: static;
            top: 20px;
            z-index: 900;
        }
        
        .logo-container { display: flex; align-items: center; gap: 10px; }
        .logo-container img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
        .logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-color); letter-spacing: -0.5px; }
        
        nav { display: flex; gap: 20px; }
        nav a { text-decoration: none; color: var(--text-color); font-weight: 600; transition: color 0.3s; font-size: 0.95rem; }
        nav a:hover { color: var(--primary-color); }

        .cart-btn {
            background-color: var(--primary-color); color: white; border: none; padding: 12px 24px; border-radius: 30px; 
            cursor: pointer; font-weight: 700; font-size: 0.95rem; transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0, 204, 0, 0.3); 
        }
        
        /* ========================================= */
        /* ПЛАВАЮЧИЙ КОШИК                           */
        /* ========================================= */
        .floating-cart {
            position: fixed; bottom: 40px; right: 40px; z-index: 1000;
            background-color: var(--primary-color); color: white; border: none; 
            padding: 16px 32px; border-radius: 50px; cursor: pointer; 
            font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4); 
            display: flex; align-items: center; gap: 8px;
        }
        .floating-cart.has-items {
            background-color: #ff4757; 
            box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4); 
            animation: pulse-badge 2s infinite; 
        }

        /* ТАКТИЛЬНЫЙ ОТКЛИК ДЛЯ ВСЕХ КНОПОК */
        .add-to-cart:active, .filter-btn:active, .weight-pill:active, .qty-btn:active, .checkout-btn:active, .floating-cart:active { 
            transform: scale(0.95) !important; 
            transition: transform 0.1s; 
        }

        @media (hover: hover) {
            .floating-cart.has-items:hover { background-color: #ff6b81; transform: translateY(-5px); box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5); }
            .floating-cart:hover { background-color: #219653; transform: translateY(-5px); box-shadow: 0 15px 35px rgba(39, 174, 96, 0.5); }
            .filter-btn:hover { background-color: var(--primary-color); color: white; box-shadow: 0 4px 15px rgba(0, 204, 0, 0.3); }
            .cart-btn:hover { background-color: #00aa00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 204, 0, 0.4); }
            .menu-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
            .add-to-cart:hover { background-color: #f3b52d; transform: scale(1.02); }
            .qty-btn:hover { background: #dfe6e9; }
            .close-btn:hover { color: #ff4757; }
        }

        /* ========================================= */
        /* ГОЛОВНИЙ ЕКРАН                            */
        /* ========================================= */
        .hero {
            width: 92%; max-width: 1200px; margin: 0 auto 30px; height: 38vh; min-height: 250px;
            border-radius: 24px; overflow: hidden; 
            background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.05) 100%), 
                        url('https://images.unsplash.com/photo-1598103442097-8b74394b95c6?q=80&w=2000&auto=format&fit=crop') no-repeat center right;
            background-size: cover; display: flex; align-items: center; justify-content: flex-start;
            padding: 0 5%; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .hero-text { max-width: 550px; text-align: left; }
        .hero-text h1 { font-size: 3.2rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -1px; color: #ffffff; text-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .hero-text p { font-size: 1.2rem; font-weight: 500; color: rgba(255, 255, 255, 0.9); margin: 0; line-height: 1.5; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

        .menu-section { padding: 5rem 5%; text-align: center; }
        .menu-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 2rem; color: var(--primary-color); letter-spacing: -1px; }

        /* ========================================= */
        /* ПАНЕЛЬ МЕНЮ ТА ПОШУК (ОРГАНІЧНИЙ ДИЗАЙН)  */
        /* ========================================= */
        .category-filter {
            display: flex;
            align-items: center; 
            justify-content: space-between; 
            gap: 15px;
            width: 92%;
            max-width: 1200px; 
            position: -webkit-sticky;
            position: sticky;
            top: 10px;
            z-index: 800;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 12px 25px; 
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            margin: 0 auto 30px;
        }

        .filter-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--primary-color);
            padding-right: 15px;
            border-right: 2px solid #eee;
            display: flex;
            align-items: center;
            white-space: nowrap;
            flex-shrink: 0; 
        }

        .filter-buttons-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap; 
            gap: 10px;
            flex-grow: 1; 
        }

        .filter-btn {
            background-color: white; border: none; color: var(--text-color); padding: 10px 20px; border-radius: 30px;
            font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
            white-space: nowrap; 
        }
        .filter-btn.active { background-color: var(--primary-color); color: white; box-shadow: 0 4px 15px rgba(0, 204, 0, 0.3); }

        .inline-search {
            display: flex;
            align-items: center;
            flex-shrink: 0; 
        }

        .inline-search input {
            padding: 10px 15px;
            border-radius: 30px;
            border: 1px solid #eaeaea;
            background: #ffffff;
            outline: none;
            font-size: 14px;
            width: 180px; 
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            color: var(--text-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }

        .inline-search input:focus {
            width: 230px; 
            border-color: var(--primary-color);
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
        }

        .inline-search input::placeholder {
            color: #a4b0be;
        }

        /* ========================================= */
        /* СІТКА МЕНЮ (4 В РЯД)                      */
        /* ========================================= */
        .menu-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px; 
            padding: 20px 0; 
            width: 92%;
            max-width: 1200px; 
            margin: 0 auto; 
        }

        .menu-item { 
            position: relative; 
            background: #fff; 
            border-radius: 20px; 
            padding: 15px; 
            display: flex; 
            flex-direction: column; 
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            transition: transform 0.3s ease;
        }

        .menu-item img { 
            width: 100%; 
            height: 180px; 
            object-fit: cover; 
            border-radius: 15px; 
            margin-bottom: 12px; 
        }
        .menu-item h3 { margin-bottom: 10px; font-size: 1.3rem; font-weight: 700; color: #1e272e; }
        .menu-item p { flex-grow: 1; color: #576574; font-size: 0.95rem; font-weight: 500; }
        
        .weight { margin-top: auto !important; margin-bottom: 10px; }
        .weight-options { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto !important; margin-bottom: 15px; width: 100%; }
        /* УЛУЧШЕННЫЕ КНОПКИ ВЕСА ДЛЯ МОБИЛОК */
        .weight-pill { flex: 1 1 calc(30% - 6px); text-align: center; padding: 12px 10px; border-radius: 12px; background: #f1f2f6; color: #576574; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s ease; user-select: none; border: 1px solid transparent; }
        .weight-pill:hover { background: #dfe6e9; }
        .weight-pill.active { background: var(--primary-color); color: #fff; box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3); transform: translateY(-2px); border-color: var(--primary-color); }
        
        .price { margin-top: 0 !important; font-size: 1.4rem; font-weight: 800; color: var(--primary-color); margin-bottom: 15px; }
        .price-display { font-size: 1.4rem; font-weight: 800; color: var(--primary-color); margin-bottom: 15px; transition: all 0.3s ease; }
        
        .add-to-cart { background-color: var(--secondary-color); color: #2d3436; border: none; padding: 14px 15px; border-radius: 10px; cursor: pointer; width: 100%; font-weight: 700; font-size: 1rem; transition: 0.3s; }

        /* ПЛАШКИ */
        .badge { position: absolute; top: 25px; left: 25px; color: white; padding: 8px 15px; border-radius: 12px; font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; z-index: 10; border: 2px solid white; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
        @keyframes pulse-badge { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }
        .badge-hit { background: #ff4757; box-shadow: 0 4px 15px rgba(255, 71, 87, 0.6); animation: pulse-badge 2s infinite; }
        .badge-hot { background: linear-gradient(45deg, #ff4757, #ffa502); box-shadow: 0 4px 15px rgba(255, 165, 2, 0.5); animation: pulse-badge 2s infinite; }
        @keyframes glow-green { 0% { box-shadow: 0 0 5px #2ed573; } 50% { box-shadow: 0 0 20px #2ed573; } 100% { box-shadow: 0 0 5px #2ed573; } }
        .badge-new { background: #2ed573; animation: glow-green 2.5s infinite; animation: pulse-badge 2s infinite;}
        .badge-recom { background: linear-gradient(45deg, #f1c40f, #f39c12); color: #2d3436; border-color: #ffeaa7; box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4); animation: pulse-badge 2s infinite; }

        /* ========================================= */
        /* ІНШЕ ТА МОДАЛЬНІ ВІКНА                    */
        /* ========================================= */
        .delivery-info { background-color: #fff; padding: 5rem 5%; text-align: center; }
        .delivery-info p { margin-bottom: 12px; font-size: 1.15rem; font-weight: 500; color: #576574; }
        footer { background-color: #2d3436; color: white; text-align: center; padding: 3rem 5%; }

        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 2000; justify-content: center; align-items: center; padding: 15px; }
        .modal-content { background: white; padding: 2.5rem; border-radius: 20px; width: 100%; max-width: 500px; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
        .modal-content h2 { font-weight: 800; margin-bottom: 20px; }
        .close-btn { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; line-height: 1; color: #a4b0be; transition: 0.3s; }
        
        .delivery-progress-container { background: #f0fdf4; border: 1px solid #dcfce7; border-radius: 12px; padding: 15px; margin-bottom: 25px; text-align: center; }
        #delivery-msg { font-size: 0.95rem; font-weight: 600; margin-bottom: 12px; color: #166534; }
        .progress-bar { background: #e2e8f0; height: 10px; border-radius: 5px; overflow: hidden; width: 100%; }
        .progress-fill { height: 100%; width: 0%; border-radius: 5px; background-color: var(--secondary-color); transition: width 0.5s ease-out, background-color 0.5s; }
        
        #cart-items { list-style: none; margin-bottom: 20px; max-height: 35vh; overflow-y: auto; padding-right: 5px; }
        #cart-items::-webkit-scrollbar { width: 6px; }
        #cart-items::-webkit-scrollbar-thumb { background-color: #dfe6e9; border-radius: 10px; }
        
        .cart-item-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #f1f2f6; }
        .cart-item-info { display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
        .qty-control { display: flex; align-items: center; gap: 10px; }
        .qty-btn { background: #f1f2f6; border: none; width: 32px; height: 32px; border-radius: 8px; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: center; align-items: center; font-weight: bold; color: #2d3436; transition: 0.2s;}
        
        .checkout-btn { background-color: var(--primary-color); color: white; border: none; padding: 16px 20px; border-radius: 12px; cursor: pointer; width: 100%; font-size: 1.1rem; font-weight: 700; margin-top: 10px; transition: 0.3s; }
        .checkout-btn:disabled { background-color: #b2bec3; cursor: not-allowed; }

        .checkout-form { display: none; margin-top: 20px; padding-top: 15px; }
        .checkout-form input, .checkout-form textarea, .checkout-form select { width: 100%; padding: 14px 15px; margin-bottom: 15px; border: 2px solid #f1f2f6; border-radius: 12px; font-size: 16px; font-family: 'Montserrat', sans-serif; font-weight: 500; transition: border-color 0.3s; background: #fafbfc;}
        .checkout-form input:focus, .checkout-form textarea:focus, .checkout-form select:focus { outline: none; border-color: var(--primary-color); background: #fff; }
        .checkout-form label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--text-color); font-size: 0.9rem; }
        
        .error-msg { color: #ff4757; font-size: 0.9rem; margin-top: -10px; margin-bottom: 15px; display: none; font-weight: 600; }

        .success-content { text-align: center; padding: 2rem 1rem; }
        .success-icon { font-size: 5rem; margin-bottom: 1rem; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        @keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

        #toast { visibility: hidden; min-width: 250px; background-color: #2d3436; color: #fff; text-align: center; border-radius: 30px; padding: 12px 20px; position: fixed; z-index: 3000; left: 50%; bottom: 30px; transform: translateX(-50%); opacity: 0; transition: opacity 0.3s, bottom 0.3s; font-weight: 600; font-size: 0.95rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); pointer-events: none; }
        #toast.show { visibility: visible; opacity: 1; bottom: 90px; }

        /* ПРЕМІУМ-БЛОК РЕКОМЕНДАЦІЙ */
        .premium-rec-box { background: rgba(46, 213, 115, 0.05); border-radius: 16px; padding: 16px 20px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(46, 213, 115, 0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: all 0.3s ease; animation: fadeIn 0.4s ease-out; }
        .premium-rec-box:hover { background: rgba(46, 213, 115, 0.08); border-color: rgba(46, 213, 115, 0.4); }
        .rec-info { display: flex; flex-direction: column; gap: 4px; }
        .rec-title { font-size: 0.75rem; color: #7f8fa6; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }
        .rec-name { font-size: 1.05rem; font-weight: 700; color: #2d3436; display: flex; align-items: center; gap: 8px; }
        .rec-btn { background: #fff; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 8px 18px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 6px; }
        @media (hover: hover) { .rec-btn:hover { background: var(--primary-color); color: #fff; box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3); } }

        /* БЛОК АПСЕЙЛУ НАПОЇВ */
        .drinks-upsell-container { display: none; background: #f0fdf4; border: 1px solid #dcfce7; border-radius: 16px; padding: 20px; margin-top: 15px; margin-bottom: 20px; text-align: center; animation: fadeIn 0.4s ease-out; }
        .drinks-upsell-container h3 { color: #166534; margin-bottom: 15px; font-weight: 800; font-size: 1.2rem; }
        .upsell-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 10px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
        .upsell-scroll::-webkit-scrollbar { height: 6px; }
        .upsell-scroll::-webkit-scrollbar-thumb { background-color: #a4b0be; border-radius: 10px; }
        .upsell-card { min-width: 130px; background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; border: 1px solid #f1f2f6; text-align: center; }
        .upsell-card img { width: 70px; height: 70px; object-fit: cover; border-radius: 50%; margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
        .upsell-card h4 { font-size: 0.85rem; margin-bottom: 5px; font-weight: 700; color: #2d3436; line-height: 1.3; height: 2.6em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
        .upsell-card .price { font-size: 1.1rem; font-weight: 800; color: var(--primary-color); margin-top: auto; margin-bottom: 10px; }
        .upsell-skip-btn { background: none; border: none; color: #7f8fa6; font-weight: 600; font-size: 0.95rem; margin-top: 15px; cursor: pointer; text-decoration: underline; padding: 10px; transition: color 0.3s; }
        .upsell-skip-btn:hover { color: #2d3436; }

        /* СТИЛЬНИЙ БЛОК ВІДГУКІВ */
       #reviews { background: #ffffff; border-radius: 20px; padding: 30px 20px; margin: 20px auto; width: 92%; max-width: 1200px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); scroll-margin-top: 100px; }
        #reviews h2 { font-size: 1.8rem; margin-bottom: 20px; color: var(--text-color); text-align: center; }
        #reviews-container { display: flex; flex-wrap: nowrap; gap: 15px; overflow-x: auto; padding: 5px 10px 15px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
        #reviews-container::-webkit-scrollbar { display: none; }
        .review-card { flex-shrink: 0; min-width: 280px; max-width: 280px; height: 180px; background: #fafbfc; border-radius: 16px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 4px 10px rgba(0,0,0,0.02); border: 1px solid #f1f2f6; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); background: #ffffff; }
        .review-stars { font-size: 1rem; margin-bottom: 8px; color: #f1c40f; }
        .review-text-container { flex-grow: 1; overflow-y: auto; margin-bottom: 12px; padding-right: 5px; }
        .review-text-container p { font-size: 0.9rem; line-height: 1.4; color: #576574; font-style: italic; }
        .review-author { font-weight: 700; font-size: 0.85rem; color: var(--primary-color); padding-top: 10px; border-top: 1px solid #eee; display: flex; align-items: center; gap: 8px; }

        @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 50% { transform: translateX(5px); } 75% { transform: translateX(-5px); } }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .menu-item { animation: fadeIn 0.4s ease-out; }
        @keyframes cart-bump { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
        .floating-cart.bump { animation: cart-bump 0.3s ease-out !important; }
        @keyframes menuItemFadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
        .item-not-available { display: none !important; }

        /* ========================================= */
        /* АДАПТАЦІЯ ДЛЯ ТЕЛЕФОНІВ ТА ПЛАНШЕТІВ      */
        /* ========================================= */
        @media (max-width: 950px) {
            .filter-title { display: none; }
            .category-filter { padding: 12px 15px; }
        }

        @media (max-width: 768px) {
            header { flex-direction: column; gap: 10px; justify-content: center; padding: 15px 20px; margin: 15px; width: auto; border-radius: 25px; top: 10px; }
            .logo-container { width: auto; justify-content: center; }
            .logo { font-size: 1.4rem; }
            nav { display: flex; gap: 15px; justify-content: center; width: 100%; } 
            nav a { font-size: 0.9rem; padding-bottom: 2px; }

            .floating-cart { bottom: 20px; right: 20px; padding: 14px 24px; font-size: 1rem; }
            
            .category-filter { 
                justify-content: flex-start; 
                flex-wrap: nowrap; 
                overflow-x: auto; 
                padding: 10px 12px; 
                border-radius: 20px; 
                width: 95%; 
                margin: 10px auto 20px; 
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none; 
                gap: 10px; 
            }
            .category-filter::-webkit-scrollbar { display: none; }

            .filter-buttons-wrapper {
                flex-wrap: nowrap;
                gap: 10px;
            }
            
            .inline-search { order: -1; flex-shrink: 0; margin: 0; }
            .inline-search input { width: 140px; padding: 8px 15px; }
            .inline-search input:focus { width: 170px; }
            .filter-btn { flex-shrink: 0; padding: 8px 16px; font-size: 0.9rem; }

            .menu-section { padding: 3rem 15px; }
            .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .menu-item { padding: 12px; border-radius: 12px; }
            .menu-item img { height: 130px; margin-bottom: 10px; border-radius: 8px; }
            .menu-item h3 { font-size: 0.95rem; margin-bottom: 5px; }
            .menu-item p { font-size: 0.8rem; line-height: 1.4; }
            
            .price { font-size: 1.1rem; margin-top: auto; margin-bottom: 10px; }
            .add-to-cart { padding: 10px; font-size: 0.9rem; }

            .badge { top: 18px; left: 18px; font-size: 0.8rem; padding: 5px 10px; border: 1.5px solid white; }
            .delivery-info { padding: 3rem 15px; }
            .modal-content { padding: 1.5rem; }
            
            .hero { width: 95%; border-radius: 20px; height: 30vh; min-height: 200px; margin-top: 10px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%), url('https://images.unsplash.com/photo-1598103442097-8b74394b95c6?q=80&w=1000&auto=format&fit=crop') no-repeat center center; background-size: cover; align-items: flex-end; padding: 25px 20px; }
            .hero-text h1 { font-size: 2.2rem; margin-bottom: 5px; }
            .hero-text p { font-size: 1rem; }

            #reviews { padding: 20px 15px; margin: 15px auto; }
            .review-card { min-width: 250px; height: 160px; padding: 15px; }
            #reviews h2 { font-size: 1.5rem; margin-bottom: 15px; }
			/* Адаптація заглушок для телефонів */
            .skeleton-card { padding: 12px; border-radius: 12px; }
            .skel-img { height: 130px; margin-bottom: 10px; border-radius: 8px; }
            .skel-title { height: 18px; }
            .skel-price { height: 22px; }
            .skel-btn { height: 38px; }
        }
        #delivery { scroll-margin-top: 100px; }

        /* Ефект натискання для ВСІХ інтерактивних елементів */
        .clicked-effect {
            transform: scale(0.92) !important;
            opacity: 0.8;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
            transition: all 0.1s ease-out !important;
        }

        /* ========================================= */
        /* SKELETON LOADERS (Анімація завантаження)  */
        /* ========================================= */
        .skeleton-card {
            background: #fff; 
            border-radius: 20px; 
            padding: 15px; 
            display: flex; 
            flex-direction: column;
            box-shadow: 0 10px 25px rgba(0,0,0,0.03); 
            gap: 10px;
            height: 100%;
        }

        .skeleton-anim {
            background: #eee;
            background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
            border-radius: 10px; 
            background-size: 200% 100%; 
            animation: 1.5s shine linear infinite;
        }

        .skel-img { width: 100%; height: 180px; border-radius: 15px; }
        .skel-title { height: 24px; width: 70%; margin-bottom: 5px; }
        .skel-weight { height: 16px; width: 40%; margin-top: auto; }
        .skel-price { height: 28px; width: 50%; margin-bottom: 5px; }
        .skel-btn { height: 45px; width: 100%; border-radius: 10px; }

        @keyframes shine { 
            to { background-position-x: -200%; } 
        }
		/* Покращена розкладка рекомендацій */
.rec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.rec-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    flex: 1; /* Дозволяє назві займати максимум місця */
}

.rec-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap; /* Важливо: ціна ніколи не розбивається на два рядки */
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
}

/* На мобільних зменшуємо шрифт назви, щоб влізло більше тексту */
@media (max-width: 768px) {
    .rec-name {
        font-size: 0.95rem;
    }
    .rec-price {
        font-size: 1rem;
    }
}