@charset "UTF-8";
/* 🌊 Shop Page Styling */
.shop-page {
  background-color: #f8f9fa;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* 🧭 Sidebar */
.sidebar-card {
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sidebar-card h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.sidebar-card .category-list .category-item {
  cursor: pointer;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.sidebar-card .category-list .category-item:hover, .sidebar-card .category-list .category-item.active {
  background-color: #0d6efd;
  color: #fff;
}

/* 🛒 Product Card Grid */
.product-card {
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  /* 🖼️ Image Wrapper (16:9) */
  /* 📄 Card Info */
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.product-card:hover .product-img {
  transform: scale(1.06);
}
.product-card:hover .hover-overlay {
  opacity: 1;
  visibility: visible;
}
.product-card .product-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f3f4f6;
  /* Hover overlay */
}
.product-card .product-img-wrapper .product-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card .product-img-wrapper .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.product-card .product-img-wrapper .hover-overlay .btn-view {
  background: #fff;
  color: #0d6efd;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.product-card .product-img-wrapper .hover-overlay .btn-view:hover {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.05);
}
.product-card .card-body {
  text-align: center;
  padding: 1rem;
}
.product-card .card-body .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .card-body .card-title:hover {
  color: #0d6efd;
}
.product-card .card-body .price {
  color: #198754;
  font-weight: 700;
  font-size: 1.05rem;
}
.product-card .card-body .bulk-badge {
  background: linear-gradient(135deg, #ffdd57, #ffa500);
  color: #333;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-top: 5px;
}

/* 🪄 Modal Enhancements */
#productModal .modal-content {
  border-radius: 14px;
}
#productModal .modal-body img {
  border-radius: 12px;
}
#productModal .modal-body #modalPreviewThumbs img,
#productModal .modal-body #modalPreviewThumbs video {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
#productModal .modal-body #modalPreviewThumbs img:hover,
#productModal .modal-body #modalPreviewThumbs video:hover {
  border-color: #0d6efd;
}
#productModal .modal-body #purchaseType {
  border-radius: 8px;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .product-card .product-img-wrapper {
    aspect-ratio: 16/10;
  }
  .product-card .card-title {
    font-size: 0.95rem;
  }
  .product-card .price {
    font-size: 1rem;
  }
  .sidebar-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .product-card .product-img-wrapper {
    aspect-ratio: 16/9;
  }
  .product-card .card-body {
    padding: 0.8rem;
  }
  .card-title {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=shop.css.map */