:root {
    --primary: #ff8c00;
    --secondary: #ffd700;
    --text-light: #ffffff;
    --bg-dark: #1a1a1a;
    --text-gray: #cccccc;
    --border-dark: #333333;
    --accent: #f8b400;
  }
  
  /* Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
  }
  
  /* Common Utilities */
  .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
  }
  
  .btn.primary {
    background: var(--primary);
    color: var(--text-light);
  }
  
  .btn.secondary {
    background: var(--primary);
    color: var(--text-light);
  }
  
  /* Navigation */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: relative;
    z-index: 1000;
  }
  
  .logo img {
    width: 120px;
    transition: transform 0.3s ease;
  }
  
  .nav-links {
    display: flex;
    gap: 2.5rem;
    padding: 1rem;
    justify-content: center;
  }
  
  .nav-links a {
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
  }
  
  /* Fancy hover effect with gradient underline */
  .nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      to right,
      var(--primary) 0%,
      var(--accent, #ff6b6b) 100%
    );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      to right,
      var(--primary) 0%,
      var(--accent, #ff6b6b) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: right;
  }

  
  
  .nav-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0.5rem;
  }
  
  .nav-actions a {
    position: relative;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
  }
  
  .nav-actions a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  /* Hover effect for the icon */
  .nav-actions a:hover i {
    transform: scale(1.1) translateY(-2px);
    color: var(--primary);
  }
  
  /* Create a pulsing background effect on hover */
  .nav-actions a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    transform: scale(0);
    transition: transform 0.3s ease;
  }
  
  .nav-actions a:hover::before {
    transform: scale(1);
  }
  
  /* Add a subtle interaction indicator */
  .nav-actions a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
  }
  
  .nav-actions a:hover::after {
    transform: translateX(-50%) scale(1);
  }
  
  /* Optional: Add badge for cart items */
  .nav-actions a[href*="cart"] {
    position: relative;
  }
  
  .nav-actions a[href*="cart"]::before {
    content: attr(data-items);
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent, #ff4b4b);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s ease;
  }
  
  .nav-actions a[href*="cart"].has-items::before {
    transform: scale(1);
  }
  
  .cart-count {
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-left: -10px;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 5%;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  /* Burger Components */
  .burger-showcase {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-top: 3rem;
  }
  
  .burger-image-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
  }
  
  .burger-image,
  .featured-burger img {
    width: 100%;
    max-width: 800px;
    animation: float 3s ease-in-out infinite;
  }
  
  .burger-thumbnails {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .burger-thumbnails img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .burger-thumbnails img:hover,
  .burger-thumbnails img.active {
    border-color: var(--primary);
    transform: translateY(-10px);
  }
  
  /* Footer */
  .site-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
  }
  
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-column h4 {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .contact-info {
    list-style: none;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
  }
  
  .contact-info i {
    color: var(--accent);
    width: 20px;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .social-links a {
    color: var(--text-light);
    background-color: var(--border-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
  }
  
  .newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    background-color: var(--border-dark);
    color: var(--text-light);
    min-width: 0;
  }
  
  .newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
  }
  
  .newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #ffc426;
  }
  
  .newsletter p {
    font-size: 0.875rem;
    color: #999999;
    margin-top: 0.5rem;
  }
  
  .copyright {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #999999;
  }
  
  .legal-links {
    margin-top: 1rem;
  }
  
  .legal-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .legal-links a:hover {
    color: var(--accent);
  }
  
  /* Animations */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  @keyframes shine {
    0% {
      top: -150%;
      left: -150%;
    }
    100% {
      top: 150%;
      left: 150%;
    }
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(26, 26, 26, 0.95);
      flex-direction: column;
      padding: 2rem;
      text-align: center;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .cta-buttons {
      flex-direction: column;
    }
  
    .burger-thumbnails {
      flex-wrap: wrap;
    }
  
    .burger-image-container {
      max-width: 400px;
      padding: 1.5rem;
    }
  
    .site-footer {
      padding: 3rem 1rem 1.5rem;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .newsletter-form {
      flex-direction: column;
    }
  
    .newsletter-form button {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .logo img {
      width: 100px;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .btn {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
    }
  
    .burger-thumbnails img {
      width: 80px;
      height: 80px;
    }
  
    .burger-image-container {
      max-width: 300px;
      padding: 1rem;
    }
  }

  