@font-face {
  font-family: 'Poppins-Regular';
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


html{
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: #fce8b1;
  overflow: hidden;
  overflow-x: hidden;
  font-family: 'Poppins-Regular', sans-serif;
  padding: 0;
  padding-bottom: 100px; /* adjust to footer height */
}

.line {
  font-size: 6em;
  white-space: nowrap;
  color: black;
  height: 0.8em;
  position: relative;
  font-weight: bold;
  z-index: 0;
}

.scroll-wrapper {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.scroll-left {
  animation: scrollLeft 60s linear infinite;
}

.scroll-right {
  animation: scrollRight 60s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Opacity levels for depth effect */
.opacity-20 { opacity: 0.2; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-100 { opacity: 1; }



#center-image-overlay {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none; /* Let text behind still be selectable/clickable */

}



/* Optional: style for image inside */
#center-image-overlay img {
  max-width: 300px;
  max-height: 300px;
  opacity: 1;
}



#container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Or use a specific height like 400px */
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: row;
}

.round-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:  #fee68d;
  color: black;
  font-size: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;  /* Remove underline */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.round-button:hover {
  background: rgba(237, 161, 40, 0.371);
  transform: scale(1.1);
}

.card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.card {
  width: 180px;
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  color: black;
  background-color: #ffffff; /* Slightly off-white background for cards */
  border-radius: 16px; 
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

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


@media (max-width: 450px) {
  .card-container {
    flex-direction: column;  /* Stack the items vertically */
    align-items: center;     /* Optionally center items */
  }
}


.product-card {
  background-color: white;
  width: 500px; 
  height: 60px;
  border-radius: 60px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden; /* Hide overflowed parts */
  transition: transform 0.3s ease-in-out;
  border: 3px solid white; /* Light border */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;

}

@media (max-width: 650px) {
  .product-card {
    width: 400px; /* Optionally center items */
  }
}
@media (max-width: 450px) {
  .product-card {
    width: 300px; /* Optionally center items */
  }
}




.product-card h3{
  font-size: 20px;
  font-weight:lighter;
  margin-left: 15px;
}

/* Hover effect on the product card */
.product-card:hover {
  background-color: #fce8b1;
  color: white;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Product Image */
.product-image{
  height: 50px; 
  width: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 5px;
}

/* Product Details */
.product-details {
  padding: 5px;
  text-align: center;
}

/* Product Name */
.product-name {
  font-size: 18px;
  font-weight: bolder;
  margin-top: 10px;
  padding: 5px;
}


.content {
  flex: 1;
  padding: 20px;
}



.shop-button {
  display: inline-block;
  background-color: white;
  color: #333;
  padding: 15px 60px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #eee;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



.chip-toggle-wrapper {
  display: flex;
  background-color: #8b7a73; /* faded dark background */
  border-radius: 40px;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 10px;
}

.chip-button {
  border: none;
  background: transparent;
  color: white;
  padding: 15px 35px;
  border-radius: 40px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chip-button.active {
  background-color: white;
  color: black;
}

.chip-button:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.content-wrapper {
  position: relative;
  min-height: 100px;
}

.chip-content {
  font-size: 1.4em;
  transition: opacity 0.4s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 1;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.shop-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
  text-decoration: none;
  color:#333;
}

.shop-card:hover {
  transform: translateY(-5px);
}

.shop-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.shop-card p {
  margin-top: 10px;
  font-size: 1em;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  color:#333;
}

@media (max-width: 580px) {
  .shop-card a {
    font-size: 0.8em;
  }
  .shop-card img {
    height: 150px;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Optional: Add a subtle gradient to the footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.03), transparent);
}
.footer {
  position: fixed;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1000;
  width: 100%;
}


.spacer{
 height: 500px;
 
}


@media (max-width: 500px) {
  .spacer {
    height: 400px;
  }

}

.fab {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: white;
  color: black;
  padding: 12px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: bounce 2s infinite;
  transition: background-color 0.3s ease;
}

.fab:hover {
  background-color: #0033b3;
}

.fab i {
  margin-right: 8px;
  font-size: 18px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Simple icon font using Unicode arrow */
.arrow-icon::before {
  content: "⬇️";
  display: inline-block;
}