
.cate-slider {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}


.menu-cate {
  flex: 0 0 26%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  min-height: 300px;
}

.menu-cate .verticalmenu {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.menu-cate .verticalmenu::-webkit-scrollbar {
  width: 6px;
}
.menu-cate .verticalmenu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.verticalmenu ul.menu.level1 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verticalmenu ul.menu.level1 > li {
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.verticalmenu ul.menu.level1 > li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.verticalmenu ul.menu.level1 > li > a:hover {
  background: #0b7dda;
  color: #fff;
  border-left-color: #084f91;
}

.verticalmenu img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
}

.dropdown-menu.wide-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 600px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.verticalmenu ul.menu.level1 > li:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu .fw-bold {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.dropdown-menu .fw-bold:hover {
  color: #0b7dda;
}
.dropdown-submenu ul li a {
  color: #777;
  font-size: 13px;
  transition: color 0.3s ease;
}
.dropdown-submenu ul li a:hover {
  color: #0b7dda;
}

.banners {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row-reverse; 
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  min-height: 350px;
}

.tiva-slideshow-wrapper {
  flex: 1 1 55%;
  position: relative;
}

.tiva-slideshow-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 10px 10px 0;
  transition: transform 0.4s ease;
}

.tiva-slideshow-wrapper img:hover {
  transform: scale(1.03);
}

.banner-caption {
  flex: 1 1 45%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  color: #000;
  padding: 40px;
  border-radius: 10px 0 0 10px;
  text-align: left;
  opacity: 1;
  visibility: visible;
}

.banner-content {
  text-align: left;
  max-width: 500px;
  animation: fadeUp 0.8s ease forwards;
}

.banner-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #AA8304;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.banner-description {
  font-size: 1rem;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-shop {
  display: inline-block;
  background: #AA8304;
  color: #000;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.25);
}

.btn-shop:hover {
  background: #084f91;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(11, 125, 218, 0.45);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verticalmenu .title {
  background: #0b7dda;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .cate-slider {
    flex-direction: column;
    gap: 20px;
  }

  .menu-cate,
  .banners {
    flex: 1 1 100%;
    min-height: auto;
  }

  .banners {
    flex-direction: column;
  }

  .tiva-slideshow-wrapper,
  .banner-caption {
    flex: 1 1 100%;
    border-radius: 10px;
  }

  .banner-caption {
    text-align: center;
    padding: 25px;
  }

  .banner-content {
    text-align: center;
  }

  .tiva-slideshow-wrapper img {
    height: 320px;
  }

  .dropdown-menu.wide-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .banner-title {
    font-size: 1.7rem;
  }

  .banner-description {
    font-size: 0.95rem;
  }

  .btn-shop {
    padding: 10px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 1.3rem;
  }

  .banner-description {
    display: none;
  }

  .btn-shop {
    font-size: 0.85rem;
    padding: 8px 22px;
  }
}


.section.banners {
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
  background-color: #333;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.7;
}

.carousel-indicators .active {
  background-color: #007bff;
  opacity: 1;
}

.btn-shop {
  background-color: #007bff;
  color: #fff;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-shop:hover {
  background-color: #0056b3;
  color: #fff;
}
