body {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-display: swap;
}

.product-overlay {
  width: 50%;
  height: 100px;
  position: absolute;
  background-color: #000000;
  opacity: 0.5;
  top: 150px;
  left: 0px;
  display: none;
  overlay: hidden;
}

.product-details {
  width: 100%;
  height: 150px;
  position: absolute;
  color: black;
  bottom: 0px;
  left: 0px;
  display: none;
  color: #ffffff;
  padding-left: 10px;
  padding-bottom: 20px;
  padding-right: 10px;
}

.product-details h3 {
  width: 50%;
}

.product-details .btn {
  position: absolute;
  bottom: 20px;
  right: 10px;
}

.product-column {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-name {
  width: 100%;
  text-align: center !important;
}

.product-name a {
  font-size: 25px;
  color: #000000;
}

.product-price {
  width: 100%;
  text-align: center !important;
}

.product-price a {
  font-size: 20px;
  color: #000000;
}

.search-field {
  margin-top: 20px;
}

.cart-elements {
  position: absolute;
  width: 400px;
  background-color: white;
  right: 0px;
  display: none;
}

.thumb-pic {
}

.overlay-text {
  position: absolute;
  left: 0;
  bottom: 10rem;
  background: rgb(255 255 250 / 78%);
  padding: 1rem;
  border-radius: 1rem;
}

/* Product info button styling */
.btn-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-info-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-cart-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-cart-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Filter buttons styling */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-buttons .btn {
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.filter-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.filter-buttons .btn:hover::before {
  left: 100%;
}

.filter-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.filter-buttons .btn.btn-outline-primary {
  border-color: #FFD6E9;
  color: #333;
  background-color: rgba(255, 214, 233, 0.1);
}

.filter-buttons .btn.btn-outline-primary:hover {
  background-color: #FFD6E9;
  border-color: #FFD6E9;
  color: #333;
}

.filter-buttons .btn.btn-outline-primary.active {
  background-color: #FFD6E9;
  border-color: #FFD6E9;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 214, 233, 0.4);
}

.filter-buttons .btn.btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
  background-color: rgba(108, 117, 125, 0.1);
}

.filter-buttons .btn.btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}

.filter-buttons .btn.btn-outline-secondary.active {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
}

/* Product item transitions */
.product-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .filter-buttons {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  
  .filter-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}