body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
.notice .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
	align-items: center;   
 }

.notice {
  background-color: #3e8e41;
  color: white;
  height: 60px;              
  display: flex;
  align-items: center;       
  justify-content: center;   
  text-align: center;
  padding: 0 15px; 
}

.notice p {
  margin: 0;
}


/* banner Section */

.hero-banner {
	background-image: url('videos/banner.jpeg');
  background-size: 100% 100%;
  background-position: center;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-repeat: no-repeat;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border-radius: 10px;  
}

.banner-content {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for text readability */
  padding: 20px 40px;
  border-radius: 10px;
}

.banner-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.banner-content .btn {
  background-color: #3e8e41;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.banner-content .btn:hover {
  background-color: #2e6c30;
}

.product-info {
  padding: 20px 20px 60px 20px;
  background-color: #ffffff;
  color: #333;
}

.product-info .container {
  max-width: 1000px;
  margin: 0 auto;
}

.product-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #2d4739;
  text-align: center;
}

.product-info .sub-heading {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  color: #444;
}

.product-info .description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.product-info .product-list {
  list-style-type: disc;
  margin: 0;   
  list-style-position: inside;  /* Moves the bullet closer to the text */
  padding-left: 0;              /* Remove any left padding */
  margin-left: 0;            
}
.product-info .product-list li {
  margin: 0;                    /* Remove any margin around list items */
  padding: 0;                   /* Remove any padding on the list items */
  line-height: 1.6;             /* Controls line height between items */
}

.product-details {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.product-details .container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  justify-content: space-between;
}

.product-image {
  position: relative;
  flex: 1;
}

.product-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.product-info {
  flex: 1;
}

.product-info h2 {
  font-size: 28px;
  color: #2d4739;
}

.product-reviews {
  font-size: 16px;
  color: #888;
  margin: 10px 0;
}

.product-price {
  font-size: 20px;
  margin: 20px 0;
}

.product-price .regular-price {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 15px;
}

.product-price .sale-price {
  color: #f39c12;
  font-weight: bold;
}

.tax-shipping {
  font-size: 14px;
  color: #777;
}

.quantity-selector, .size-selector {
  margin: 15px 0;
}

.quantity-selector label, .size-selector label {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.quantity-selector input, .size-selector select {
  padding: 8px;
  font-size: 16px;
  width: 100px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.add-to-cart, .buy-now,.whatsapp {
  padding: 15px 20px;
  background-color: #2d4739;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.add-to-cart:hover, .buy-now:hover {
  background-color: #f39c12;
}

.buy-now {
  background-color: #007bff;
}


.whatsapp{
  background-color: lightgreen;
}


.buy-now:hover {
  background-color: #0056b3;
}


/* Main image styling */
#main-image {
  width: 100%;
  transition: transform 0.4s ease;
}

#main-image:hover {
  transform: scale(1.5);
  cursor: zoom-in;
}

/* Thumbnail styles */
.product-gallery {
  display: flex;
  gap: 10px;
}

.product-gallery .thumb {
  width: 70px;
  height: auto;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: border 0.3s;
}

.product-gallery .thumb:hover {
  border: 2px solid #007b00;
}




/* Hero Section */
.hero {
  background: url('banner.jpg') center/cover no-repeat;
  text-align: center;
  color: white;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Sections */
section {
  text-align: center;
  padding: 40px 20px;
}

.benefits ul {
  list-style: none;
  padding: 0;
}

.benefits li {
  padding: 10px 0;
}

/* Image responsiveness */
.before-after img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Form styling */
.contact-form form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background: #116530;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}


/* Responsive styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .contact-form form {
    width: 100%;
  }
}

.product-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  padding: 20px;
}

.product-images {
  size:40px;
  flex: 1;
}

.main-image {
  width: 100%;
  max-width: 400px;
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbnails img {
  width: 80px;
  height: 80px;
  cursor: pointer;
  object-fit: cover;
  border: 1px solid #ccc;
  padding: 3px;
}

.product-details {
  flex: 1;
}

.blink {
  animation: blink-animation 1s steps(7, start) infinite;
  color: white;
  background-color: #3e8e41 ;
  font-weight: bold;
  padding: 10px;
  font-size: 18px;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
/* Main image box */
.zoom-container {
  width: 100%;
  height: 400px; /* FIXED height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid #ccc;
}

.zoom-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Thumbnails */
.product-gallery {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.product-gallery img.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}

.product-gallery img.thumb:hover {
  border-color: #333;
}

/* insta link */

.video-section {
  padding: 30px 0;
  background-color: #f9f9f9;
}
.video-section img {
  transition: transform 0.3s ease;
}
.video-section img:hover {
  transform: scale(1.1);
}

/* video link */

.video-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.video-frame {
  position: relative;
  width: 200px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  cursor: pointer;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 10px 15px;
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 420px;
}

.modal video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: -30px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}


/* customer image review design */

.before-after {
  padding: 30px;
  text-align: center;
  background-color: #f9f9f9;
}

.before-after h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}

.image-grid img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}


.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border: none;
  transform: translateY(-50%);
  z-index: 2;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  background: red;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 2;
}

.image-gallery img {
  width: 200px;
  height: 200px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  cursor: pointer;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

/* Reuse your lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  text-align: center;
}

.lightbox-content img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.lightbox-content p {
  color: white;
  font-size: 18px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
}
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.video-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.video-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.caption {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  padding: 5px;
  text-align: center;
  font-size: 14px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  opacity: 0.8;
  pointer-events: none;
}

/* Lightbox */
/* Lightbox - Fullscreen Centered Video */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}


.icon {
  width: 30px;
  height: auto;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #333;
}

.modal-content form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.modal-content form button {
  width: 100%;
  padding: 10px;
  background: #5A67D8;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-content form button:hover {
  background: #434190;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}
.auth-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.auth-container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  width: 380px;
  max-width: 93%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  font-family: 'Segoe UI', sans-serif;
}

.auth-field input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.auth-button {
  width: 100%;
  padding: 12px;
  background-color: #3e8e41;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.auth-button:hover {
  background-color: #0056b3;
}

.auth-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}


/* product list view */


body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 20px;
  margin: 0;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.product-card {
  width: 100%;
  max-width: 250px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 15px;
  position: relative;
  flex-shrink: 0;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.discount-badge {
  background-color: #4caf50;
  color: white;
  padding: 5px 10px;
  border-radius: 0 0 10px 0;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
}

.product-title {
  font-weight: bold;
  font-size: 16px;
  margin: 10px 0 5px;
}

.product-desc {
  color: #4caf50;
  font-size: 14px;
  margin-bottom: 8px;
}

.ratings {
  font-size: 14px;
  margin-bottom: 5px;
  color: #777;
}

.price {
  margin-bottom: 10px;
}

.price del {
  color: #999;
}

.price .offer {
  color: green;
  font-weight: bold;
  margin-left: 5px;
}

.add-cart-btn {
  display: block;
  background-color: #ffcc00;
  color: black;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.add-cart-btn:hover {
  background-color: #ffc107;
}

/* Responsive design */
@media (min-width: 600px) {
  .product-list {
    justify-content: space-around;
  }

  .product-card {
    width: 45%;
  }
}

@media (min-width: 900px) {
  .product-card {
    width: 22%;
  }
}
 .error {
    color: red;
    font-size: 12px;
  }
<style>
.auth-popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
}

.auth-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  position: relative;
}

.auth-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.auth-field {
  margin-bottom: 15px;
}

.auth-field input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}

.auth-button {
  width: 100%;
  padding: 10px;
  background-color: #3e8e41;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.auth-button:hover {
  background-color: #0056b3;
}

.error {
  color: red;
  font-size: 13px;
  display: block;
  margin-top: 5px;
}

.icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}


html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background-color: #3e8e41;
  color: #fff;
  padding-top: 40px;
  width: 100%;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;  /* Keeps content centered */
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 300px;
  padding: 10px;
}

.footer-section h3 {
  border-bottom: 2px solid #f39c12;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f39c12;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background-color: #111;
  color: #ccc;
  font-size: 14px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  background-color: #0c0c0c;
  padding: 15px 20px;
  color: #aaa;
  font-size: 14px;
  box-sizing: border-box;
}





html, body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

.testimonials {
  background-color: #f4f9f4;
  padding: 30px 20px;
  text-align: center;
}

.testimonials .container {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .testimonials h2 {
    font-size: 22px;
  }

  .testimonials blockquote {
    font-size: 16px;
    padding: 10px 15px;
  }
}
.benefits {
  background-color: #f9fdf9;
  padding: 60px 20px;
  text-align: center;
}

.benefits .container {
  max-width: 1000px;
  margin: 0 auto;
}

.benefits h2 {
  font-size: 26px;
  color: #2d4739;
  margin-top: 40px;
  font-weight: bold;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.benefits-list li {
  font-size: 18px;
  color: #333;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list li span {
  color: green;
  font-size: 20px;
  font-weight: bold;
}
.contact-form {
  background-color: #f9f9f9;
  padding: 50px 15px;
  display: flex;
  justify-content: center;
}

.contact-container {
  background-color: #fff;
  padding: 30px 50px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px; /* makes it rectangular */
  box-sizing: border-box;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2d4739;
  font-size: 26px;
}

.contact-container form {
  display: flex;
  flex-direction: column;
}

.contact-container input,
.contact-container textarea {
  margin-bottom: 20px;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.contact-container textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-container button {
  background-color: #2d4739;
  color: white;
  padding: 14px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-container button:hover {
  background-color: #f39c12;
}


@media (max-width: 600px) {
  .benefits h2 {
    font-size: 22px;
  }

  .benefits-list li {
    font-size: 16px;
    padding: 12px 16px;
  }
}


.testimonials h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2d4739;
  font-weight: bold;
}

.testimonials blockquote {
  font-style: italic;
  color: #555;
  background: #fff;
  border-left: 5px solid #3e8e41;
  margin: 20px auto;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
}

.testimonials blockquote::before,
.testimonials blockquote::after {
  content: '"';
  font-size: 24px;
  color: #3e8e41;
  vertical-align: middle;
}


/* pop up after product list view */

