.home_glass {
  border-radius: 20px;
  background: transparent;
  border: 1px solid #fff;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(2px);
  --webkit-backdrop-filter: blur(50px);
  background-color: rgba(215, 215, 215, 0.5);
  /* (plus shape's fill blended on top as a separate layer with 30.46% opacity) */
}

.remove-mag p {
  margin-bottom: 0px;
}

#testing {
  position: relative;
}
#testing #top-img {
  position: absolute;
  left: 30;
  right: 0;
  top: 0;
  z-index: 3;
  bottom: 0;
  width: 200px;
}

.body-headings h3 {
  font-size: 25px;
  line-height: 30px;
}

.home_product_layout .hidden_container {
  opacity: 0;
  max-height: 0; /* Starts collapsed */
  overflow: hidden; /* Prevents content from overflowing */
  transition: opacity 0.5s ease, max-height 0.5s ease;
}
.home_product_layout .hidden_container .price {
  margin-bottom: 0px;
}
.home_product_layout:hover .hidden_container {
  opacity: 1;
  max-height: 500px; /* Adjust this value based on your content height */
}

.shop_product_layout {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.47);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.47);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.47);
}
.shop_product_layout .default_container {
  display: block;
}
.shop_product_layout .shop_hidden_container {
  display: none;
}
.shop_product_layout:hover .shop_hidden_container {
  display: block;
}
.shop_product_layout:hover .default_container {
  display: none;
}

/* General Filter Container */
.product-taxonomy-filter {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Arial, sans-serif;
  margin-top: 20px;
}

/* Parent Term Button */
.parent-term-button {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

/* Hover Effect for Buttons */
.parent-term-button:hover {
  background-color: #f1f1f1;
  border-color: #ccc;
}

/* Dropdown Arrow Styling */
.parent-term-button::after {
  content: "";
  font-size: 12px;
  margin-left: 10px;
  color: #999;
}

/* Child Terms Dropdown */
.child-terms {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 10;
  min-width: 200px;
}

/* Child Term Items */
.child-terms li {
  padding: 0;
  margin: 0;
}

.child-terms li a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect for Child Items */
.child-terms li a:hover {
  background-color: #f9f9f9;
  color: #0073aa;
}

/* Show Dropdown on Hover */
.parent-term:hover .child-terms {
  display: block;
}

/* Parent Term Container */
.parent-term {
  position: relative;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-taxonomy-filter {
    flex-wrap: wrap;
    gap: 10px;
  }
  .parent-term {
    width: 100%;
  }
  .parent-term-button {
    width: 100%;
    text-align: left;
  }
  .child-terms {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }
  .child-terms li a {
    padding: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
