        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #ffffff;
            color: #333;
            padding-bottom: 80px;
        }

        /* Page Navigation */
        .page {
            display: none;
            min-height: 100vh;
        }

        .page.active {
            display: block;
        }

        /* Contact Page */
        .contact-page {
            position: relative;
            max-width: 100%;
        }

         .banner.container {
            width: 100%;
            height: 300px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        .banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .logo-section {
            position: relative;
            text-align: center;
            margin-top: -80px;
            padding: 0 20px 30px;
        }

        .logo-container {
            display: inline-block;
            background: rgb(144, 1, 1);
            padding: 5px;
            border-radius: 50%;
            box-shadow: 0 5px 30px rgba(0,0,0,0.);
            margin-bottom: 5px;
        }

        .logo-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
        }

        .business-name {
            font-size: 28px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 5px;
        }

        .business-subtitle {
            font-size: 14px;
            color: #718096;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .social-links-page {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 20px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: transform 0.3s;
            text-decoration: none;
        }

        .social-btn:hover {
            transform: scale(1.1);
        }

        .facebook { background: #1877f2; }
        .instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
        .whatsapp { background: #25d366; }

        .action-buttons {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .action-btn {
            background: white;
            border: 2px solid #e2e8f0;
            padding: 18px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 16px;
            color: #2d3748;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-weight: 600;
        }

        .action-btn:hover {
            border-color: #667eea;
            background: #f7fafc;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
        }

        .action-btn i {
            font-size: 24px;
            color: #667eea;
        }

        /* Menu Page */
        .menu-page {
            padding: 20px;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .menu-header h2 {
            font-size: 28px;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .menu-header p {
            color: #718096;
        }

        .categories-section {
            margin-bottom: 25px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .categories-section::-webkit-scrollbar {
            display: none;
        }

        .category-list {
            display: flex;
            gap: 12px;
            padding-bottom: 10px;
            min-width: min-content;
        }

        .category-item {
            background: white;
            padding: 12px 20px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
            white-space: nowrap;
            flex-shrink: 0;
            font-size: 14px;
            font-weight: 600;
        }

        .category-item:hover {
            border-color: #667eea;
            transform: translateY(-2px);
        }

        .category-item.active {
            background: #667eea;
            color: white;
            border-color: #667eea;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .category-item i {
            font-size: 18px;
        }

        .products-section {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: #667eea;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
            z-index: 1;
        }

        .product-info {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-name {
            font-size: 18px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .product-description {
            font-size: 13px;
            color: #718096;
            margin-bottom: 16px;
            line-height: 1.6;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding-top: 12px;
            border-top: 1px solid #e2e8f0;
        }

        .product-price-container {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .product-price-label {
            font-size: 11px;
            color: #a0aec0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-price {
            font-size: 26px;
            font-weight: 800;
            color: #667eea;
            line-height: 1;
        }

        .btn-add-cart {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 18px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .btn-add-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
        }

        .btn-add-cart:active {
            transform: translateY(0);
        }

        /* Location Page */
        .location-page {
            padding: 20px;
        }

        .location-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .location-header h2 {
            font-size: 28px;
            color: #2d3748;
        }

        .map-container {
            background: white;
            border-radius: 12px;
            padding: 60px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .map-placeholder {
            font-size: 80px;
        }

        .location-info {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .info-card {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            gap: 15px;
        }

        .info-icon {
            font-size: 30px;
        }

        .info-text h3 {
            font-size: 16px;
            color: #2d3748;
            margin-bottom: 5px;
        }

        .info-text p {
            font-size: 14px;
            color: #718096;
            line-height: 1.6;
        }

        .btn-go-maps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #667eea;
            color: white;
            padding: 15px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-go-maps:hover {
            background: #5568d3;
            transform: translateY(-2px);
        }

        /* Floating Cart */
        .floating-cart {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 999;
        }

        .cart-button {
            background: #667eea;
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            position: relative;
            transition: all 0.3s;
        }

        .cart-button:hover {
            transform: scale(1.1);
        }

        #cartCountFloat {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #dc2626;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
        }

        /* Cart Modal */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 1000;
            overflow-y: auto;
            backdrop-filter: blur(4px);
        }

        .cart-modal.active {
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .cart-content {
            background: white;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            border-radius: 20px 20px 0 0;
            padding: 25px;
            position: relative;
            animation: slideUp 0.3s ease-out;
            overflow-y: auto;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .cart-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #718096;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .cart-close:hover {
            background: #f7fafc;
            color: #2d3748;
        }

        .cart-title {
            font-size: 24px;
            color: #2d3748;
            margin-bottom: 20px;
            padding-right: 40px;
        }

        .cart-items {
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 20px;
        }

        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            color: #a0aec0;
            font-size: 18px;
            line-height: 1.8;
        }

        .cart-item {
            background: #f7fafc;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-size: 16px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 5px;
        }

        .cart-item-price {
            font-size: 14px;
            color: #718096;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .qty-btn {
            background: white;
            border: 2px solid #e2e8f0;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 700;
            color: #667eea;
            transition: all 0.3s;
        }

        .qty-btn:hover {
            border-color: #667eea;
            background: #f7fafc;
        }

        .cart-item-qty {
            font-size: 16px;
            font-weight: 600;
            min-width: 30px;
            text-align: center;
        }

        .remove-btn {
            background: #fee;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            cursor: pointer;
            color: #dc2626;
            font-size: 16px;
            margin-left: 5px;
            transition: all 0.3s;
        }

        .remove-btn:hover {
            background: #fecaca;
        }

        /* Customer Form */
        .customer-form {
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .form-title {
            font-size: 18px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-title i {
            color: #667eea;
            font-size: 24px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-group label i {
            color: #667eea;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: white;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 60px;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 10px;
        }

        .payment-option {
            position: relative;
            cursor: pointer;
        }

        .payment-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .payment-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px 10px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            transition: all 0.3s;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #4a5568;
        }

        .payment-label i {
            font-size: 24px;
            color: #667eea;
        }

        .payment-option input[type="radio"]:checked + .payment-label {
            background: #667eea;
            color: white;
            border-color: #667eea;
            transform: scale(1.05);
        }

        .payment-option input[type="radio"]:checked + .payment-label i {
            color: white;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: #f7fafc;
            border-radius: 12px;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
        }

        .total-price {
            font-size: 28px;
            color: #667eea;
            font-weight: 700;
        }

        .btn-whatsapp {
            width: 100%;
            background: #25d366;
            color: white;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-whatsapp:hover {
            background: #22c35e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        }

        .btn-whatsapp i {
            font-size: 20px;
        }

        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 998;
        }

        .nav-item {
            background: none;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            color: #a0aec0;
            transition: all 0.3s;
            padding: 8px 20px;
            border-radius: 10px;
        }

        .nav-item.active {
            color: #667eea;
            background: #eef2ff;
        }

        .nav-icon {
            font-size: 24px;
        }

        .nav-label {
            font-size: 12px;
            font-weight: 600;
        }

        @media (min-width: 768px) {
            .contact-page,
            .menu-page,
            .location-page {
                max-width: 1200px;
                margin: 0 auto;
            }

            .banner-container {
                height: 400px;
            }

            .logo-section {
                margin-top: -100px;
            }

            .products-section {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }

            .cart-modal.active {
                align-items: center;
            }

            .cart-content {
                max-width: 500px;
                border-radius: 20px;
                margin: 20px;
            }
        }

        @media (min-width: 1024px) {
            .products-section {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Click outside modal to close */
        .cart-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }