* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  header {
    background: #ffc0cb; /* Pink */
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo {
    font-size: 26px;
    font-weight: bold;
    color: white;
  }
  
  header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    header nav {
      margin-top: 10px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
  
    header nav a {
      margin-left: 0;
      padding: 8px 12px;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      font-size: 14px;
      text-align: center;
      flex: 1 1 auto;
    }
  }
  
  .hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    flex-direction: column;
    overflow: hidden;
  }
  
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6; /* Optional: make it slightly dim for text visibility */
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white;
  }
  
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
    z-index: 0;
  }
  
  

  .hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.50rem;
    margin-bottom: 20px;
  }
  .hero button {
    background: white;
    color: #ff69b4;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .hero button:hover {
    background: #ff69b4;
    color: white;
  }
  @media (max-width: 768px) {

    .hero h1 {
      font-size: 3rem;
    }
  
    .hero p {
      font-size: 1.3rem;
    }
  
    .hero button {
      padding: 8px 16px;
      font-size: 14px;
    }

  }

  
  .products {
    padding: 60px 20px;
    text-align: center;
  }
  
  .products h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ff69b4;
  }
  
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .product {
    width: 250px;
    background: rgba(159, 215, 252, 0.308); /* Light Blue */
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .product:hover {
    transform: scale(1.05);
  }
  
  .product img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .product h3 {
    color: #333;
    margin-bottom: 8px;
  }
  

  .about-container {
    flex: 1;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(159, 215, 252, 0.308);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(241, 3, 209, 0.521);
    margin-top: 70px;
    margin-bottom: 182px;
    text-align: center;
  }
  
.about-container h2 {
  font-size: 32px;
  color: #ff69b4;
  margin-bottom: 20px;
}
.about-container p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
.promo-banners {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px 20px 30px;
  flex-wrap: wrap;
}

.promo-trio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 60px 20px;
  flex-wrap: wrap;
}

.promo-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 300px;
  max-width: 400px;
}

.promo-center {
  flex: 1 1 300px;
  max-width: 400px;
}

.promo-left img,
.promo-center img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .promo-trio {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .promo-left,
  .promo-center {
    max-width: 90%;
    flex: unset;
  }

  .promo-left {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .promo-left img {
    width: 45%;
  }

  .promo-center img {
    width: 100%;
  }
}
.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form button {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: white;
  color: #ff69b4;
  border: 1px solid #ff69b4;
}

.menu-container {
  padding: 60px 20px;
  text-align: center;
}

.menu-container h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff69b4;
}

.category {
  margin-bottom: 50px;
}

.category h3 {
  font-size: 28px;
  color: #87ceeb;
  margin-bottom: 25px;
}

.items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.item {
  width: 220px;
  background: rgba(159, 215, 252, 0.308);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.item:hover {
  transform: scale(1.05);
}

.item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.item p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 30px auto;
  padding: 10px 20px;
  max-width: 900px;
}

.category-buttons button {
  background-color: #ff69b4;
  color: white;
  border: 1px solid transparent;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-buttons button:hover {
  background-color: white;
  color: #ff69b4;
  border: 1px solid #ff69b4;
  transform: translateY(-2px);
}
.testimonials {
  background: #fdf4f9; /* Soft pink background */
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  color: #ff69b4; /* Hot pink */
  margin-bottom: 40px;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  width: 280px;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-8px);
}

.testimonial p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial span {
  font-weight: bold;
  color: #87ceeb; /* Sky blue */
  display: block;
  font-size: 14px;
}

.item .price {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  color: #ff69b4;
}

.cart-btn, .buy-now-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #ff69b4;
  color: white;
  padding: 2px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none; /* Ensure there's no border */
  outline: none; /* Remove any outline */
}

.cart-btn:hover, .buy-now-btn:hover {
  background-color: white;
  color: #ff69b4;
  border: 1px solid #ff69b4; /* Add a border on hover, if you want */
  transform: translateY(-2px); /* Optional hover effect */
}

.cart-btn:focus, .buy-now-btn:focus {
  outline: none; /* Ensure no outline when focused */
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 60px;
}
.container h2 {
  text-align: center;
  font-size: 32px;
  color: #ff69b4;
  font-weight: 800;
  text-shadow: 2px 2px #fff;
  margin-bottom: 5px;
  margin-top: 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: popUp 0.5s ease-in-out;
}

@keyframes popUp {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.cart-item {
  display: flex;
  align-items: center;
  background-color: #87cfeb60;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.575);
  padding: 15px;
  transition: 0.3s;

}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details strong {
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.cart-item-details p {
  margin: 0;
  font-weight: bold;
  color: #d63384;
}
.cart-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffc0cb;
  color: #333;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-size: 16px;
  z-index: 999;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cart-popup.show {
  opacity: 1;
  transform: translateY(0);
}

/* Total */
.total {
  font-size: 30px;
  font-weight: bold;
  color: #d63384;
  margin-top: 100px;
  margin-bottom: 10px;
  text-align: center;
  
}

/* Checkout Button */
.checkout-button {
  display: block;
  width: fit-content;
  background-color: #ff69b4;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
  transition: background 0.3s;
}

.checkout-button:hover {
  background-color: white;
  color: #ff69b4;
  border: 1px solid #ff69b4;
}

@media (max-width: 600px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item img {
    margin-bottom: 10px;
  }

  .total {
    text-align: center;
  }

}
footer {
  background: #87ceeb; /* Light Sky Blue */
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}
.cart-footer{
  background: #87ceeb; /* Light Sky Blue */
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 400px;

}
