* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #f2f2f2, #e6e6e6);
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: #625448;
  text-decoration: none;
}

nav {
  position: absolute;
  top: 20px;
  right: 20px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #625448;
  font-size: 14px;
}

.bg {
  width: 100%;
  height: 100vh;
  /* background: url("assets/images/img2-bg2.jpg") no-repeat center center/cover; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #625448;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1rem;
  width: 50%;
  margin: 0 auto;
}

#learn-more {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 15px 30px;
  border: none;
  border-radius: 28px;
  background-color: #c79288;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Hover fill effect contained within the button */
#learn-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(161, 109, 96, 0.8); /* Slightly darker shade */
  transition: width 0.5s ease-in-out;
  border-radius: 28px;
}

/* Keep text above the effect */
#learn-more span {
  position: relative;
  z-index: 1;
}

/* Expand background from left to right on hover */
#learn-more:hover::before {
  width: 100%;
}

.product-description {
  text-align: center;
  margin: 40px 10px;
  font-size: 1.5rem;
  color: #625448;
}

.feature-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  width: 90%;
  margin: 20px auto;
}

.product-feature {
  transition: transform 0.3s ease-in-out;
}

.product-feature a {
  display: block;  /* Make the entire link block-level, so the image and text are clickable */
  text-decoration: none;  /* Remove the default underline from the anchor */
  color: inherit;  /* Ensure the text color is inherited from the parent */
}

.product-feature img {
  width: 100%;
  display: block; /* Removes unwanted space below images */
  transition: transform 0.3s ease-in-out;
}

.product-feature a {
  border-radius: 10px;
  overflow: hidden;
}

.product-feature a:hover img {
  /* Slightly enlarge the image on hover */
  transform: scale(1.02);
}

.product-feature p {
  text-align: center;
  color: #625448; /* Default text color */
  margin: 5px 0px;
}

.product-feature:hover p.price {
  color: #c79288;  /* Change the text color when hovered */
}

.product-feature .price {
  text-align: center;
  color: #333;
}

.product-feature {
  position: relative;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
}

/* Content section (left image and right content) */
.content-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 50px auto;
}

.left-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.left-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.right-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.right-content h1 {
  font-size: 2.5rem;
  color: #625448;
}

.right-content p {
  font-size: 1rem;
  color: #625448;
}

/* For tablet */
@media (max-width: 1024px) {
  .content-section {
    flex-direction: column;
    text-align: center;
  }

  .left-image, .right-content {
    width: 100%;
  }

  .feature-block {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* For mobile */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    text-align: center;
  }

  .left-image, .right-content {
    width: 100%;
  }

  .feature-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-feature {
    width: 100%;
  }

  /* If we have a single column layout on mobile devices, ensure no scaling */
  .feature-block {
    flex-direction: column;
  }

  .product-feature {
    width: 100%;  /* Make the product feature block full width on smaller screens */
  }
}

@media (max-width: 500px) {
  .feature-block {
    grid-template-columns: 1fr;
  }

  .product-feature {
    width: 100%;
  }
}


/* Footer */
.footer {
  text-align: center;
  background-color: #5a4a3c; /* Adjust to match your theme */
  color: white;
  padding: 20px;
}

footer p{
  margin: 10px 0px 5px 0px;
}

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between icons */
  flex-wrap: wrap; /* Ensures proper wrapping on small screens */
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.contact-item img {
  width: 30px;
  height: 30px;
  border-radius: 50%; /* Ensures circular icons */
}

.social-icon {
  font-size: 30px; /* Size of the icon */
  margin: 10px; /* Space between the icons */
  text-decoration: none; /* Remove underline */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effects */
.social-icon:hover {
  transform: scale(1.2); /* Slight zoom on hover */
}

.candles-grid-wrapper{
  margin: 0 auto !important;
  width: 93% !important;
}


/* Full-screen overlay */
#vaasam-consent-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Centered content */
.consent-content {
  background: #fff;
  padding: 30px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Headline */
.consent-content h2 {
  color: #625448;
  font-size: 24px;
  margin-bottom: 15px;
}

/* Description */
.consent-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

/* Accept button */
#accept-consent-btn {
  position: relative;
  padding: 12px 20px;
  background: #c79288;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Create the hover fill effect */
#accept-consent-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #a16d60;  /* Darker shade for hover */
  transition: width 0.4s ease-in-out;
  z-index: 0;
}

/* Ensuring the text stays visible */
#accept-consent-btn span {
  position: relative;
  z-index: 1;
}

/* Expand background from left to right on hover */
#accept-consent-btn:hover::before {
  width: 100%;
}

/* Hide banner when accepted */
.hide {
  display: none !important;
}
