/* ============================================================
   CSS GỘP: DANH MỤC (Ô VUÔNG) & SẢN PHẨM (CARD ENIC)
   Đã đồng bộ tông màu Vàng Đồng / Nâu Gỗ (Premium Luxury)
   ĐÃ TỐI ƯU HIỂN THỊ SẢN PHẨM SỨ TRẮNG 3D (BẢN ẢNH TO)
   ============================================================ */

/* --- 1. KHU VỰC DANH MỤC SẢN PHẨM (CATEGORY BOXES) --- */
.anic-category-wrapper {
  display: block;
  width: 237px;
  height: 277px;
}

.anic-category-card {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  border: 1px solid #e2d1b3; /* Đổi sang viền vàng kem nhạt */
}

.anic-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 163, 115, 0.2) !important; /* Bóng vàng đồng */
}

.anic-category-img-wrapper {
  flex-grow: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* GIẢM PADDING XUỐNG CÒN 8PX ĐỂ ẢNH TO HẾT CỠ */
  padding: 8px;
  /* TUYỆT CHIÊU 1: Nền xung quanh màu Cát ấm đậm hơn để tôn sứ trắng */
  background: linear-gradient(135deg, #efe6d5 0%, #e2d1b3 100%);
  position: relative;
  overflow: hidden;
}

.anic-category-img-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.anic-category-img-wrapper img {
  /* TĂNG SIZE ẢNH LÊN 98% CHO TO BÀNH RA */
  max-width: 98%;
  max-height: 98%;
  object-fit: contain;
  z-index: 1; /* Nổi lên trên đèn Spotlight */

  /* TUYỆT CHIÊU 3: Bóng đổ gầm đậm hơn, ngả nâu đen để tách hẳn khỏi nền */
  filter: drop-shadow(0 15px 12px rgba(60, 30, 10, 0.35));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 0.4s ease;
}

/* Hover: Bồn cầu bay lên, bóng nhạt & dài ra (Tăng scale lên 1.18) */
.anic-category-card:hover .anic-category-img-wrapper img {
  transform: scale(1.18) translateY(-8px);
  filter: drop-shadow(0 25px 20px rgba(60, 30, 10, 0.25));
}

.anic-category-footer {
  /* Đổi màu xanh Navy thành màu Nâu Gỗ Đậm */
  background-color: #582f0e;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.anic-category-footer span {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* Hiệu ứng Active (Khi click chọn danh mục đó) */
.anic-category-card.active-category {
  border: 2px solid #d4a373 !important; /* Viền vàng đồng */
  box-shadow: 0 0 15px rgba(212, 163, 115, 0.4) !important;
}

/* --- 2. KHU VỰC THẺ SẢN PHẨM (PRODUCT CARDS) --- */
.enic-card {
  background: #fff;
  border: 1px solid #f3efdf !important;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.enic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.12) !important;
  border-color: #d4a373 !important; /* Viền sáng lên màu vàng đồng khi hover */
}

/* Nút MUA NGAY: Phong cách Luxury */
.enic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 47, 14, 0.05); /* Overlay nâu cực nhạt */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.enic-card:hover .enic-overlay {
  opacity: 1;
}

.btn-gold-premium {
  background: #d4a373;
  color: white !important;
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
  transform: translateY(20px);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enic-card:hover .btn-gold-premium {
  transform: translateY(0);
}

.btn-gold-premium:hover {
  background: #582f0e;
  box-shadow: 0 6px 20px rgba(88, 47, 14, 0.3);
}

.out-of-stock-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: #333;
  color: #fff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* --- 3. ANIMATIONS & TIỆN ÍCH CHUNG --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.skeleton {
  position: relative;
  overflow: hidden;
  background-color: #e2e8f0;
}

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.text-luxury-gold {
  color: #d4a373;
}
.bg-luxury {
  background: #d4a373 !important;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   GIAO DIỆN SẢN PHẨM MỚI (TÔNG MÀU VÀNG ĐỒNG / NÂU GỖ LUXURY)
   ============================================================ */

.product-brief-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2d1b3 !important; /* Đổi viền xám thành viền vàng kem nhạt */
}

.product-brief-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 163, 115, 0.15) !important; /* Bóng đổ màu vàng đồng */
  border-color: #d4a373 !important; /* Viền sáng lên màu vàng đồng khi hover */
}

.product-brief-title {
  color: #582f0e; /* Đổi Navy thành Nâu gỗ đậm cho sang trọng */
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.2s;
}

.product-brief-card:hover .product-brief-title {
  color: #d4a373; /* Hover thì chữ chuyển sang Vàng Đồng */
}

.product-brief-price {
  color: #d4a373; /* Giá tiền màu Vàng Đồng nổi bật */
  font-size: 1.05rem;
  font-weight: 800; /* Cho đậm thêm một chút để hút mắt */
}

/* 2 NÚT BẤM (GIỮ TÊN CLASS CŨ CHO TIỆN, NHƯNG MÀU LÀ CỦA LUXURY) */
.btn-navy-action {
  background-color: #582f0e; /* Đổi nền Navy thành Nâu Gỗ Đậm */
  color: #ffffff !important;
  border: 1px solid #582f0e;
  font-size: 11px;
  padding: 8px 2px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px; /* Thêm khoảng cách chữ cho cảm giác cao cấp */
}

.btn-navy-action:hover {
  background-color: #d4a373; /* Hover thì nút sáng bừng thành Vàng Đồng */
  border-color: #d4a373;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3); /* Bóng đổ cho nút phát sáng */
}
