* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            min-height: 100vh;
        }

        .banner {
            width: 100%;
            overflow: hidden;
        }

        .banner img {
            width: 100%;
            height: auto;
            display: block;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 20px;
            background-color: #fafafa;
        }

        .menu-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #f0f0f0;
        }

        .menu-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(45, 95, 79, 0.15);
            border-color: #2d5f4f;
        }

        .card-image {
            width: 100%;
            height: 140px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-content {
            padding: 12px;
        }

        .card-name {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .card-description {
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-icons {
            display: flex;
            gap: 6px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .icon.vegan {
            background-color: #7d6d5a;
            color: white;
        }

        .icon.vegetarian {
            background-color: #8fbc8f;
            color: white;
        }

        .icon.hot {
            background-color: #4a9cb5;
            color: white;
        }

        .icon.cold {
            background-color: #5dade2;
            color: white;
        }

        .card-price {
            font-size: 16px;
            font-weight: 700;
            color: #2d5f4f;
        }

        .footer {
            background-color: #f9f9f9;
            padding: 25px 20px;
            text-align: center;
            border-top: 1px solid #e0e0e0;
        }

        .address {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
        }

        .phone {
            font-size: 14px;
            color: #333;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .phone i {
            margin-right: 5px;
            color: #2d5f4f;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .social-link {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-link.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
        }

        .social-link.maps {
            background-color: #34a853;
            color: white;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .footer-text {
            font-size: 11px;
            color: #999;
            margin-top: 12px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background-color: #fff;
            border-radius: 16px;
            max-width: 500px;
            width: 100%;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(0, 0, 0, 0.6);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background-color: rgba(0, 0, 0, 0.8);
            transform: rotate(90deg);
        }

        .modal-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: #f5f5f5;
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-body {
            padding: 25px;
        }

        .modal-name {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .modal-short-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .modal-price-section {
            background: linear-gradient(135deg, #2d5f4f 0%, #1e4037 100%);
            padding: 12px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
        }

        .modal-price {
            font-size: 28px;
            font-weight: 700;
            color: white;
        }

        .modal-full-description,
        .modal-ingredients {
            margin-bottom: 20px;
        }

        .modal-full-description h3,
        .modal-ingredients h3 {
            font-size: 16px;
            font-weight: 600;
            color: #2d5f4f;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-full-description h3::before {
            content: "📖";
        }

        .modal-ingredients h3::before {
            content: "🥘";
        }

        .modal-full-description p,
        .modal-ingredients p {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
        }

        .modal-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 10px;
        }

        .modal-info-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: center;
        }

        .modal-info-item-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #2d5f4f;
        }

        .modal-info-item-title i {
            font-size: 16px;
        }

        .modal-info-item-value {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        .modal-info-item.allergens .modal-info-item-title {
            color: #ff9800;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .menu-grid {
                padding: 15px;
                gap: 12px;
            }

            .card-image {
                height: 120px;
            }

            .card-name {
                font-size: 14px;
            }

            .card-description {
                font-size: 11px;
            }

            .card-price {
                font-size: 15px;
            }

            .modal.active {
                padding: 10px;
                align-items: flex-end;
            }

            .modal-content {
                border-radius: 16px 16px 0 0;
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal-image {
                height: 200px;
            }

            .modal-body {
                padding: 20px;
            }

            .modal-name {
                font-size: 20px;
            }

            .modal-price {
                font-size: 24px;
            }
        }

        @media (max-width: 360px) {
            .menu-grid {
                grid-template-columns: 1fr;
            }

            .card-image {
                height: 160px;
            }
        }