/* ===== Global Reset ===== */
•	{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #fdfdfd;
    color: #1f1f1f;
    line-height: 1.6;
    font-size: 16px;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  /* ===== Header Navigation ===== */
  header {
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2a56;
  }
  
  nav ul {
    display: flex;
    gap: 30px;
  }
  
  nav li a {
    font-weight: 500;
    transition: 0.3s;
  }
  
  nav li a:hover {
    Color: #00a8ff;
  }
  
  /* ===== Hero Video Section ===== */
 .hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* or whatever height you prefer */
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  z-index: 2; /* Higher than video container */
  width: 80%; /* Adjust as needed */
  max-width: 600px; /* Prevents overlay from being too wide */
}

.hero-overlay h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.cta-button {
  background: #00a8ff;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #007cc0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-overlay {
    width: 90%;
    padding: 15px;
  }
  
  .hero-overlay h2 {
    font-size: 1.5rem;
  }
}
  
  /* ===== Featured Products Section ===== */
  .featured-products {
    padding: 60px 40px;
    text-align: center;
  }
  
  .featured-products h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1f2a56;
  }
  
  .featured-products article {
    display: inline-block;
    width: 280px;
    margin: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .featured-products article:hover {
    transform: translateY(-5px);
  }
  
  .featured-products img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .featured-products h4 {
    font-size: 20px;
    margin: 15px 0 5px;
    color: #1f2a56;
  }
  
  .featured-products p {
    padding: 0 15px 20px;
    color: #555;
  }
  
  /* ===== How It Works Section ===== */
  .how-it-works {
    background: #f3f7fa;
    padding: 60px 40px;
    text-align: center;
  }
  
  .how-it-works h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1f2a56;
  }
  
  .how-it-works ol {
    max-width: 600px;
    margin: auto;
    text-align: left;
    font-size: 18px;
    color: #333;
  }
  
  .how-it-works li {
    margin-bottom: 15px;
  }
  
  /* ===== Footer ===== */
  Footer {
    padding: 30px 40px;
    background: #1f2a56;
    color: #fff;
    text-align: center;
    font-size: 14px;
  }
  
  Footer small {
    font-size: 12px;
    opacity: 0.8;
  }
  
  .checkout-form {
    padding: 60px 40px;
    background: #ffffff;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .checkout-form h3 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #1f2a56;
    text-align: center;
  }
  
  .checkout-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .checkout-form label {
    font-weight: 600;
    color: #333;
    text-align: left;
  }
  
  .checkout-form input,
  .checkout-form select,
  .checkout-form textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
  }
  
  .checkout-form button {
    background: #00a8ff;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .checkout-form button:hover {
    background: #007cc0;
  }
  
  /* ===== Animated Success Popup ===== */
  .success-popup {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #00a8ff;
    color: white;
    font-weight: bold;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: bottom 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 9999;
  }
  
  .success-popup.show {
    bottom: 40px;
    opacity: 1;
  }
  
  /* ===== Responsive (Mobile First) ===== */
  @media (max-width: 768px) {
    header {
      padding: 20px;
    }
  
    nav {
      flex-direction: column;
      gap: 10px;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
      align-items: center;
    }
  
    .hero-overlay h2 {
      font-size: 28px;
    }
  
    .hero-overlay p {
      font-size: 16px;
    }
  
    .cta-button {
      font-size: 14px;
      padding: 10px 20px;
    }
  
    .featured-products article {
      width: 90%;
      margin: 20px auto;
    }
  
    .featured-products {
      padding: 40px 20px;
    }
  
    .how-it-works {
      padding: 40px 20px;
    }
  
    .how-it-works ol {
      font-size: 16px;
    }
  
    footer {
      padding: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-overlay h2 {
      font-size: 22px;
    }
  
    .hero-overlay p {
      font-size: 14px;
    }
  
    .cta-button {
      font-size: 13px;
      padding: 8px 18px;
    }
  
    nav h1 {
      font-size: 24px;
    }
  
    .featured-products h3,
    .how-it-works h3 {
      font-size: 24px;
    }
  
    footer {
      font-size: 12px;
    }
  }
  



  /* ===== Menu Page ===== */


.menu-page {
    padding: 60px 40px;
    background: #fdfdfd;
    text-align: center;
  }
  
  .menu-page h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1f2a56;
  }
  
  .menu-page .featured-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .menu-page .featured-products article {
    background: #fff;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: 0.3s ease;
  }
  
  .menu-page .featured-products article:hover {
    transform: translateY(-5px);
  }
  
  .menu-page .featured-products img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .menu-page .featured-products h4 {
    font-size: 20px;
    color: #1f2a56;
    margin: 15px 0 5px;
  }
  
  .menu-page .featured-products p {
    color: #555;
    padding: 0 15px 20px;
    font-size: 14px;
  }
  
.add-to-cart {
    margin: 15px 0 20px;
    background-color: #00a8ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart {
    background-color: #007cc0;
}
.cart-summary {
    background: #f3f7fa;
    padding: 15px 20px;
    margin: 20px auto 40px;
    max-width: 500px;
    border-radius: 10px;
    color: #1f2a56;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: space-around;
}






/* ===== How It Works Page ===== */
.how-it-works-page {
    padding: 60px 40px;
    background-color: #fdfdfd;
    text-align: center;
  }
  
  .how-it-works-page h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1f2a56;
  }
  
  .intro-text {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
  }
  
  .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .step {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    max-width: 280px;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-5px);
  }
  
  .step img {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
  }
  
  .step h3 {
    font-size: 20px;
    color: #1f2a56;
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 15px;
    color: #555;
  }

  


  /* ===== Contact Page ===== */
.contact-page {
  padding: 60px 40px;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info h2 {
  font-size: 32px;
  color: #1f2a56;
}

.contact-info p {
  color: #555;
  cont-size: 16px;
  margin-bottom: 30px;
}

.info-blocks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  width: 220px;
  text-align: center;
}

.info-box h4 {
  color: #1f2a56;
  margin-bottom: 8px;
}

.info-box p {
  color: #333;
  font-size: 14px;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
}

.contact-form h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #1f2a56;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background: #f9f9f9;
}

.contact-form button {
  background: #00a8ff;
  color: white;
  border: none;
  font-size: 16px;
  padding: 12px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #007cc0;
}

#cart-preview {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 15px;
  color: #333;
}

#cart-preview li {
  margin-bottom: 10px;
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.remove-btn {
  background: #ff4444;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 5px;
  cursor: pointer;
}

.success-popup {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #00a8ff;
  color: white;
  font-weight: bold;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: bottom 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  z-index: 9999;
}

.success-popup.show {
  bottom: 40px;
  opacity: 1;
}
