@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

html{
    scroll-behavior: smooth;
}

@media only screen and (min-width: 768px) {


/* Hide expandable content by default */

#welcome-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 75vh; /* give some height */
  background: url('pill.jpg') no-repeat center center/cover;
  background-attachment: fixed; /* makes background "move" slower than scroll */
  text-align: center;
}

#welcome-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: background-position 0.2s linear;
}

.welcome-container {
  background: transparent; /* translucent glass */
  color: #010101;
  max-width: 700px;
  padding: 40px 20px;

}


.welcome-container h1 {
  font-size: 3rem;
  color: #c4c4c4;
  text-shadow: #000000 2px 2px 4px;
  margin-bottom: 40px;
  padding: 14px 20px;
    opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;

}

.welcome-container p {
  font-size: 1.2rem;
    padding: 14px 20px;
      margin-bottom: 40px;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  color: #181111;
}

.welcome-container h1,
.welcome-container p,
.welcome-container a {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.welcome-container.visible h1,
.welcome-container.visible p,
.welcome-container.visible a {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.welcome-container.visible h1 { transition-delay: 0.5s; }
.welcome-container.visible p { transition-delay: 1s; }
.welcome-container.visible a { transition-delay: 1.5s; }

.shop-now-btn {
    opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-decoration: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  background: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px #000000;
}

.shop-now-btn:hover {
  box-shadow: 0 5px 10px #6f5c5c;
  background: #000000;
  color: #ffecec;
}

.topnav {      
  position: fixed;       /* Fixed so it stays visible */
  bottom: 20px;          /* Position near bottom */
  right: 20px;           /* Move it to the right corner */
  background-color: transparent;
  z-index: 1000;
}

.up {
  border: 0.1rem solid black;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  text-decoration: none;
  box-shadow: #7b7f7c 0px 0px 10px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.up:hover {
  background-color: black;
  color: white;
  box-shadow: 0px 0px 15px #555;
}

.menu-icon{
  display: none;
}

.topnav a:hover {
  background: rgba(255, 255, 255, 0.15); /* translucent white */
  border: 1px solid rgba(255, 255, 255, 0.25); /* soft border */
  backdrop-filter: blur(6px) saturate(150%); /* glass/frosted look */
  -webkit-backdrop-filter: blur(6px) saturate(150%); /* Safari support */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* subtle depth */
  color: #151212; /* keep text white for contrast */
  transition: all 0.3s ease;
  font-weight: 600;
}



header {
    display: flex;
    justify-content: space-between;
    height: 50px;
    position: absolute;
    width: 100%;
    z-index: 50;
}
header h1 {
    font-size: 10px;
    color: white;
}

header nav {
  width: 100%;
  display: flex;
  gap: 6px;
  padding: 15px 20px;
}

#mobileMenu {
  text-decoration: none;
  padding: 8px 0px;
  color: white;
  transition: all 0.3s ease-in-out;
}

#mobileMenu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  color: white;
  background: rgba(18, 7, 7, 0.15);
  border: 1px solid rgba(1, 0, 0, 0.25);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#mobileMenu a:hover {
  color: #4ded5d;
}

#authControl{
 text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  color: white;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(1, 0, 0, 0.25);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#authControl:hover {
  color: #91fe91;
  transform: translateX(52px);
}

.dropdown-content a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  color: white;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}



#profile {
    display: block;

    text-align: center;
  color: #ffffff;
  padding: 8px 16px;
  transform: translateY(-2px);
}

/* Wrapper */
.dropdown {
  padding: 8px 3px;
  position: relative;
  display: inline-block;
}

/* Username (or login link) */



.dropdown-content {
    margin-top: 6%;

  display: none;
  position: absolute;
  right: 0;
  background: transparent;
  min-width: 160px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  z-index: 1;
  overflow: hidden;
}

/* Shared button style */
.dropdown-content button {
  width: 100%;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}


/* Logout (danger action) */
#logoutBtn {
 text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 99px;
  color: white;
    background: rgba(231, 39, 39, 0.987);

  border: 1px solid rgba(1, 0, 0, 0.25);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#logoutBtn:hover {
  background: rgb(215, 35, 35);
}

/* Show dropdown ONLY if the .dropdown has class 'active' and is hovered */
.dropdown.active:hover .dropdown-content {
  display: block;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}



#home {
    display: flex;
    height: 65dvh;
    background: linear-gradient(to top, #D2E2FB 30%, #86A8DB);
    position: relative;
    overflow: hidden;
}



#home img {
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

#home .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 80px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}


body{
    margin: 0;
    font-family: Poppins;
}
#container{
    width: 100wh;
    margin: auto;
    text-align: center;
    padding-top: 5px;
    transition: transform .5s;
}
svg{
    width: 30px;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.icon-cart{
    display: flex;
    position: absolute;
    cursor: pointer;
    right: 2%;
     text-decoration: none;
  font-size: 14px;
  padding: 10px;
  border-radius: 99px;
  color: white;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(1, 0, 0, 0.25);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.icon-cart span{
    position: absolute;
    background-color: red;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    right: -20px;
    
}
.title{
    font-size: xx-large;
}

.product-buttons {
  display: flex;
  gap: 10px; /* space between buttons */
  justify-content: center; /* center them under product */
  margin-top: 10px;
    width: 20%;

}

.product-buttons .addCart,
.product-buttons .see {
  flex: 1; /* optional: make buttons same width */
  display: flex;
  align-items: center;
  justify-content: center;
}

.item .see {
  opacity: 0;
  background-color: black;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  color: #000;
}

.item:hover .see{
  opacity: 1;
  background-color: #d5dcd7;
}
.item:hover  .see img {
  display: flex;

}

.item .see img {
  display: flex;
  width: 18px;
  height: 18px;
  filter: invert(66%) sepia(81%) saturate(2013%) hue-rotate(161deg)
    brightness(96%) contrast(99%);
  transition: 0.3s;
}

.item .see:hover img {
  color: #000;
  display: flex;
}

.listProduct .item img {
    display: none;
    width: 90%;
    filter: drop-shadow(0 15px 15px #0009);
    transition: width 0.3s ease, filter 0.3s ease; /* Add transition for smooth effect */
}

.listProduct .item img:hover {

    width: 100%; /* Increase width on hover */
}



.listProduct{
    max-width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 50px;
    padding: 60px 80px;
    opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.listProduct.visible {
  opacity: 1;
  transform: translateY(0);
}

.listProduct .item{
    background-color: #e8e8ea9d;
    box-shadow: inset 0px -5px 10px #0003;
    padding: 18px;
    height: 90%;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.listProduct .item:hover {
  transform: translateY(-5px);
    box-shadow: inset 10px -5px 10px #0003;
}

.listProduct .item h2{
    font-weight: 500;
    font-size: large;
    margin: 5px 0; /* Add margin for better spacing */
}

.listProduct .item .price{
    letter-spacing: 7px;
    font-size: small;
}
.item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.4s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.show-more-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 25px;
  background: #353432;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.show-more-btn:hover {
  background: #00ffaa;
  color: #000;
}

.filter-buttons {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.filter-buttons.visible {
  opacity: 0;
  transform: translateY(0);
}

.filter-btn {
  background: #353432;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 8px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.filter-btn:hover {
  background: #00ffaa;
  color: #000;
}

.filter-btn.active {
  background: #00ffaa;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 255, 170, 0.4);
}

/* --- PRODUCT POPUP (Glassmorphism) --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay behind glass */
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.popup-content {
  background: rgba(255, 255, 255, 0.08); /* translucent glass */
  border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
  border-radius: 25px;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); /* subtle depth */
  backdrop-filter: blur(15px); /* main blur */
  -webkit-backdrop-filter: blur(15px); /* Safari support */
  animation: popupFade 0.4s ease;
  cursor: default; /* prevent closing when clicking inside */
}

.popup-content img {
  width: 140px;
  height: 140px;
  border-radius: 15px;
  margin-bottom: 15px;
  object-fit: contain;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4); /* lifted effect */
  transition: transform 0.3s ease;
}

.popup-content img:hover {
  transform: scale(1.05);
}

.popup-content h2 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #ffffff;
}

.popup-content p {
  color: #eee;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.popup-content #popupPrice {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

#popupAddCart {
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px #000000;
}

#popupAddCart:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0px 6px #ffffff;
  color: #000;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  color: white;
  cursor: pointer;
  transition: color 0.3s;
}

.close-popup:hover {
  color: #00ffaa;
}

/* Fade animation */
@keyframes popupFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}





.features-section {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 40px 40px;
  background: #ffffff;
  border-radius: 150px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1300px;
  margin-top: -50px;
  z-index: 10;
  position: relative;
}

.feature {
  display: flex;
  align-items: center;
  flex: 1 1 250px;
  padding: 0px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  gap: 30px;

}

.feature:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background: #e8f0ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.icon-circle.light-green {
  background: #e6f8ee;
}

.icon-circle.peach {
  background: #fff0eb;
}

.icon-circle.yellow {
  background: #fffce6;
}

.feature-text h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #111;
  font-weight: 700;
}

.feature-text p {
  margin-top: 5px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}



/* Hide button initially */
.item .addCart {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

/* Show button only on hover */
.item:hover .addCart {
  opacity: 1;
  transform: translateY(0);
}

/* Optional hover effect for button */
.addCart:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #000;
}


/* Base button style for product buttons */
.listProduct .item button {
    position: relative;
    overflow: hidden; /* Ensures ripple effect stays contained */
    background-color: #353432;
    color: #eee;
    border: none;
    padding: 8px 8px;
    margin-top: 8px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

/* Click Effect: Slight scale-up and glow */
.listProduct .item button:active {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

/* Ripple Animation */
@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
    
    .cart-item {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}

/* --- Overlay Background --- */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 99999; /* behind cartTab but above all content */
}

body.showCart .cart-overlay {
  opacity: 1;
  visibility: visible;
}

/* --- Cart Panel --- */
.cartTab {
  width: 400px;
  max-width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -500px;
  display: grid;
  grid-template-rows: 75px 1fr 70px;
  z-index: 100000;

  /* Glass effect core */
  background: rgba(40, 40, 40, 0.35); /* lighter, more transparent */
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border-left: 1px solid rgba(255, 255, 255, 0.15);

  /* Visual polish */
  color: #f3f3f3;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.4);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: right 0.5s ease-in-out, background 0.3s ease;
}

.cartTab h1 {
  margin: 0;
  padding: 20px;
  font-weight: 400;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  text-align: center;
  color: #fff;
}

/* Top-right X button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  border: none;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #ffffff;
}

.cartTab .close-btn {
  border: none;
  color: #ffffff;
  background-color: transparent;
  font-size: 2rem;
}

.cartTab .checkOut{
  color: #f5f5f5;
  border: 1px solid #0f0909;
  box-shadow: 10px 10px 20px #000000;
}

body.showCart .cartTab {
  right: 0;
}

body.showCart .container {
  transform: translateX(-250px);
  transition: transform 0.5s ease-in-out;
}

/* --- Cart Header --- */
.cartTab h1 {
  margin: 0;
  text-align: center;
  padding: 20px;
  font-weight: 400;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Cart Buttons --- */
.cartTab .btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  cursor: pointer;
}

.cartTab button {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Poppins", sans-serif;
  color: white;
  font-weight: 500;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 12px 0;
  transition: 0.3s;
}

.cartTab button:hover {
  filter: brightness(1.1);
}


/* --- Cart List --- */
.listCart {
  overflow-y: auto;
  scrollbar-width: none;
}

.listCart::-webkit-scrollbar {
  width: 0;
}

.listCart .item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 15px;
  text-align: left;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.listCart .item img {
  width: 70px;
  height: auto;
  border-radius: 5px;
}

.listCart .item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* --- Quantity Controls --- */
.listCart .quantity span {
  display: inline-block;
  width: 25px;
  height: 25px;
  font-size: 16px;
  text-align: center;
  line-height: 25px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.listCart .quantity span:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.listCart .quantity span:nth-child(2) {
  background-color: transparent;
  color: #eee;
  cursor: default;
}

.clear-product {
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  color: #040303;
  border: 1px solid #0f0909;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-product img {
  width: 14px;
  height: 14px;
  padding: 5px;
  color: #000;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(74%) saturate(3451%) hue-rotate(331deg) brightness(100%) contrast(101%);
  transition: 0.3s ease;
}

.clear-product:hover {
  background-color: #ff6666;
  color: #fff;
}

.clear-product:hover img {
  filter: brightness(100%) invert(1);
  color: #000;
}


.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 100px auto;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.faq-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2b1f1f;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Each question */
.faq-item {
  border-radius: 15px;
  overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
}


.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  transition: all 0.7s ease;
}

.faq-answer p {
  margin: 15px 0 20px 0;
  color: #000000;
  line-height: 0.6s ease;
}

/* When active (open) */
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}



.mia{
    color: rgb(255, 255, 255);
    background-color: rgb(49, 49, 49);
    padding-left: 600px;
    padding-top: 70px;
    width: 300px;
}


/* CONTACT SECTION */
#contact {
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 17px 5px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Horizontal container with 3 columns */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 30px;
}

/* Shared glass card style */
.contact-info, .contact-form, .map-container {
    height: auto;
  flex: 1;
  background: rgba(0, 0, 0, 0.08);
  border: 0.1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-info:hover,
.contact-form:hover,
.map-container:hover {
  background: rgba(61, 61, 61, 0);
  box-shadow: 0 6px 25px rgba(112, 112, 112, 0.3);

  transform: translateY(-1px);
}

/* Left: Info */
.contact-heading {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
}
.contact-details {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ddd;
}
.contact-details li strong { color: #fff; }

/* Middle: Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.input, #msg {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  width: 100%;
  outline: none;
}
.input:focus, #msg:focus {
  background: rgba(255, 255, 255, 0.2);
}
#send {
  align-self: flex-start;
  background: #00ffaa;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#send:hover {
  background: #fff;
  box-shadow: 0 0 15px #00ffaa;
}

/* Right: Map */
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 15px;
  border: none;
  filter: brightness(90%) saturate(110%);
  transition: all 0.4s ease;
}
.map-container:hover iframe {
  filter: brightness(100%) saturate(120%);
  transform: scale(1.01);
}

/* SOCIAL ICONS */
.oi {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.oi a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  border-radius: 50%;
  color: #00ffaa;
  transition: all 0.4s ease;
  font-size: 18px;
  background: linear-gradient(to top, #00ffaa 50%, transparent 50%);
  background-size: 100% 200%;
}
.oi a:hover {
  background-position: bottom;
  color: #000;
  border: none;
  box-shadow: 0 0 20px #00ffaa;
}



/*search bar*/
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Adjust width as needed */
    margin: 30px auto; /* Center the search bar horizontally */
}

#search-input {
    padding: 10px;
    width: 26%; /* Take remaining space */
    border: 2px solid #ccc;
    border-radius: 20px; /* Rounded corners on the left */
    font-size: 20px;
}

#search-button {
    display: none;
    padding: 14px;
    border-radius: 20px;
    background-color: #007bff; /* Blue color, adjust as needed */
    color: #fff;
    border-radius: 14px 14px 14px 14px; /* Rounded corners on the right */
    cursor: pointer;
    font-size: 14px;
}

/* Hover effect for button */
#search-button:hover {
    background-color: #0056b3; /* Darker shade of blue on hover */
}

/* Focus style for input */
#search-input:focus {
    outline: none; /* Remove default focus outline */
    border-color: #007bff; /* Change border color on focus */
}

/* --- Modal Overlay --- */
.modal {
    display: none; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background: rgba(0, 0, 0, 0.6); /* dark semi-transparent background */
    backdrop-filter: blur(8px);
    z-index: 2000000;
    padding-top: 60px; 
    color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Modal Content --- */
.modal-content {
    display: none; /* hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1); /* translucent glass */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000001;
    animation: fadeIn 0.3s ease;
}

/* --- Close Button --- */
.close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.close:hover,
.close:focus {
    color: #00ffaa; /* accent color */
    text-decoration: none;
}

/* --- Cart Item Styling --- */
.cart-item {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

/* --- Checkout Form --- */
#checkoutForm {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#checkoutForm label {
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

#checkoutForm input {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: background 0.3s ease, border 0.3s ease;
}
#checkoutForm input:focus {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #00ffaa;
}

/* --- Submit Button --- */
#checkoutForm button {
    padding: 10px;
    margin-top: 10px;
    background-color: #00ffaa;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#checkoutForm button:hover {
    background-color: #fff;
    box-shadow: 0 0 15px #00ffaa;
}


.lifestyle-section {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
    background: url('boo.jpg') no-repeat center center/cover;
  color: #000000;
}

.lifestyle-heading {
  font-size: 32px;
  margin-bottom: 15px;
  text-align: center;
}

.intro-text {
  max-width: 700px;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.6;
}



.tp-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  overflow: hidden;
}


.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 45px;
  width: 100%;
  max-width: 1250px;
      opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.5s ease, transform 1s ease;
}

.lifestyle-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.tp-box:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.tp-box h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.short-text {
  color: #000000;
  margin-bottom: 10px;
}

.expandable {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  color: #4a4a4a;
}

.tp-box.active .expandable {
  max-height: 200px; /* Expand height for details */
  opacity: 1;
  margin-top: 10px;
}

.expandable p {
  margin: 6px 0;
  line-height: 1.5;
}

.closing-note {
  text-align: center;
  font-style: italic;
  color: #000000;
  margin-top: 50px;
  max-width: 600px;
  line-height: 1.6;
}
}

@media only screen and (min-width: 768px) and (max-width: 1524px) {
  /* CSS rules for screens within the tablet range */
  
.features-section {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 15px 40px;
  background: #ffffff;
  border-radius: 90px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1000px;
  margin-top: -50px;
  z-index: 10;
  position: relative;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1 1 250px;
  padding: 0px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background: #e8f0ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.icon-circle.light-green {
  background: #e6f8ee;
}

.icon-circle.peach {
  background: #fff0eb;
}

.icon-circle.yellow {
  background: #fffce6;
}

.feature-text h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #111;
  font-weight: 700;
}

.feature-text p {
  margin-top: 5px;
  font-size: 0.90rem;
  color: #555;
  line-height: 1.4;
}


#welcome-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 75vh; /* give some height */
  background: url('pill.jpg') no-repeat center center/cover;
  text-align: center;
}

#welcome-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: background-position 0.2s linear;
}

.welcome-container {
  background: transparent; /* translucent glass */
  color: #010101;
  max-width: 700px;
  padding: 40px 20px;
}

.welcome-container h1 {
  border: none;
  font-size: 3rem;
  color: #000000;
  margin-bottom: 350px;
  text-shadow: 0 2px 10px rgba(0, 255, 170, 0.3);
}

.welcome-container p {
  font-size: 1.2rem;
    padding: 14px 20px;

  color: #181111;
}

.shop-now-btn {
  text-decoration: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  background: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px #000000;
}

.shop-now-btn:hover {
  box-shadow: 0 5px 10px #6f5c5c;
  background: #000000;
  color: #ffecec;
}
.filter-btn{
  margin-bottom: 20px;
}


.product-buttons {
  bottom: 0;
  display: flex;
  gap: 10px; /* space between buttons */
  margin-top: 10px;
  width: 100%; /* full width for flexibility */
  align-items: center;
  text-align: center;
}

/* Add to Cart button */
.product-buttons .addCart {
  width: auto;
  height: auto;
  color: #000;
  background-color: #00ffaa;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
 
}



/* See button (circular) */
.product-buttons .see {
  width: auto;
  height: auto;
  display: block;
  align-items: center;
  justify-content: center;
  background-color: black;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lifestyle-section {
    margin-top: 80px;
    padding: 0px 80px;
    text-align: center;
    background: transparent;
    color: rgb(0, 0, 0);
    overflow: hidden;
        background: url('boo.jpg') no-repeat center center/cover;
            opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .lifestyle-section.visible {
    opacity: 0;
    transform: translateY(0);
  }

      .search-container {
        display: flex;
        align-items: center;
        width: 100%; /* Adjust width as needed */
        margin: 0 auto; /* Center the search bar horizontally */
        padding-top: 110px;
    }
}




/* mobile */
@media only screen and (max-width: 768px) {

  #profile{
    width: 100%;
    display: flex;
    border: none;
  }
  #profile:hover{
    background-color: #000;
    background: transparent;
  }


/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
    font-size: 15px;
    font-weight: 300;
  position: absolute;
  top: 90%; /* below the username */
  right: 0;
  margin-top: 6px;
  min-width: 50px;

  /* Glassmorphism background */
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px) saturate(160%);
  -webkit-backdrop-filter: blur(100px) saturate(160%);

  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  z-index: 10;
  text-align: center;
  overflow: hidden;

  animation: fadeIn 0.2s ease-in-out;
}

/* Shared button style */
.dropdown-content button {
  width: 100%;
  border: none;
  padding: 7px 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}



/* Logout (danger action) */
#logoutBtn {
  color: #eb1616;
}
expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tp-box.active .expandable {
  max-height: 500px; /* large enough to show content */
}


/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown.active:hover .dropdown-content {
  display: block;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}


#welcome-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55vh; /* give some height */
  background: url('pill.jpg') no-repeat center center/cover;
  text-align: center;
}

#welcome-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: background-position 0.2s linear;
}



.welcome-container h1 {
  font-size: 2.1rem;
  color: #000000;
  margin-bottom: 130px;
  text-shadow: 0 2px 10px rgba(0, 255, 170, 0.3);
      opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.welcome-container p {
  font-size: 1rem;
  padding: 14px 20px;
  color: #181111;
      opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.welcome-container h1,
.welcome-container p,
.welcome-container a {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.welcome-container.visible h1,
.welcome-container.visible p,
.welcome-container.visible a {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.welcome-container.visible h1 { transition-delay: 0.5s; }
.welcome-container.visible p { transition-delay: 1s; }
.welcome-container.visible a { transition-delay: 1.5s; }

.shop-now-btn {
  text-decoration: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  background: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px #000000;
}

.shop-now-btn:hover {
  box-shadow: 0 5px 10px #6f5c5c;

  background: #000000;
  color: #ffecec;
}





.topnav{      
  position: fixed;       /* Stays at top */
  top: 90%;
  width: 96%;
  background-color: transparent; /* Dark background */
  color: rgb(161, 141, 141);              /* White text */
  text-align: right;        /* Centered text */
  z-index: 1000;             /* Ensure it stays on top of other elements */
}


.up{
    border: 0.1rem solid black;
    border-radius: 10px;
    padding: 1rem;
    text-decoration: none;
    box-shadow: #7b7f7c 0px 0px 10px;
      transition: all 0.3s ease;

}


.up:hover {
  background-color: black;
  color: white;
  box-shadow: 0px 0px 15px #555;
}


header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0rem 1rem;
  }

  .menu-icon svg {
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: rgb(0, 0, 0);
  }

  /* --- Mobile Menu (Glassy Blur) --- */
  .mobile-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: auto;
    height: auto;
    border-radius: 20px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    padding: 0rem 1.2rem;
    transition: left 0.4s ease;
  }


  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    transition: 0.3s;
  }



  .mobile-menu.open {
    left: 0;
  }

  /* --- Dropdown --- */
  .dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 0.6rem 4rem;
    width: auto;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 2.5rem;
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: 0.5rem 1rem;
  }

  .dropdown:hover .dropdown-content {
    display: block;
    top: 70%;
      padding: 0 3.5rem;

  }

  .dropdown-content a,
  .dropdown-content button {
    color: white;
    display: block;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0.6rem;
  }

  .heading{
    display: none;
  }

  .show-more-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 25px;
  background: #353432;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.show-more-btn:hover {
  background: #00ffaa;
  color: #000;
}


  #authControl{
    text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 10px;
      border-radius: 99px;
      border-radius: 99px;
      color: white;
      background: rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(1, 0, 0, 0.25);
      backdrop-filter: blur(6px) saturate(150%);
      -webkit-backdrop-filter: blur(6px) saturate(150%);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* --- Cart Icon --- */
  .icon-cart {
    position: absolute;
    display: flex;
    cursor: pointer;
        text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 10px;
      border-radius: 99px;
      color: white;
      background: rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(1, 0, 0, 0.25);
      backdrop-filter: blur(6px) saturate(150%);
      -webkit-backdrop-filter: blur(6px) saturate(150%);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .icon-cart svg {
    width: 24px;
    height: 24px;
    color: rgb(22, 19, 19);

  }

  .icon-cart span {
    position: absolute;
    top: -5px;
    right: -10px;
    background: crimson;
    color: white;
    border-radius: 50%;
    padding: 0 5px;
    font-size: 0.7rem;
  }

  /* Hide menu links on desktop */




    
    
    #home {
        display: flex;
        height: 53dvh;
        background: linear-gradient(to top, #D2E2FB 30%, #86A8DB);
        position: relative;
        overflow: hidden;
    }
    
    #home img {
        position: absolute;
        bottom: 0;
        width: 100%;
        pointer-events: none;
    }
    
    #home .title {
        position: absolute;
        color: rgb(126, 145, 184);
        font-size: 34px;
        padding-top: 120px;
        padding-left: 70px;
    }
    
    
    body{
        margin: 0;
        font-family: Poppins;
    }
    #container{
        width: 100%;
        margin: auto;
        max-width: 90vw;
        text-align: center;
        padding-top: 5px;
        transition: transform .5s;
    }

    svg{
        width: 30px;
    }
    header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }
    .icon-cart{
        position: absolute;
        display: flex;
        cursor: pointer;
        right: 5%;
        top: 30%;
    
    }
    .icon-cart span{
        position: absolute;
        background-color: red;
        width: 15px;
        height: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20%;
        color: #fff;
        right: -20px;
        
    }
    .title{
        font-size: xx-large;
    }



.features-section {
  width: 93%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);  
  flex-direction: row;
  overflow: hidden;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 1px auto;
  margin-top: -48px; /* controls how much overlaps the previous section */
  z-index: 5;
}

.feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background: #e8f0ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 20px;
  height: 20px;
}

.icon-circle.light-green {
  background: #e6f8ee;
}

.icon-circle.peach {
  background: #fff0eb;
}

.icon-circle.yellow {
  background: #fffce6;
}

.feature-text h3 {
  margin: 0;
  font-size: 0.90rem;
  color: #111;
  font-weight: 700;
}

.feature-text p {
  display: none;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1;
}





.filter-buttons {
  text-align: center;
  padding: 33px 0;
  
}

.filter-btn {
  background: #353432;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 8px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  
}

.filter-btn:hover {
  background: #00ffaa;
  color: #000;
}

.filter-btn.active {
  background: #00ffaa;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 255, 170, 0.4);
}


/* --- PRODUCT POPUP --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  animation: popupFade 0.4s ease;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.popup-content img {
  width: 140px;
  height: 140px;
  border-radius: 15px;
  margin-bottom: 15px;
  object-fit: contain;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
  font-size: 1.4rem;
  margin: 10px 0;
  color: #00ffaa;
}

.popup-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.popup-content #popupPrice {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

#popupAddCart {
  background: #00ffaa;
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

#popupAddCart:hover {
  background: #fff;
  box-shadow: 0 0 20px #00ffaa;
}

/* Close button */
.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  color: white;
  cursor: pointer;
  transition: color 0.3s;
}

.close-popup:hover {
  color: #00ffaa;
}

.product-buttons {
  display: flex;
  gap: 10px; /* space between buttons */
  margin-top: 10px;
  width: 100%; /* full width for flexibility */
  align-items: center;
  text-align: center;
}

/* Add to Cart button */
.product-buttons .addCart {
  width: auto;
  height: auto;
  color: #000;
  background-color: #00ffaa;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
 
}



/* See button (circular) */
.product-buttons .see {
  width: 45px;
  height: 35px;
  display: block;
  align-items: center;
  justify-content: center;
  background-color: black;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Image inside see button */
.product-buttons .see img {
  width: 18px;
  display: block;
  transition: all 0.3s ease;
  justify-content: center;
  text-align: center;
  align-items: center;
}




.lifestyle-section {
    margin-top: 80px;
    text-align: center;
    background: transparent;
    color: rgb(0, 0, 0);
    overflow: hidden;
        background: url('boo.jpg') no-repeat center center/cover;
        transition: all 0.3s ease;
  }

  .lifestyle-heading {
    font-size: 2rem;
  }

  .intro-text {
    color: #0a0606;
    margin-bottom: 3rem;
    font-size: 1rem;
  }

  /* --- Horizontal Slow Scroll --- */
  .lifestyle-grid {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll-left 130s linear infinite;
  }

  .lifestyle-section:hover .lifestyle-grid {
    animation-play-state: paused;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .tp-box {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .tp-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
  }

  .tp-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .short-text {
    font-size: 0.95rem;
    color: #080505;
  }

  .expandable {
    display: none;
    margin-top: 0.5rem;
    text-align: left;
    font-size: 0.9rem;
  }

  .tp-box.active .expandable {
    display: block;
  }

  .closing-note {
    margin-top: 5rem;
    font-style: italic;
    color: #100808;
  }




/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin-bottom: 100px;
  padding: 50px 20px;
  color: #fff;
}

.faq-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2b1f1f;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Each question */
.faq-item {
  padding: 2px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  border: none;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 2px 0px rgba(0, 3, 3, 0.3);
}



.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  transition: all 0.7s ease;
}

.faq-answer p {
  margin: 15px 0 20px 0;
  color: #000000;
  line-height: 0.6s ease;
}

/* When active (open) */
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* CONTACT SECTION */
#contact {
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 17px 5px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Horizontal container with 3 columns */
.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 10px;
}

.contact-form{
    height: auto;
  flex: 1;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.map-container{
  display: none;
}

/* Shared glass card style */
.contact-info {
  height: auto;
  flex: 1;
  background: rgba(0, 0, 0, 0.08);

  padding: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-info:hover,
.contact-form:hover,
.map-container:hover {
  background: rgba(61, 61, 61, 0);
  box-shadow: 0 6px 25px rgba(112, 112, 112, 0.3);

  transform: translateY(-1px);
}

/* Left: Info */
.contact-heading {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
}
.contact-details {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ddd;
}
.contact-details li strong { color: #fff; }

/* Middle: Form */
.form {
  display: flex;
  flex-direction: column;
}

.input, #msg {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 3px;
  font-size: 1rem;
  width: 100%;
  outline: none;
}
.input:focus, #msg:focus {
  background: rgba(255, 255, 255, 0.2);
}
#send {
  align-self: flex-start;
  background: #00ffaa;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#send:hover {
  background: #fff;
  box-shadow: 0 0 15px #00ffaa;
}

/* Right: Map */
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 15px;
  border: none;
  filter: brightness(90%) saturate(110%);
  transition: all 0.4s ease;
}
.map-container:hover iframe {
  filter: brightness(100%) saturate(120%);
  transform: scale(1.01);
}

/* SOCIAL ICONS */
.oi {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.oi a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  border-radius: 50%;
  color: #00ffaa;
  transition: all 0.4s ease;
  font-size: 18px;
  background: linear-gradient(to top, #00ffaa 50%, transparent 50%);
  background-size: 100% 200%;
}
.oi a:hover {
  background-position: bottom;
  color: #000;
  border: none;
  box-shadow: 0 0 20px #00ffaa;
}



    
    .listProduct .item img {
        display: none;
        width: 46%;
        filter: drop-shadow(0 15px 15px #0009);
        transition: width 0.3s ease, filter 0.3s ease; /* Add transition for smooth effect */
    }
    
    .listProduct .item img:hover {
        width: 55%; /* Increase width on hover */
    }
    
    .listProduct{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 20px;
    opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .listProduct.visible{
        opacity: 1;
  transform: translateY(0);
    }
    
    .listProduct .item{
        background-color: #EEEEE6;
        margin-bottom: 30px; /* Add margin-bottom to create space between items */
        padding: 20px;
        border-radius: 10%;
        transition: all 0.3s ease;
    }

    .listProduct .item:hover{
        transform: translateY(-2px);
    }
    .listProduct .item h4{
        margin: 5px 0; /* Add margin for better spacing */
        padding-top: 7px;
    }
    .listProduct .item h2{
        font-weight: 500;
        font-size: medium;
        margin: 1px 0; /* Add margin for better spacing */
        padding-bottom: 5px;
    }
    .listProduct .item .price{
        letter-spacing: 6px;
        font-size: small;
    }
    /* Button styling */
    /* Base button style for product buttons */
    .listProduct .item button {
        position: relative;
        overflow: hidden; /* Ensures ripple effect stays contained */
        background-color: #353432;
        color: #eee;
        border: none;
        padding: 10px 15px;
        margin-top: 8px;
        border-radius: 15px;
        cursor: pointer;
        font-size: 1rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
    }
    
    /* Click Effect: Slight scale-up and glow */
    .listProduct .item button:active {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
    
    /* Ripple Effect */
    .ripple {
        position: absolute;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: scale(0);
        animation: ripple-effect 0.6s linear;
        pointer-events: none;
    }
    
    /* Ripple Animation */
    @keyframes ripple-effect {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }
    
    .cart-item {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}

/* --- Overlay Background --- */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 99999; /* behind cartTab but above all content */
}

body.showCart .cart-overlay {
  opacity: 1;
  visibility: visible;
}

/* --- Cart Panel --- */
.cartTab {
  width: 400px;
  max-width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -500px;
  display: grid;
  grid-template-rows: 75px 1fr 70px;
  z-index: 100000;

  /* Glass effect core */
  background: rgba(40, 40, 40, 0.35); /* lighter, more transparent */
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border-left: 1px solid rgba(255, 255, 255, 0.15);

  /* Visual polish */
  color: #f3f3f3;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.4);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: right 0.5s ease-in-out, background 0.3s ease;
}

body.showCart .cartTab {
  right: 0;
}

body.showCart .container {
  transform: translateX(-250px);
  transition: transform 0.5s ease-in-out;
}

/* --- Cart Header --- */
.cartTab h1 {
  margin: 0;
  text-align: center;
  padding: 20px;
  font-weight: 400;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* Top-right X button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  border: none;
  font-size: 5rem;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #8f8d8d;
}
/* --- Cart Buttons --- */
.cartTab .btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  cursor: pointer;
}

.cartTab button {
  background-color: transparent;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 12px 0;
  transition: 0.3s;
}

.cartTab button:hover {
  filter: brightness(1.1);
}

.cartTab .close-btn {
  color: #ffffff;
  background-color: transparent;
  font-size: 2rem;
}

.cartTab .checkOut{
  color: #f5f5f5;
  border: 1px solid #0f0909;
  box-shadow: 10px 10px 20px #000000;
}

/* --- Cart List --- */
.listCart {
  overflow-y: auto;
  scrollbar-width: none;
}

.listCart::-webkit-scrollbar {
  width: 0;
}

.listCart .item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 15px;
  text-align: left;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.listCart .item img {
  width: 70px;
  height: auto;
  border-radius: 5px;
}

.listCart .item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* --- Quantity Controls --- */
.listCart .quantity span {
  display: inline-block;
  width: 25px;
  height: 25px;
  font-size: 16px;
  text-align: center;
  line-height: 25px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.listCart .quantity span:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.listCart .quantity span:nth-child(2) {
  background-color: transparent;
  color: #eee;
  cursor: default;
}

.clear-product {
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  color: #040303;
  border: 1px solid #0f0909;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-product img {
  width: 14px;
  height: 14px;
  padding: 5px;
  color: #000;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(74%) saturate(3451%) hue-rotate(331deg) brightness(100%) contrast(101%);
  transition: 0.3s ease;
}

.clear-product:hover {
  background-color: #ff6666;
  color: #fff;
}

.clear-product:hover img {
  filter: brightness(100%) invert(1);
}


.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Responsive --- */


    /*contact*/
    #contact {
        background-color: rgb(49, 49, 49);
        color: #ffffff; /* Change text color to white for better visibility */
        height: auto;
        width: 100wh;
        text-align: center;
    }
    
    .form{
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        align-items: center;
        margin: 20px 0px;
        height: 50%;
        padding-top: 10%;
    }
    
    .input{
        padding: 12px;
        margin: 7px;
        width: 55%;
        height: 5%;
        font-size: 15px;
        border: none;
        outline: none;
        
    }
    
    #msg{
        width: 60%;
        height: 32%;
        margin: 7px;
        font-size: 15px;
        border: none;
        outline: none;
    }
    
    #send{
        margin: 10px;
        font-size: 17px;
        padding: 7px 17px;
        width: auto;
        height: auto;
        border-radius: 20px;
        border: none;
        outline: none;
    }
    
    #send:hover{
        cursor: pointer;
        box-shadow: 0 0 5px rgb(255, 255, 255);
        font-weight: bold;
    }

    .mia{
        font-size: 0.8rem;
        color: #f7f7f7;
        text-align: center;
        background-color: rgb(49, 49, 49);
        height: 20%;
    }
  
    .oi{
        display: none;
    }

    .heading{
        font-size: 1.5rem;
        text-align: center;
    }
 
    
    /*search bar*/
    .search-container {
        display: flex;
        align-items: center;
        width: 300px; /* Adjust width as needed */
        margin: 0 auto; /* Center the search bar horizontally */
        padding-top: 50px;
    }
    
    #search-input {
        flex: 1; /* Take remaining space */
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 14px 14px 14px 14px; /* Rounded corners on the left */
        font-size: 14px;
    }
    
    #search-button {
        display: none;
        padding: 8px 12px;
        border: none;
        background-color: #007bff; /* Blue color, adjust as needed */
        color: #fff;
        border-radius: 14px 14px 14px 14px; /* Rounded corners on the right */
        cursor: pointer;
        font-size: 14px;
    }
    
    /* Hover effect for button */
    #search-button:hover {
        background-color: #0056b3; /* Darker shade of blue on hover */
    }
    
    /* Focus style for input */
    #search-input:focus {
        outline: none; /* Remove default focus outline */
        border-color: #007bff; /* Change border color on focus */
    }
    
    
    .modal {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background: rgba(0, 0, 0, 0.6); /* dark semi-transparent background */
    backdrop-filter: blur(8px);
    z-index: 2000000;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Modal Content --- */
.modal-content {
  width: 80%;
    display: none; /* hidden by default */
    position: fixed;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1); /* translucent glass */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000001;
    animation: fadeIn 0.3s ease;
}

#cartDetails{
  max-height: 130px;
  overflow: hidden;
  overflow-y: auto;
}

/* --- Close Button --- */
.close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.close:hover,
.close:focus {
    color: #00ffaa; /* accent color */
    text-decoration: none;
}

/* --- Cart Item Styling --- */
.cart-item {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

/* --- Checkout Form --- */
#checkoutForm {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#checkoutForm label {
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

#checkoutForm input {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: background 0.3s ease, border 0.3s ease;
}
#checkoutForm input:focus {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #00ffaa;
}

/* --- Submit Button --- */
#checkoutForm button {
    padding: 10px;
    margin-top: 10px;
    background-color: #00ffaa;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#checkoutForm button:hover {
    background-color: #fff;
    box-shadow: 0 0 15px #00ffaa;
}
}