/* ============================================================
   CSS CHO TRANG DANH SÁCH SẢN PHẨM
   Bao gồm: danh mục nổi bật, card sản phẩm, phân trang, modal
   Tông màu Luxury (vàng đồng #d4a373, nâu gỗ #582f0e)
   ============================================================ */

/* --- Responsive cho danh mục nổi bật --- */
.category-swipe-wrapper {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.category-swipe-wrapper::-webkit-scrollbar {
  display: none;
}

.anic-category-wrapper {
  flex: 0 0 auto;
  width: 140px;
}

@media (min-width: 768px) {
  .category-swipe-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    justify-content: center;
    gap: 1rem;
    overflow-x: visible;
  }
  .anic-category-wrapper {
    width: auto;
    max-width: 200px;
    justify-self: center;
    margin: 0 auto;
  }
}

/* ========== CARD SẢN PHẨM ========== */
.product-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #f8f9fa;
  padding: 8px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc3545;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 30px;
  z-index: 2;
}

.product-body {
  padding: 12px;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e2a3e;
  line-height: 1.4;
  height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-decoration: none;
}

.product-title:hover {
  color: #d4a373;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: #d4a373;
  margin: 8px 0;
}

/* Nút bấm */
.btn-product {
  background-color: #582f0e;
  color: white;
  border: none;
  border-radius: 40px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-product:hover {
  background-color: #d4a373;
  color: #1e2a3e;
}

.btn-outline-product {
  background-color: transparent;
  border: 1px solid #d4a373;
  color: #582f0e;
}

.btn-outline-product:hover {
  background-color: #d4a373;
  color: white;
}

/* Responsive card */
@media (min-width: 768px) {
  .product-title {
    font-size: 1rem;
  }
  .product-price {
    font-size: 1.1rem;
  }
  .btn-product {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  .product-body {
    padding: 8px;
  }
  .product-title {
    font-size: 0.8rem;
  }
  .product-price {
    font-size: 0.9rem;
  }
}

/* ========== PHÂN TRANG ========== */
.active-custom .page-link {
  background-color: #d4a373 !important;
  color: #fff !important;
  border-radius: 8px;
}
.page-link:hover {
  background-color: #fef5e8;
}
