:root {
--red-light: #ffe5e5;
--red-medium: #ff9999;
--red-dark: #ff4d4d;
--red-darker: #cc0000;
--red-darkest: #990000;
--red-text: #b30000;
--red-button-bg: #ff4d4d;
--red-button-hover: #cc0000;
--red-border: #ff9999;

--blue-light: #d4d8ea;
--blue-medium: #99ccff;
--blue-dark: #4da6ff;
--blue-darker: #005c99;
--blue-darkest: #003366;
--blue-text: #004080;
--blue-button-bg: #4da6ff;
--blue-button-hover: #005c99;
--blue-border: #99ccff;

}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensures the header is above other content */
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--red-darkest);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li a {
    color: var(--red-text);
    text-decoration: none;
  }
  
  .nav-links .order-now {
    background-color: var(--red-button-bg);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .nav-links .order-now:hover {
    background-color: var(--red-button-hover);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--red-darkest);
    margin: 4px 0;
  }
  
  
  
@media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: white;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 1rem;
    }
  
    .hero-content h1 {
      font-size: 4rem;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
}
  
body {
    font-family: Arial, sans-serif;
    background-color: var(--blue-light);
    color: var(--text-dark);
}

.products {
    padding: 2rem;
}

.category h1 {
    font-size: 2rem;
    color: var(--blue-dark);
    padding-top: 3rem;
    padding-bottom: 1rem;
    text-align: center;
}
.snack{
  margin-top: 2rem;
}
a{
    text-decoration: none;
    color: white;
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.product {
    background-color: var(--red-light);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 2rem); /* Three products per row on desktop */
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info {
    margin-top: 1rem;
}

.product-info h2 {
    font-size: 1.5rem;
    color: var(--red-dark);
}

.product-info p {
    font-size: 1rem;
    color: var(--red-medium);
}

.order-now {
    background-color: var(--red-dark);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    width: 150px;
    transition: background-color 0.3s;
}

.order-now:hover {
    background-color: var(--red-medium);
}

.order-now .cart-icon {
    margin-right: 1rem;
}

@media (max-width: 1024px) {
    .product {
        width: calc(50% - 1rem); /* Two products per row on medium screens */
    }
}

@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }
    
    .product {
        width: 100%; /* Full width on mobile */
    }
}






#footer {
    background-color: white;
    color: var(--blue-text);
    padding: 2rem 1rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
    color: var(--blue-text);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: var(--pink-lighter);
  }
  
  .review-box .review-input {
    display: flex;
    align-items: center;
  }
  
  .review-box input {
    padding: 0.5rem;
    border-radius: 5px 0 0 5px;
    border: 1px solid var(--blue-border);
    flex: 1;
  }
  
  .review-box button {
    padding: 0.5rem 1rem;
    background-color: var(--blue-button-bg);
    border: none;
    border-radius: 0 5px 5px 0;
    color: var(--pink-darkest);
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .review-box button:hover {
    background-color: var(--blue-button-hover);
  }
  
  .contact-info p {
    margin: 0.5rem 0;
  }
  
  .social-links {
   display: flex;
  justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .social-links a img {
    width: 30px;
    height: 30px;
  }
   .social-links i{
    border: 1px solid var(--blue-border);
    width: 30px;
    display: flex;
    cursor: pointer;
    padding: 6px;
    height: 30px;
  }
  .social-links :hover{
    background-color: var(--blue-button-hover);
    transform:translateX(-7px) ;
  }
  .social-links .product-footer{
    transition: .5s;
  }
  
  .company-name p {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      text-align: center;
    }
  
    .review-box .review-input {
      flex-direction: column;
    }
  
    .review-box input {
      border-radius: 5px;
      margin-bottom: 0.5rem;
    }
  
    .review-box button {
      border-radius: 5px;
    }
  }
  