/* ✅ Container bao toàn bộ mô tả sản phẩm */
.desc-container {
  font-family: 'Be Vietnam Pro', sans-serif;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ✅ Ảnh mô tả: dạng dọc, mỗi ảnh chiếm toàn bộ chiều ngang container */
.desc-img-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.desc-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* ✅ Tiêu đề mô tả */
.desc-title {
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0 8px;
  color: #000;
}

/* ✅ Đoạn văn mô tả */
.desc-text {
  font-size: 13px;
  line-height: 1.6;
  color: #222;
}

/* ✅ Nút "Xem thêm / Thu gọn" */
.desc-toggle-btn {
  margin-top: 16px;
  background: none;
  border: none;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  padding: 12px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: 'Be Vietnam Pro', sans-serif;
  transition: opacity 0.2s;
}

.desc-toggle-btn:hover {
  opacity: 0.7;
}

/* ✅ Mũi tên mảnh và gọn */
.desc-toggle-btn .arrow {
  font-size: 11px;
  margin-left: 4px;
  display: inline-block;
  transform: translateY(1px);
}

/* ✅ Hiệu ứng mờ dần phần dưới khi ẩn */
.desc-fade {
  height: 50px;
  background: linear-gradient(to top, #fff, transparent);
  margin-top: -50px;
  pointer-events: none;
}

/* ✅ Ẩn nội dung mô tả đầy đủ */
.hidden {
  display: none;
}
