        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .logo a {
            all: unset;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #6b7280, #4b5563);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #f3f4f6;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .nav-links a:hover, .nav-links a.active {
            background-color: rgba(255,255,255,0.2);
        }

        /* Main Content */
        main {
            margin-top: 80px;
            padding: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .page {
            display: none;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }

        .page.active {
            display: block;
        }

        .page h1 {
            color: #4b5563;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #9ca3af;
            padding-bottom: 0.5rem;
        }

        /* Menu Page */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .menu-category {
            background: #f9fafb;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #6b7280;
        }

        .menu-category h3 {
            color: #374151;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item-info h4 {
            color: #1f2937;
            margin-bottom: 0.3rem;
        }

        .menu-item-desc {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .menu-price {
            color: #059669;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .photo-placeholder {
            width: 100%;
            height: 200px;
            background: #e5e7eb;
            display: flex;
            border-radius: 8px;
            margin: 1rem 0;
            color: #6b7280;
            font-style: italic;
        }

        /* Book Table Form */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #374151;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #d1d5db;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #6b7280;
        }

        .btn {
            background: linear-gradient(135deg, #6b7280, #4b5563);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.2s;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* Reviews */
        .review-item {
            background: #f9fafb;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #fbbf24;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .reviewer-name {
            font-weight: bold;
            color: #1f2937;
        }

        .stars {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .review-text {
            color: #4b5563;
            line-height: 1.5;
        }

        /* Special Offers */
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .offer-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .offer-card:hover {
            transform: translateY(-5px);
        }

        img {
            width: 100%;
        }

        .offer-image {
            width: 100%;
            height: 200px;
            background: #e5e7eb;
            display: flex;
            justify-content: center;
            color: #6b7280;
            font-style: italic;
        }

        .offer-content {
            padding: 1.5rem;
        }

        .offer-title {
            color: #1f2937;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .offer-prices {
            margin-top: 1rem;
        }

        .old-price {
            text-decoration: line-through;
            color: #9ca3af;
            font-size: 1rem;
        }

        .new-price {
            color: #dc2626;
            font-weight: bold;
            font-size: 1.3rem;
            margin-left: 0.5rem;
        }

        /* Contact Info */
        .contact-info {
            background: #f9fafb;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
        }

        .contact-item {
            margin-bottom: 1rem;
            color: #4b5563;
        }

        .contact-item strong {
            color: #1f2937;
        }

        /* Pop-ups */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
        }

        .popup {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            width: 90%;
        }

        .popup h3 {
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .popup-buttons {
            margin-top: 1.5rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .popup-btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }

        .popup-btn.yes {
            background: #059669;
            color: white;
        }

        .popup-btn.no {
            background: #dc2626;
            color: white;
        }

        .popup-btn:hover {
            opacity: 0.8;
        }

        /* Cookies popup */
        .cookies-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1f2937;
            color: white;
            padding: 1.5rem;
            z-index: 9999;
        }

        .cookies-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .cookies-text {
            flex: 1;
        }

        .cookies-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .cookies-btn {
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .accept-all {
            background: #059669;
            color: white;
        }

        .accept-necessary {
            background: #6b7280;
            color: white;
        }

        .decline {
            background: transparent;
            color: white;
            border: 1px solid white;
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #f3f4f6;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            margin-top: 2rem;
            color: #9ca3af;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
            }

            .cookies-content {
                flex-direction: column;
                text-align: center;
            }

            .cookies-buttons {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        .hidden {
            display: none !important;
        }


                .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease-out;
        }

        .popup-overlay.show {
            display: flex;
        }

        .popup {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            text-align: center;
            max-width: 400px;
            width: 90%;
            transform: scale(0.8);
            animation: popupIn 0.3s ease-out forwards;
        }

        .popup.hide {
            animation: popupOut 0.3s ease-in forwards;
        }

        .popup-icon {
            font-size: 48px;
            margin-bottom: 15px;
            color: #28a745;
        }

        .popup-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .popup-message {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 0;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes popupIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes popupOut {
            from {
                transform: scale(1);
                opacity: 1;
            }
            to {
                transform: scale(0.8);
                opacity: 0;
            }
        }

        .progress-bar {
            width: 100%;
            height: 3px;
            background: #f0f0f0;
            border-radius: 2px;
            margin-top: 20px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #28a745, #20c997);
            width: 0%;
            transition: width 3s linear;
        }
