/* Alert Styles */
.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.alert[show-alert] {
  opacity: 1;
  transform: translateY(0);
}

.alert.alert-success {
  background-color: #f8b195; /* Màu cam nhạt */
  border-left: 5px solid #c06c84; /* Màu cam đậm hơn */
}

.alert.alert-danger {
  background-color: #f67280; /* Màu đỏ nhạt */
  border-left: 5px solid #c06c84; /* Màu đỏ đậm hơn */
}

.alert span[close-alert] {
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  margin-left: 10px;
  font-weight: normal;
}

.alert span[close-alert]:hover {
  color: #000;
}

.icon {
  width: 30px; /* Set the desired width */
  height: 30px; /* Set the desired height */
  object-fit: contain; /* Ensures the image fits without distortion */
  max-width: 100%; /* Makes it responsive */
  max-height: 100%;
}

#collection-home {
  .img-collection {
    display: flex;
    gap: 10px; /* Khoảng cách giữa các banner */
  }

  /* Banner-left */
  .banner-left {
    flex: 2; /* Gấp đôi kích thước của banner-right */
    position: relative; /* Để đảm bảo ảnh không bị vỡ */
  }

  .banner-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo ảnh giữ tỷ lệ mà không bị vỡ */
    border-radius: 5px; /* Tùy chỉnh bo góc */
  }

  /* Banner-right */
  .banner-right {
    flex: 1; /* Bằng một nửa của banner-left */
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .banner-right a {
    flex: 1; /* Chia đều chiều cao giữa các banner nhỏ */
    position: relative;
  }

  .banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo ảnh giữ tỷ lệ mà không bị vỡ */
    border-radius: 5px;
  }

  /* Button "Khám phá bộ sưu tập" */
  .btn.home-col {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .btn.home-col:hover {
    background-color: #555;
  }
}

.logo-nav img {
  width: 80px; /* Chiều rộng 40px */
  height: 80px; /* Chiều cao 40px */
  object-fit: contain; /* Đảm bảo giữ tỷ lệ ảnh bên trong */
}

.zalo-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}
.zalo-box:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.zalo-icon {
  width: 35px;
  height: 35px;
}
.zalo-tooltip {
  position: absolute;
  bottom: 80px;
  right: 10px;
  background-color: #0084ff;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.zalo-box:hover .zalo-tooltip {
  display: block;
}


.logo-foot {
  display: flex;
  align-items: center; /* Căn giữa logo và tiêu đề theo chiều dọc */
  text-decoration: none; /* Xóa gạch chân nếu có */
}

.logo-foot img {
  width: 80px; /* Chiều rộng logo 40px */
  height: 80px; /* Chiều cao logo 40px */
  object-fit: contain; /* Đảm bảo giữ tỷ lệ hình ảnh */
  padding: 10px;
}


