@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  background-color: #fff;
  padding: 1%;
}
html, body {
  margin: 0;
  padding: 0;
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  transition: 0.5s;
}

.navbar-nav .dropdown:hover>.nav-link {
  color: #007bff;
  /* Optional: Change hover color for the link */
  transition: 0.5s;
}

/* Dropdown hidden by default */
.navbar-nav .dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  /* Slight upward movement for smooth effect */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Dropdown visible on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  /* Return to original position */
}

/* Optional: Change link color on hover */
.navbar-nav .dropdown:hover>.nav-link {
  color: #007bff;
  /* Adjust to your desired color */
}

body {
  background-color: #fff;
}

.nav-item::after {
  content: '';
  margin: auto;
  display: block;
  width: 0%;
  height: 2px;
  background-color: #A1613B;
  opacity: 0;
  transition: 0.6s;
}

.nav-item:hover::after {
  width: 100%;
  opacity: 1;
}

#home {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)), url(imgs/home-bg.jpg);
  background-position: center;
  background-size: cover;
  margin-top: 0;
}

section {
  margin-top: 10%;
}

p {
  font-size: 18px;
}

#main-title {
  color: #c99a80;
  font-weight: 700;
  font-size: 3rem;
}

.cta,
.learnmore {
  padding: 3%;
  border-radius: 15px;
  text-decoration: none;
  text-wrap: nowrap;
}
#line-products .learnmore {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.cta {
  color: #fff;
  border-radius: 15px;
  background-color: #A1613B;
  transition: 0.5s;
}

.cta:hover {
  color: #000;
  background-color: #c99a80;
  transition: 0.5s;
}

.learnmore {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  margin-left: 2%;
  transition: 0.5s;
}

.white-learn-more {
  color: #fff !important;
}

.learnmore:hover {
  transform: scale(1.09);
  transition: 0.5s;
}

.left-home {
  margin-top: 10%;
  margin-bottom: 10%;
}

.counter {
  font-size: 5rem;
  font-weight: 800;
  color: #A1613B;
}

.countertitle {
  font-weight: 800;
  color: #A1613B;
}

#counters p span {
  color: #A1613B;
}

.whyus-title {
  color: #A1613B;
  font-size: 3.5rem;
  letter-spacing: 3px;
  font-weight: 300;
}

#whyus {
  margin-top: 10%;
}
.selling-places {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.benefit-box {
  background-color: #fff;
  /* Ensure the background is white */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  /* More visible and wider shadow */
  border-radius: 8px;
  /* Optional: Rounded corners */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  /* For hover effects */
  padding: 20px;
  /* Add some extra padding inside */
}

.benefit-box:hover {
  transform: scale(1.05);
  /* Slight zoom on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  /* Larger and more pronounced shadow on hover */
}

#companies img {
  max-width: 150px;
}

.parallax-img-wrapper {
  position: relative;
  height: 100%;
  /* Ensure height matches the column */
  overflow: hidden;
  /* Prevent overflow outside container */
  background-color: red;
  /* Temporary background for debugging */
}

.parallax-img {
  position: relative;
  /* Change to relative for testing */
  width: 100%;
  height: auto;
  /* Allow natural image height */
  z-index: 1;
  /* Move to foreground temporarily */
}

.policies a {
  color: #000;
}





/* Ensure the entire carousel is horizontally and vertically centered */
#carouselExampleIndicators {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  margin: 0 auto;
}

/* Ensure the carousel content (slides) is centered */
.carousel-inner {

  width: 100%;
}

/* Carousel items centered */


/* Testimonial card styling */
.test-item {
  max-width: 600px;
  /* Adjust as needed */
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: auto;
  text-align: center;
}

/* Name styling */
.review-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Star rating styling */
.review-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.review-rating span {
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
}

.review-rating i {
  color: #f4c150;
  /* Gold stars */
}

/* Testimonial title */
.review-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Testimonial text */
.review-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* "Was this helpful?" section */
.review-helpful {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-helpful p {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Yes/No buttons */
.review-helpful .btn {
  margin: 0 5px;
}

/* Carousel indicators */
.carousel-indicators [data-bs-target] {
  background-color: #f4c150;
  /* Gold indicators */
}

.carousel-indicators .active {
  background-color: #f4c150;
  /* Active indicator */
}

.carousel-indicators {
  margin-top: 0;
}

#testimonials h2 {
  font-weight: bold;
  text-align: center;
}

.left-about-image {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 5%;
  border-bottom-left-radius: 5%;
}



/*-------------------------------------------------------PRODUCTS CSS---------------------------------------------------------*/
#mother-home {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(imgs/mother-line-hero.jpg);
  background-position: center;
  background-size: cover;
}

#line-products {
  position: relative;
  /* Ensure the section is a positioned container */
  overflow: hidden;
  /* Prevent the circle from spilling outside */
}

#line-products::before {
  content: "";
  position: absolute;
  top: -300px;
  /* Adjust position to control visibility */
  right: -300px;
  /* Move it further to the right */
  width: 800px;
  /* Diameter of the circle */
  height: 800px;
  /* Diameter of the circle */
  background-color: rgba(245, 245, 220, 0.7);
  /* Light beige with transparency */
  border-radius: 50%;
  /* Makes it a perfect circle */
  z-index: -2;
  /* Places it behind other elements */
}

.products-disclaimer {
  color: rgba(0, 0, 0, 0.2);
  font-size: 2.4rem;
}

.certification-img {
  max-width: 100px;
  /* Adjust this value as needed */
  max-height: 100px;
  /* Adjust this value as needed */
  object-fit: contain;
  /* Maintain aspect ratio */
  margin-right: 10px;
  /* Optional: Add space between images */
}

.addtocart-holder {
  display: flex;
  align-items: center;
  /* Vertically align items */

  gap: 20px;
  /* Optional: Add spacing between button and price */
}
.floating-cart {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #A1613B;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s ease, transform 0.3s ease, visibility 0.4s;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: 0.5s;
  z-index: 6;
}

.floating-cart.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.floating-cart:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
}


.floating-cart:hover {
  background-color: #8B512F;
  color: #fff;
  transition: 0.5s;
  transform: scale(1.09);
}

.cart-badge {
  margin-left: 10px;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  display: none; /* Hidden by default */
}


.price-point {
  font-size: 18px;
  /* Match font size with button for consistency */
  margin: 0;
  /* Remove any extra margins */
}



.productpage-addtocart-btn {
  background: none;
  border: none;
  padding: 0;
  border-right: 1px solid gray;
  border-left: 1px solid gray;
  padding: 1%;
  white-space: nowrap;
  color: #A1613B;

}

.card {
  transition: 0.5s;
}

.card:hover {
  transform: scale(1.05);
  transition: 0.5s;
}

/*-------------------------------------------------------BABY PRODUCTS CSS---------------------------------------------------------*/
#baby-home {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(imgs/product-images/potential-hero/baby-line-hero.jpg);
  background-size: cover;
  background-position: center;
  margin-top: 0;
}

/*-------------------------------------------------------CART CSS---------------------------------------------------------*/

/* General styles for the cart container */
#shopping-cart-container {
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  background-color: #fff;
}

/* Individual cart item container */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* Cart item image */
.cart-item-image {
  width: 15%;
  height: auto;
  border-radius: 5px;
  margin-right: 15px;
}

/* Cart item details */
.cart-item-details {
  flex: 1;
  margin-left: 15px;
}

/* Cart item name */
.cart-item-details h4 {
  font-size: 18px;
  margin: 0 0 5px;
}

/* Cart item price */
.cart-item-details p {
  font-size: 16px;
  margin: 0 0 10px;
  color: #333;
}

/* Quantity input and controls */
.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cart-item-quantity label {
  margin-right: 10px;
  font-size: 14px;
}

.quantity-input {
  width: 60px;
  padding: 5px;
  font-size: 14px;
  text-align: center;
}

/* Remove button */
.remove-button {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.proceed-button, #apply-promo {
  background-color: #A1613B;
  padding: 1%;
  color: #fff;
  border-radius: 10px;
  border: none;
  white-space: nowrap;
  transition: 0.5s;
}
.proceed-button:hover {
  background-color: #A1613B;
  transform: scale(1.04);
  transition: 0.5s;

}
.cart-item-actions {
  display: flex;
  gap: 10px;
}
.add-to-cart {
  border: none;
}
