/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a2e1a;
  background-color: #f5fff6;
  overflow-x: hidden;
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Sticky CTA Button */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d6d36;
  color: white;
  text-align: center;
  padding: 1rem;
  z-index: 999;
}

.sticky-cta button {
  background: #fff;
  color: #0d6d36;
  font-weight: bold;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.sticky-cta button:hover {
  background: #c9f7ce;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #c9f7ce, #e9ffea);
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero button {
  background: #0d6d36;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #0a5228;
}

/* Section Titles */
section h2 {
  color: #0d6d36;
  margin-bottom: 1rem;
}

/* Story */
.story p {
  margin-bottom: 1rem;
}

/* Ingredients */
.ingredients ul {
  list-style-type: square;
  padding-left: 1.5rem;
}

/* Testimonials */
.testimonials {
  background: #e9ffea;
  padding: 3rem 0;
}

.testimonial {
  margin-bottom: 1.5rem;
  background: white;
  padding: 1rem;
  border-left: 5px solid #0d6d36;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
  color: #555;
}

/* Limited Offer Section */
.limited-offer {
  background: #c9f7ce;
  text-align: center;
  padding: 2.5rem 1rem;
}

.limited-offer button {
  margin-top: 1rem;
  background: #0d6d36;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.limited-offer button:hover {
  background: #0a5228;
}
.product-section {
  padding: 2rem 1rem;
  background-color: #ecfdf5;
}

.product-container {
  padding: 0 1rem;
  box-sizing: border-box;
}

.product-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .product-image img {
    max-width: 90vw;
  }
}



.product-info {
  flex: 1;
  min-width: 280px;
}

.product-info h2 {
  font-size: 1.8rem;
  color: #166534;
  margin-bottom: 0.75rem;
}

.product-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #334;
}

/* Order Form */
.form-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section input,
.form-section textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form-section button[type="submit"] {
  background: #0d6d36;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.form-section button[type="submit"]:hover {
  background: #0a5228;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background: #e9ffea;
  font-size: 0.9rem;
}

.footer a {
  color: #0d6d36;
  text-decoration: underline;
}
.countdown {
    font-size: 1.1rem;
    color: #155e29;
    background: #e6ffe6;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
  }
  .faq-item {
    margin-bottom: 1rem;
  }
  
  .faq-question {
    background: #def5e5;
    color: #064e3b;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .faq-answer {
    display: none;
    padding: 10px;
    background: #f6fff6;
    border-left: 3px solid #25a244;
    border-radius: 4px;
  }
  .modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 50, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .modal-content {
    background: #ffffff;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    max-width: 400px;
  }
  
  #closeModal {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #198754;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
      
/* Animations */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .animate.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
/* Responsive Typography */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.25rem;
  }
}


     .scrolling-banner {
    width: 100%;
    overflow: hidden;
    background-color: #ff0000;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  .scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-right-to-left 10s linear infinite;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
  }

  @keyframes scroll-right-to-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }


  /* Comments Section */
.comments-section {
    background: #fff;
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .comments-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }
  
  .comment, .reply {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .reply .avatar {
    width: 35px;
    height: 35px;
  }
  
  .comment-content {
    background: #f2f2f2;
    padding: 10px 15px;
    border-radius: 10px;
    width: 100%;
  }
  
  .comment-actions {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
  }
  
  .comment-actions span {
    margin-right: 10px;
    cursor: pointer;
  }
  
  .reply {
    margin-left: 50px;
    margin-top: 10px;
  }
  /* Larger image shown inside a nested comment reply */
  .reply-photo {
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    display: block;
  }
  
  .write-comment {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
  }
  
  .write-comment input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #f2f2f2;
  }
  
  .write-comment button {
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background: #ff5c5c;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  
  .toast {
    display: none;
    background-color: #4caf50;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    animation: fadeOut 3s forwards;
  }
  
  @keyframes fadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; display: none; }
  }


 
