/* product.css */

/* General Reset */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
  color: #333;
  margin: 0;
  padding-bottom: 60px;
}

/* Filter Bar */
.filter-bar {
  background: #fff;
  padding: 10px 0px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  justify-content: center;

}

.filter-bar .btn {
  font-size: 14px;
  padding: 6px 8px;
  background: #f5c3d0;
  margin: 4px 7px;
  border-radius: 20px;
  border: none;
}

.filter-bar .btn:hover {
  background: #f1b0c0;
}

.filter-bar i {
  color: #ff637e;
}

/* Card Product */
.card-product {
  background: #fff;
  border-radius: 10px;
  padding: 0%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
}

.card-product img {
  width: 100%;
  border-radius: 8px;
}

.wishlist-icon {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  z-index: 10;
}

.wishlist-icon.active {
  color: red;
}

.card-product h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0 2px;
}

.card-product small {
  font-size: 13px;
  color: #777;
}

.price {
  font-weight: 600;
  color: #000;
  font-size: 14px;
  margin-right: 5px;
}

.old-price {
  text-decoration: line-through;
  font-size: 13px;
  color: #999;
}

.rating {
  font-size: 12px;
  color: #ff9800;
}

/* Bottom Sheets */
.bottom-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
  transition: bottom 0.3s ease;
  z-index: 1100;
  max-height: 80vh;
  overflow-y: auto;
}

.bottom-sheet.active {
  bottom: 0;
}

.sheet-header {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

/* Radio Buttons */
.custom-radio {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.custom-radio input {
  margin-right: 10px;
}

/* Wishlist */
.wishlist-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.wishlist-item img {
  width: 70px;
  height: auto;
  border-radius: 6px;
}

.wishlist-item strong {
  font-size: 14px;
}

.wishlist-item .price {
  color: #000;
  font-weight: 500;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}