/* Container của toàn bộ phần sản phẩm */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
}


/* Khung sản phẩm */
.product-card {
  display: flex;
  border: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #fdfdfd, #5d6fc3);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 20px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Phần hình ảnh bên trái */
.product-image {
  flex: 1;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #888;
}
.product-image img {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain; /* Giữ tỉ lệ ảnh, không bị méo */
  border-radius: 5px;
}

/* Phần thông tin bên phải */
.product-info {
  flex: 1;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tiêu đề thông tin */
.product-info h3 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.product-info h4 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Nhóm nút */
.product-buttons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

/* Nút chung */
.product-buttons button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px #1a2954;
}

/* Nút "Thêm vào giỏ" */
.product-buttons button:first-child {
  background-color: #1a2954;
  color: #fff;
}

.product-buttons button:first-child:hover {
  background-color: #1a2954;
  box-shadow: 0 4px 10px #1a2954;
}

/* Nút "Xem chi tiết" */
.product-buttons button:last-child {
  background-color: #fff;
  color: #1a2954;
  border: 2px solid #1a2954;
}

.product-buttons button:last-child:hover {
  background-color: #e8f5e9;
}