 <style>
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --primary: #6366f1;
        --primary-dark: #4f46e5;
        --secondary: #f59e0b;
        --accent: #ec4899;
        --dark: #0f172a;
        --gray: #64748b;
        --light-gray: #f8fafc;
        --white: #ffffff;
        --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
          0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      }

      body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
        color: var(--dark);
        background: var(--white);
        overflow-x: hidden;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header */
      header {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        letter-spacing: -0.025em;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .nav-links a:hover {
        color: var(--primary);
      }

      .cart-btn {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: var(--shadow);
      }

      .cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-xl);
      }

      .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background: var(--accent);
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 700;
        box-shadow: 0 4px 8px rgba(236, 72, 153, 0.3);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        background: linear-gradient(
          135deg,
          rgba(99, 102, 241, 0.95) 0%,
          rgba(79, 70, 229, 0.95) 25%,
          rgba(236, 72, 153, 0.95) 75%,
          rgba(245, 158, 11, 0.95) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=1080&fit=crop&crop=center")
          center/cover;
        z-index: -1;
      }

      .hero-content {
        max-width: 800px;
        z-index: 1;
      }

      .hero-content h1 {
        font-size: clamp(3rem, 8vw, 4.5rem);
        margin-bottom: 1.5rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        opacity: 0;
        animation: fadeInUp 1s ease 0.2s forwards;
      }

      .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        font-weight: 400;
        opacity: 0;
        animation: fadeInUp 1s ease 0.4s forwards;
      }

      .cta-btn {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 1.2rem 2.5rem;
        border-radius: 16px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        backdrop-filter: blur(10px);
        opacity: 0;
        animation: fadeInUp 1s ease 0.6s forwards;
      }

      .cta-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      }

      /* Menu Section */
      .menu-section {
        background: var(--light-gray);
        padding: 6rem 0;
        position: relative;
      }

      .section-title {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--dark);
        font-weight: 700;
        letter-spacing: -0.025em;
      }

      .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        color: var(--gray);
        margin-bottom: 4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .menu-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 4rem;
      }

      .category-card {
        background: var(--white);
        border-radius: 20px;
        padding: 1.5rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }

      .category-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary);
      }

      .category-card.active {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: white;
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
      }

      .category-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
      }

      .category-name {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
      }

      .menu-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
      }

      .menu-item {
        background: var(--white);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.6s ease forwards;
      }

      .menu-item:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
      }

      .item-image {
        width: 100%;
        height: 240px;
        overflow: hidden;
        position: relative;
      }

      .item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }

      .menu-item:hover .item-image img {
        transform: scale(1.05);
      }

      .item-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--primary);
      }

      .item-info {
        padding: 1.5rem;
      }

      .item-name {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--dark);
      }

      .item-description {
        color: var(--gray);
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
      }

      .item-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .item-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
      }

      .add-to-cart {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
      }

      .add-to-cart:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
      }

      .add-to-cart:active {
        transform: translateY(0);
      }

      /* Cart Modal */
      .cart-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.8);
        backdrop-filter: blur(8px);
        z-index: 2000;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .cart-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
      }

      .cart-content {
        background: var(--white);
        border-radius: 24px;
        padding: 2rem;
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        transform: scale(0.9);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-xl);
      }

      .cart-modal.active .cart-content {
        transform: scale(1);
      }

      .cart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
      }

      .cart-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--dark);
      }

      .close-cart {
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--gray);
        transition: color 0.3s ease;
      }

      .close-cart:hover {
        color: var(--dark);
      }

      .cart-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
      }

      .cart-item:last-child {
        border-bottom: none;
      }

      .cart-item-info {
        flex: 1;
      }

      .cart-item-name {
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 0.25rem;
      }

      .cart-item-details {
        font-size: 0.9rem;
        color: var(--gray);
      }

      .cart-item-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .quantity-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .quantity-btn {
        background: var(--light-gray);
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .quantity-btn:hover {
        background: var(--primary);
        color: white;
      }

      .remove-btn {
        background: #ef4444;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .remove-btn:hover {
        background: #dc2626;
      }

      .cart-total {
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        margin: 2rem 0;
        color: var(--primary);
        padding: 1rem;
        background: var(--light-gray);
        border-radius: 16px;
      }

      .checkout-btn {
        width: 100%;
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: white;
        border: none;
        padding: 1rem;
        border-radius: 16px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
      }

      .checkout-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
      }

      .empty-cart {
        text-align: center;
        padding: 2rem;
        color: var(--gray);
      }

      .empty-cart-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.5;
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes slideInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }

        .hero-content h1 {
          font-size: 2.5rem;
        }

        .menu-categories {
          grid-template-columns: repeat(2, 1fr);
        }

        .menu-items {
          grid-template-columns: 1fr;
        }

        .menu-item {
          max-width: 100%;
        }
      }

      @media (max-width: 480px) {
        .menu-categories {
          grid-template-columns: 1fr;
        }

        .cart-content {
          width: 95%;
          padding: 1.5rem;
        }
      }
    </style>