/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f1f3f6;
  text-align: center;
  margin: 0;
  padding: 0;
}

#navbar div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
}

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  color: black;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar .nav-icons {
  display: flex;
  gap: 20px;
}

.navbar .nav-icons span {
  cursor: pointer;
}

/* Hero Banner styles */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px;
  height: 80vh; /* Increased height */
}

.hero .hero-text {
  flex: 1;
  background-color: #ffe5b4; /* Light peach color */
  color: black; /* Changed text color to black */
  padding: 15% 13%; /* Added padding for better spacing */
  border-top-right-radius: 20px; /* Curved right border */
  border-bottom-right-radius: 20px; /* Curved right border */

}

.hero .hero-image {
  flex: 1;
  height: 100%; /* Ensure the div takes the full height */
  width: 45%; /* Reduced width */
  background-color: maroon; /* Maroon color */
  background-image: url("20240123topbanner_gif_en.gif"); /* Ensure this path is correct */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-top-left-radius: 20px; /* Curved left border */
  border-bottom-left-radius: 20px; /* Curved left border */
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* Highlighted Product Section styles */
.highlighted-product {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  background-color: #f4f4f4;
  
  overflow: hidden;
  position: relative;
}

.highlighted-product .product {
  display: flex;
  align-items: center;
  transition: transform 1s ease-in-out;
  
  border: 1px solid black;
  opacity: 0;
  width: 80%; /* Increased width */
}

.highlighted-product .product.active {
  opacity: 1;
  transform: translateX(0);
}

.highlighted-product .product img {
  width: 400px;
  height: 400px;
  margin-right: 20px; /* Space between image and text */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

.highlighted-product .product .product-info {
  flex: 1;
}

/* Featured Products Section styles */
.featured-products {
  display: flex;
  justify-content: space-between;
  margin-left: 140px;
  margin-right: 140px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

.featured-product {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white; /* Add background color */
  padding: 20px;
  border: 1px solid black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
  transition: transform 0.3s ease; /* Add transition for hover effect */
}

.featured-product:hover {
  transform: translateY(-10px); /* Lift the product on hover */
}

.featured-product img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px; /* Add space below the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

.featured-product h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.featured-product p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.featured-product button {
  margin-top: 10px;
  padding: 10px 20px; /* Increase padding */
  cursor: pointer;
  background-color: black; /* Change background color */
  color: white;
  border: none;
  border-radius: 5px; /* Add border radius */
  transition: background-color 0.3s ease; /* Add transition for hover effect */
}

.featured-product button:hover {
  background-color: indianred; /* Change hover background color */
}

/* Trending Products Section styles */
.products-section {
  padding: 20px;
}

.products-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* Center the products */
}

.product {
  border: 1px solid #ccc;
  padding: 10px;
  width: 200px;
  text-align: center;
  background-color: white; /* Add background color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow */
  transition: transform 0.3s ease; /* Add transition for hover effect */
}

.product:hover {
  transform: translateY(-10px); /* Lift the product on hover */
}

.product img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px; /* Add space below the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

.product h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.product p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.product button {
  margin-top: 10px;
  padding: 10px 20px; /* Increase padding */
  cursor: pointer;
  background-color: black; /* Change background color */
  color: white;
  border: none;
  border-radius: 5px; /* Add border radius */
  transition: background-color 0.3s ease; /* Add transition for hover effect */
}

.product button:hover {
  background-color: indianred; /* Change hover background color */
}

/* Add this to your existing CSS file */
.product-details {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.product-details img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

.product-details button {
  margin-top: 10px;
  padding: 10px 20px; /* Increase padding */
  cursor: pointer;
  background-color: black; /* Change background color */
  color: white;
  border: none;
  border-radius: 5px; /* Add border radius */
  transition: background-color 0.3s ease; /* Add transition for hover effect */
}

.product-details button:hover {
  background-color: indianred; /* Change hover background color */
}

/* Cart modal styles */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  text-align: left;
}

.cart-modal-content h2 {
  margin-top: 0;
}

.cart-modal-content ul {
  list-style-type: none;
  padding: 0;
}

.cart-modal-content li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cart-item-image {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

.cart-item-info {
  flex: 1;
}

.cart-item-info p {
  margin: 0;
}

.cart-item-info button {
  background-color: black;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease; /* Add transition for hover effect */
}

.cart-item-info button:hover {
  background-color: indianred; /* Change hover background color */
}

.cart-modal-content button {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease; /* Add transition for hover effect */
}

.cart-modal-content button:hover {
  background-color: indianred; /* Change hover background color */
}

/* Notification styles */
.notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: #fff;
}

/* Rewards Section styles */
.rewards-section {
  padding: 20px;
  text-align: center;
}

.rewards-section h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.rewards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reward-column {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.reward-item {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  position: relative;
}

.reward-item:hover {
  transform: translateY(-10px);
}

.reward-item i {
  font-size: 24px;
  color: black;
  position: center;
  top: 10px;
  left: 10px;
}

.reward-item h6 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 30px; /* Add margin to accommodate the icon */
}

.reward-item p {
  font-size: 14px;
  color: #555;
}

.footer {
background-color: #f8f9fa;
padding: 40px 20px;
font-family: 'Segoe UI', sans-serif;
color: #333;
}

.footer-container {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: space-between;
}

.footer-section {
flex: 1 1 220px;
}

.footer-title {
font-weight: bold;
margin-bottom: 15px;
font-size: 16px;
text-transform: uppercase;
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
margin-bottom: 8px;
}

.footer-links a {
color: #555;
text-decoration: none;
}

.footer-links a:hover {
text-decoration: underline;
}

.social-icons a,
.footer-social a {
margin-right: 10px;
font-size: 20px;
color: #444;
}

.trustpilot-review {
display: block;
margin-top: 15px;
color: #000;
}

.newsletter-form input[type="email"] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
}

.gender-select {
display: flex;
gap: 20px;
margin-bottom: 10px;
}

.newsletter-form button {
width: 100%;
padding: 10px;
background-color: #000;
color: white;
border: none;
text-transform: uppercase;
cursor: pointer;
}

.footer-bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border-top: 1px solid #ccc;
margin-top: 30px;
padding-top: 20px;
}

.footer-brand {
display: flex;
align-items: center;
gap: 10px;
}

.theme-toggle {
display: flex;
align-items: center;
cursor: pointer;
font-size: 14px;
}

.footer-social {
display: flex;
gap: 10px;
}

.homereviews-con {
padding: 2rem 1rem;
background-color: #f8f9fa; /* Light background for contrast */
border-radius: 1rem;
}

.reviews-con-wrap {
background: #fff;
border-radius: 1rem;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
padding: 1.5rem;
transition: transform 0.3s ease;
height: 100%;
}

.reviews-con-wrap:hover {
transform: translateY(-5px);
}

.reviews-con-wrap .title {
font-weight: 600;
color: #333;
}

.reviews-p,
.reviews-p-copy {
color: #555;
line-height: 1.6;
}

.reviews-more-btn {
margin-top: 0.5rem;
font-style: italic;
}

.reviews-more-btn span {
font-weight: 500;
color: #007bff; /* Bootstrap theme color */
}

.bottom-p {
font-size: 0.9rem;
color: #6c757d;
}


/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .hero {
      flex-direction: column;
      height: auto;
  }

  .hero .hero-image {
      width: 100%;
      height: 300px;
      border-radius: 0;
  }

  .hero .hero-text {
      width: 100%;
      padding: 10px;
  }

  .highlighted-product .product img {
      width: 300px;
      height: 300px;
  }
}


@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
  }

  .navbar .nav-icons {
      margin-top: 10px;
  }

  .hero {
      padding: 20px;
  }

  .highlighted-product {
      flex-direction: column;
      height: auto;
  }

  .highlighted-product .product img {
      width: 100%;
      height: auto;
  }

  .featured-products {
      flex-direction: column;
  }

  .featured-product {
      width: 100%;
      margin-bottom: 20px;
  }

  .products-container {
      flex-direction: column;
  }

  .product {
      width: 100%;
      margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .navbar .logo {
      font-size: 20px;
  }

  .hero h1 {
      font-size: 24px;
  }

  .hero p {
      font-size: 16px;
  }

  .highlighted-product .product img {
      width: 100%;
      height: auto;
  }

  .featured-product img {
      width: 100%;
      height: auto;
  }

  .product img {
      width: 100%;
      height: auto;
  }
}