* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  
  .logo-img {
    height: 60px;
    width: auto;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #e74c3c;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .cart-btn,
  .whatsapp-btn,
  .instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    border: none;
    cursor: pointer;
  }
  
  .cart-btn {
    background: #f39c12;
    color: white;
  }
  
  .cart-btn:hover {
    background: #e67e22;
    transform: scale(1.1);
  }
  
  .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .whatsapp-btn {
    background: #25d366;
    color: white;
  }
  
  .whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
  }
  
  .instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
  }
  
  .instagram-btn:hover {
    transform: scale(1.1);
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .btn-primary {
    background: white;
    color: #e74c3c;
  }
  
  .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-secondary:hover {
    background: white;
    color: #e74c3c;
    transform: translateY(-2px);
  }
  
  .hero-img {
    width: 70%;
    height: auto;
    border-radius: 20px;
   
  }
  
  /* Menu Section */
  .menu {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
  }
  
  .menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  
  .category-btn {
    padding: 12px 25px;
    border: 2px solid #e74c3c;
    background: transparent;
    color: #e74c3c;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .category-btn.active,
  .category-btn:hover {
    background: #e74c3c;
    color: white;
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .menu-item-image {
    height: 200px;
    overflow: hidden;
  }
  
  .menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .menu-item-content {
    padding: 20px;
  }
  
  .menu-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
  }
  
  .menu-item-description {
    color: #666;
    margin-bottom: 15px;
  }
  
  .menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
  }
  
  .add-to-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f39c12;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .add-to-cart-btn:hover {
    background: #e67e22;
    transform: scale(1.1);
  }
  
  /* About Section */
  .about {
    padding: 80px 0;
    background: white;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
  }
  
  .about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e74c3c;
    font-weight: 600;
  }
  
  .feature i {
    font-size: 1.2rem;
  }
  
  .about-img {
    width: 70%;
    height: auto;
    border-radius: 15px;
  }
  
  /* Contact Section */
  .contact {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
  
  .contact-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
  }
  
  .contact-item:first-child .contact-icon {
    background: #25d366;
  }
  
  .contact-item:last-child .contact-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  .contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-details p {
    color: #666;
    margin-bottom: 15px;
  }
  
  .contact-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .contact-link:hover {
    color: #c0392b;
  }
  
  /* Footer */
  .footer {
    background: #d1530b;
    color: rgb(255, 255, 255);
    padding: 40px 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-logo-img {
    height: 50px;
    width: auto;
  }
  
  .footer-text {
    text-align: center;
  }
  
  .footer-text p {
    margin-bottom: 5px;
    opacity: 0.8;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .footer-social a:first-child {
    background: #25d366;
  }
  
  .footer-social a:last-child {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  .footer-social a:hover {
    transform: scale(1.1);
  }
  
  /* Cart Sidebar */
  .cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
  }
  
  .cart-sidebar.open {
    right: 0;
  }
  
  .cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cart-header h3 {
    font-size: 1.3rem;
    color: #333;
  }
  
  .cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
  }
  
  .cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
  }
  
  .empty-cart {
    text-align: center;
    color: #666;
    margin-top: 50px;
  }
  
  .empty-cart i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  
  .cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
  }
  
  .cart-item-price {
    color: #e74c3c;
    font-weight: 600;
  }
  
  .cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .quantity-btn:hover {
    background: #f8f9fa;
  }
  
  .cart-footer {
    padding: 60px;
    border-top: 1px solid #eee;
  }
  
  .cart-total {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .checkout-btn {
    width: 100%;
    padding: 20px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
  }
  
  .checkout-btn:hover {
    background: #128c7e;
  }
  
  .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  
  .cart-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .about-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .about-features {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .menu-grid {
      grid-template-columns: 1fr;
    }
  
    .cart-sidebar {
      width: 100%;
      right: -100%;
    }
  
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .menu-categories {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Hide menu items by category */
  .menu-item.hidden {
    display: none;
  }
  
