
/* Menu */
.inner-menu {
  display: flex;
  justify-content: flex-end;  /* Căn phải cho menu */
  align-items: center;  /* Căn giữa các mục menu theo chiều dọc */
}

.inner-menu ul {
  list-style: none;  /* Loại bỏ dấu chấm */
  margin: 0;
  padding: 0;
  display: flex;  /* Đảm bảo các mục xếp theo hàng ngang */
}

.inner-menu li {
  margin-left: 20px; /* Khoảng cách giữa các mục */
}

.inner-menu a {
  text-decoration: none;  /* Loại bỏ gạch dưới */
  color: #333;  /* Màu chữ */
  font-weight: bold;
}

.inner-menu a:hover {
  color: #007bff;  /* Đổi màu chữ khi hover */
}

/* Tạo kiểu cho container của sản phẩm */
h2.inner-title {
	text-align: center;  /* Căn giữa tiêu đề */
	font-size: 2rem;
	margin: 20px 0;
	color: #04580b;  /* Màu chữ */
}	

.product-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.product-item .inner-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-item .inner-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.product-item .inner-content {
  display: flex;
  flex-direction: column;
}

.product-item .installment {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  padding: 2px 5px;
  background-color: #e1f5fe;
  color: #007bff;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}

.product-item .inner-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
  min-height: 40px;
}

.product-item .product-specs {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: #777;
}

.product-item .product-specs span {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 5px;
}

.product-item .inner-price-new {
  font-size: 16px;
  font-weight: bold;
  color: #e53935;
  margin-bottom: 5px;
}

.product-item .inner-price-old {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
  margin-bottom: 5px;
}

.product-item .inner-discount {
  font-size: 12px;
  color: #28a745;
  margin-bottom: 8px;
}

.product-item .discount-price,
.product-item .student-discount {
  font-size: 12px;
  color: #dc3545;
  margin-bottom: 5px;
}

.product-item .installment-info {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.product-item .rating {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 5px;
}

.product-item .warranty {
  display: flex;
  align-items: center;
  color: #28a745;
  font-size: 12px;
  margin-bottom: 5px;
}

.product-item .warranty i {
  margin-right: 5px;
}

.product-item .inner-button {
  margin-top: auto;
}

.product-item .inner-button .btn {
  display: inline-block;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
}

