.carousel-cell {
  width: 100%;
  display: flex;
}

.carousel-cell .banner-item img {
  max-width: 100%;
}

/* Banner Bottom */
#banners-bottom-container {
  position: relative;
}
.banners-bottom {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  width: 100%;
  z-index: 9999;
  background: transparent; /* Tùy chỉnh nền nếu cần */
  padding: 0; /* Khoảng cách bên trong */
}

.banners-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mặc định 2 cột */
}

.banners-bottom-grid a img {
  width: 100%;
  height: auto;
}

/* Điều chỉnh trên thiết bị mobile */
@media (max-width: 768px) {
  .banners-bottom-grid {
    grid-template-columns: 1fr; /* Mỗi banner 1 hàng */
  }
}

#open-banner-bottom {
  position: fixed;
  bottom: 20px;
  left: 10px;
  background: red;
  color: white;
  border: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
}

#close-banner-bottom {
  position: absolute;
  top: -24px;
  left: 0;
  background: red;
  color: white;
  border: none;
  display: flex;
  align-items: center; /* Căn giữa biểu tượng theo chiều dọc */
  justify-content: center; /* Căn giữa biểu tượng theo chiều ngang */
  font-size: 14px; /* Kích thước biểu tượng chữ */
  line-height: 1; /* Đảm bảo nội dung không bị ảnh hưởng bởi chiều cao dòng */
  cursor: pointer;
  padding: 5px;
}

a.btn {
  display: inline-block; /* Hiển thị như một nút */
  padding: 12px 24px; /* Khoảng cách trong nút */
  font-size: 16px; /* Kích thước chữ */
  font-weight: bold; /* Chữ đậm */
  color: white; /* Màu chữ */
  text-decoration: none; /* Bỏ gạch chân */
  text-align: center; /* Căn giữa chữ */
  background: #c9aa71; /* Nền chuyển màu nổi bật */
  border: none; /* Không viền */
  border-radius: 8px; /* Bo góc */
  transition: all 0.3s ease;
  cursor: pointer; /* Con trỏ dạng bàn tay */
}

a.btn:hover {
  background: #af9463; /* Đổi hướng gradient khi hover */
  transform: translateY(-2px); /* Nút nhích lên khi hover */
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
}

a.btn:active {
  transform: translateY(2px); /* Nút nhấn xuống khi click */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Giảm đổ bóng khi click */
}
