:root {
  --primary-color: #153b69;
  --background-color: #fff;
  --text-dark: #333;
  --text-light: #fff;
  --accent-color: #ff6b00;
  --header-height: 80px;
  --transition-speed: 0.3s;
  --border-radius: 4px;
  --background-gradient: linear-gradient(180deg, #0465b2 0%, #00246b 97%);
  --button-color: #4f4f4f;
  --acent-blue: rgba(4, 101, 178, 1);
  --primary-color-rgb: 21, 59, 105;
  --secondary-color: #f37021;
  --white-color: #fff;

  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  --card-hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --card-border-color: rgba(0, 0, 0, 0.05);
  --tag-bg-color: #f5f5f5;

  --form-bg-color: #f9f9f9;
  --input-bg-color: #ffffff;
  --input-border-color: #e0e0e0;
  --input-focus-border-color: #0465b2;
  --page-bg-color: #edf5fc;

  --error-color: #e53935;
  --success-color: #43a047;
}

/* header start */
/* Header Styles */
.hy-sailun-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.hy-sailun-navbar {
  background: var(--background-gradient);
  padding: 0;
  height: var(--header-height);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.hy-sailun-logo img {
  height: 40px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.hy-sailun-nav-container {
  justify-content: flex-end;
}

.hy-sailun-nav-item {
  display: flex;
  align-items: center;
}

.hy-sailun-nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0 15px;
  height: var(--header-height);
  display: flex !important;
  align-items: center;
  /* font-size: clamp(0.8rem, 0.1881rem + 0.9552vw, 1rem); */
  /* font-size: clamp(0.7rem, -0.2179rem + 1.4328vw, 1rem); */
  font-size: clamp(0.7rem, 0.0881rem + 0.9552vw, 0.9rem);
  text-transform: uppercase;
}

.hy-sailun-nav-link:hover {
  opacity: 0.8;
}

.hy-sailun-dropdown-menu {
  background: var(--background-gradient);
  border: none;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  z-index: 1000;
  min-width: 200px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.hy-sailun-dropdown-item {
  color: var(--text-light);
  font-family: "Montserrat", lato-m;
  font-weight: 500;
  display: flex;
  width: 100%;
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
}
.menu-li-level-2:first-of-type .hy-sailun-dropdown-item {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.menu-li-level-2:last-of-type .hy-sailun-dropdown-item {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hy-sailun-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}
.memnu-li-level-1.active .hy-sailun-nav-link {
  color: #f37021 !important ;
  font-weight: 600;
}
.hy-sailun-toggler {
  border: none;
}
.menu-ul-level-3 {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--background-gradient);
  padding: 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  width: max-content;
  z-index: 1000;
  min-width: 200px;
  transform: translateY(-10px) translateX(1px);
  -webkit-transform: translateY(-10px) translateX(1px);
  -moz-transform: translateY(-10px) translateX(1px);
  -ms-transform: translateY(-10px) translateX(1px);
  -o-transform: translateY(-10px) translateX(1px);
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hy-sailun-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation */
.hy-sailun-mobile-nav {
  background-color: var(--primary-color);
  display: none;
  padding: 15px 0;
}

.hy-sailun-mobile-nav-level-1,
.hy-sailun-mobile-nav-level-2,
.hy-sailun-mobile-nav-level-3 {
  display: none;
}

.hy-sailun-mobile-nav-item {
  color: var(--text-light);
  padding: 10px 15px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hy-sailun-mobile-nav-item:last-child {
  border-bottom: none;
}

.hy-sailun-mobile-nav-back {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  padding: 10px 15px;
  display: block;
  margin-bottom: 10px;
}
.menu-a-level-3 {
  font-size: 1rem;
  font-weight: 500;
}
.menu-li-level-2-has-child {
  position: relative;
}
.menu-li-level-2-has-child:hover .menu-ul-level-3 {
  opacity: 1;
  visibility: visible;
  filter: blur(0px);
  -webkit-filter: blur(0px);
  transform: translateY(0px) translateX(1px);
  -webkit-transform: translateY(0px) translateX(1px);
  -moz-transform: translateY(0px) translateX(1px);
  -ms-transform: translateY(0px) translateX(1px);
  -o-transform: translateY(0px) translateX(1px);
}
.menu-li-level-1-has-child .menu-ul-level-2 {
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.menu-li-level-1-has-child:hover .menu-ul-level-2 {
  opacity: 1;
  visibility: visible;
  filter: blur(0px);
  -webkit-filter: blur(0px);
  transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
}
.hy-sailun-header.active .hy-sailun-logo img {
  height: 30px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.navbar-brand {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hy-sailun-header.active .navbar-brand {
  padding-top: 8px;
  padding-bottom: 8px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hy-sailun-header.active .hy-sailun-navbar {
  height: 60px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.hy-sailun-header.active {
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
/* header end */

/* menu mobile start */
/* CSS cho mobile navigation */
.hy-sailun-mobile-nav {
  background-color: var(--primary-color);
  display: none;
  padding: 0;
  overflow: hidden;
}

.hy-mobile-menu-level-1 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hy-mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.hy-mobile-menu-link {
  color: var(--text-light);
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.hy-mobile-menu-link:hover,
.hy-mobile-menu-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.hy-mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.hy-mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hy-mobile-submenu-level-2 .hy-mobile-menu-link {
  padding-left: 30px;
}

.hy-mobile-submenu-level-3 .hy-mobile-menu-link {
  padding-left: 45px;
}

/* Thêm hiệu ứng ripple khi nhấn vào menu */
.hy-mobile-menu-link {
  position: relative;
  overflow: hidden;
}

.hy-mobile-menu-link:active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  border-radius: 100%;
  transform: scale(1);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(50);
    opacity: 0;
  }
}
/* menu mobile end */

/* slider start */
/* Hero Section */
.hy-sailun-hero {
  height: calc(100vh - var(--header-height));
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.hy-sailun-swiper {
  width: 100%;
  height: 100%;
}

.hy-sailun-slide {
  position: relative;
  overflow: hidden;
}

.hy-sailun-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  object-fit: cover;
}

.hy-sailun-slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hy-sailun-slide-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.hy-sailun-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hy-sailun-title {
  font-size: clamp(1.8rem, 1.4308rem + 1.8462vw, 3rem);
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0;
}

.hy-sailun-subtitle {
  font-size: clamp(1.4rem, 1.2154rem + 0.9231vw, 2rem);
  font-weight: 700;
  letter-spacing: 2px;
}

.hy-sailun-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}

.hy-sailun-pagination {
  position: absolute;
  bottom: 30px !important;
  z-index: 20;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--text-light);
}

/* Glitch Effect */
.hy-sailun-glitch-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
}

.hy-sailun-glitch-effect::before,
.hy-sailun-glitch-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.hy-sailun-logo-icon {
  width: 100%;
  max-width: 400px;
}

.hy-sailun-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-image: url("../../templates/images/icon-banh-xe-trang.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-image: url("../../templates/images/icon-banh-xe-xanh.png");
  transform: scale(1.2);
}

/* slider end */

/* TRANG CHỦ START */

/* EcoPoint Technology Section */
.hy-section-index-technology {
  padding: 60px 0;
}

.hy-sailun-tech-logo {
  text-align: center;
  margin-bottom: 30px;
}

.hy-sailun-tech-logo img {
  max-width: 100%;
  height: auto;
}

.hy-sailun-tech-content {
  color: var(--text-light);
}

.hy-sailun-section-title {
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--acent-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hy-sailun-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.hy-sailun-feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.hy-sailun-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.hy-sailun-btn-view {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--button-color);
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  -webkit-transition: all var(--transition-speed) ease;
  -moz-transition: all var(--transition-speed) ease;
  -ms-transition: all var(--transition-speed) ease;
  -o-transition: all var(--transition-speed) ease;
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
}

.hy-sailun-btn-view:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  transition: all var(--transition-speed) ease;
  -webkit-transition: all var(--transition-speed) ease;
  -moz-transition: all var(--transition-speed) ease;
  -ms-transition: all var(--transition-speed) ease;
  -o-transition: all var(--transition-speed) ease;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.hy-sailun-btn-view.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hy-sailun-tech-logo-image {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.hy-sailun-tech-logo-image a,
.hy-sailun-tech-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hy-sailun-tech-content-text {
  color: var(--text-dark);
}
.hy-sailun-tech-logo-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

/* why choose start */
/* Why Choose Sailun Section */
.hy-section-index-why-choose {
  position: relative;
}

.hy-sailun-why-bg {
  background-image: var(--background-why-choose);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  background-attachment: fixed;
}

.hy-sailun-why-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hy-sailun-why-content {
  position: relative;
  color: var(--text-light);
  padding-bottom: 50px;
}

.hy-sailun-why-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hy-sailun-divider {
  width: 80px;
  height: 6px;
  background-color: #f37021;
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 1;
}

.hy-section-index-why-choose .hy-sailun-section-title {
  font-weight: 500;
  font-family: SVN-Trench;
  color: var(--text-light);
}
.hy-sailun-why-content::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--background-color);
  z-index: 2;
}
/* why choose end */

/* tire finder start */
/* Tire Finder Section */
.hy-section-index-tire-finder {
  padding: 60px 0;
  min-height: 600px;
}

.hy-sailun-tire-finder {
  background-color: var(--primary-color);
  border-radius: 10px;
  position: relative;
}

.hy-sailun-tire-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  text-align: center;
  z-index: 1;
}

.hy-sailun-finder-form {
  padding: 0px;
  position: relative;
  z-index: 3;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.hy-section-index-tire-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5), transparent);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.hy-section-index-tire-finder .hy-sailun-finder-tabs {
  margin-bottom: 0px;
}

.hy-section-index-tire-finder .hy-sailun-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background-color: #eaeaea;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  transition: all var(--transition-speed);
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
  padding-right: 40px;
  clip-path: url(#tire-finder-tabs-clip-path);
  font-size: clamp(1.1rem, 1.0692rem + 0.1538vw, 1.2rem);
  transform: scaleY(1.05);
  -webkit-transform: scaleY(1.05);
  -moz-transform: scaleY(1.05);
  -ms-transform: scaleY(1.05);
  -o-transform: scaleY(1.05);
  transform-origin: bottom;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
}
.hy-sailun-finder-tabs-item.active {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}
.hy-section-index-tire-finder .hy-sailun-tab-btn svg {
  margin-right: 10px;
}

.hy-section-index-tire-finder .hy-sailun-tab-btn.active {
  color: var(--text-light);
}

.hy-section-index-tire-finder .hy-sailun-finder-fields {
  background-color: var(--primary-color);
  padding: 30px 40px;
  border-radius: 0 0 10px 10px;
}

.hy-section-index-tire-finder .hy-sailun-dropdown {
  position: relative;
}

.hy-section-index-tire-finder .hy-sailun-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 15px;
  background-color: #fff;
  border: none;
  border-radius: var(--border-radius);
  color: var(--text-dark);
  font-weight: 500;
  text-align: left;
}

.hy-section-index-tire-finder .hy-sailun-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  /* background-color: #fff; */
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--background-color);
}

.hy-section-index-tire-finder
  .hy-sailun-dropdown.open
  .hy-sailun-dropdown-menu {
  display: block;
}

.hy-section-index-tire-finder .hy-sailun-dropdown-item {
  display: block;
  padding: 10px 15px;
  color: var(--text-light);
  text-decoration: none;
  transition: background-color var(--transition-speed);
}

.hy-section-index-tire-finder .hy-sailun-dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.hy-sailun-finder-tabs img {
  width: 75px;
  height: 30px;
  object-fit: contain;
}
.hy-sailun-finder-tabs-box {
  background-color: #eaeaea;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

.hy-section-index-tire-finder .hy-sailun-tab-btn.active {
  background: var(--background-color);
  color: var(--primary-color);
}
.svg-tire-finder-tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.hy-sailun-tire-finder-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 450px;
  max-height: 450px;
  object-fit: contain;
  z-index: 1;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
}
.hy-section-index-tire-finder .container {
  z-index: 10;
  position: relative;
}
.hy-section-index-tire-finder .hy-sailun-section-title {
  margin-bottom: 150px;
}
/* tire finder end */

/* sản phẩm và tính năng mới start */
/* Products & Features Section */
.hy-section-index-products {
  position: relative;
}

.hy-sailun-products-bg {
  background-image: var(--background-tech);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
  background-attachment: fixed;
}

.hy-sailun-products-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hy-sailun-products-content {
  position: relative;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hy-sailun-products-text {
  font-size: 16px;
  line-height: 1.6;
}

.hy-sailun-products-slider {
  position: relative;
  z-index: 2;
}

.hy-sailun-products-swiper {
  width: 100%;
  overflow: visible;
}

.hy-sailun-product-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-speed);
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.hy-sailun-product-card a,
.hy-sailun-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-speed);
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
}
.hy-sailun-product-card:hover {
  transform: translateY(-10px);
}

.hy-sailun-products-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.hy-sailun-products-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
}

.hy-sailun-products-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.hy-sailun-technology-title {
  color: var(--text-light);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}
.hy-section-index-products .hy-sailun-section-title {
  color: var(--text-light);
  font-weight: 500;
  font-family: SVN-Trench;
}
.hy-content-thumb-product-swiper-item-text {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  color: var(--text-light);
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
}
.hy-sailun-products-slider .swiper-slide-active .hy-sailun-product-card {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  transform: scale(1.15) translateY(0);
  -webkit-transform: scale(1.15) translateY(0);
  -moz-transform: scale(1.15) translateY(0);
  -ms-transform: scale(1.15) translateY(0);
  -o-transform: scale(1.15) translateY(0);
  transform-origin: center;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transition: all var(--transition-speed);
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
}
.hy-sailun-product-card:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
/* sản phẩm và tính năng mới end */

/* sản phẩm nổi bật start */

/* Featured Products Section */
.hydro-featured-products {
  background-color: #ebebeb;
  background-image: var(--background-featured-products);
  background-size: 100% auto;
  background-position: bottom;
  padding: 60px 0;
  position: relative;
}

.hydro-product-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 10px;
}

.hydro-tab-btn {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  padding: 5px 15px;
  transition: color var(--transition-speed);
}

.hydro-tab-btn.active {
  color: var(--primary-color);
}

.hydro-tab-divider {
  width: 2px;
  height: 20px;
  background-color: var(--text-dark);
  margin: 0 15px;
}

.hydro-tab-description {
  margin-bottom: 20px;
}

.hydro-tab-content {
  display: none;
  font-size: 14px;
  color: var(--text-dark);
}

.hydro-tab-content.active {
  display: block;
}

.hydro-products-swiper {
  padding: 20px 10px;
}

.hydro-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: transform var(--transition-speed);
}

.hydro-product-card:hover {
  transform: translateY(-10px);
}

.hydro-product-image {
  overflow: hidden;
}

.hydro-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-speed);
}

.hydro-product-card:hover .hydro-product-image .image-lop-xe {
  transform: scale(1.05);
}

.hydro-product-btn {
  /* display: inline-block; */
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-speed);
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
  position: relative;
  z-index: 10;
  margin-top: -20px;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  font-size: clamp(0.7rem, 0.6077rem + 0.4615vw, 1rem);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 2;
}

.hydro-product-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}
.hydro-product-tabs-des {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 400;
}
.hydro-product-tabs-name {
  position: relative;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
}
.hydro-product-tabs-name::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -2px;
  background-color: var(--text-dark);
  opacity: 0;
  transition: all var(--transition-speed);
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
}
.hydro-tab-btn.active .hydro-product-tabs-name::after {
  opacity: 1;
}

.hydro-swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  -o-transform: translateY(-50%) scale(1);
  z-index: 100;
  transition: all var(--transition-speed);
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
}
.hydro-swiper-button-navigate-prev {
  left: -20px;
}
.hydro-swiper-button-navigate-next {
  right: -20px;
}
.hydro-swiper-button:hover {
  transform: translateY(-50%) scale(0.8);
  -webkit-transform: translateY(-50%) scale(0.8);
  -moz-transform: translateY(-50%) scale(0.8);
  -ms-transform: translateY(-50%) scale(0.8);
  -o-transform: translateY(-50%) scale(0.8);
  transition: all var(--transition-speed);
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
}
.hydro-swiper-button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.hydro-section-title {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  font-size: clamp(1.7rem, 1.6077rem + 0.4615vw, 2rem);
}
/* sản phẩm nổi bật end */

/* TRANG CHỦ END */

/* Hiệu ứng mới cho sản phẩm nổi bật */
.hydro-featured-products {
  position: relative;
  overflow: hidden;
}

.hydro-load-more-container {
  position: relative;
  z-index: 5;
  margin-top: 2rem;
}

/* Hiệu ứng nút xem thêm */
.hydro-btn-load-more {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.hydro-btn-load-more:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hydro-btn-load-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.hydro-btn-load-more:hover::after {
  left: 100%;
}

.hydro-btn-load-more:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  transform: translateY(0);
}

/* Styles for product items */
.product-item-wrapper {
  position: relative;
  transition: transform 0.3s ease;
}

.hydro-product-hidden {
  display: none !important;
}

/* Counter styles for mobile */
.hydro-product-counter {
  position: absolute;
  bottom: -30px;
  right: 15px;
  background-color: rgba(var(--primary-color-rgb), 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Loading styles */
#hydro-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5000;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hydro-loading .spinner-border {
  width: 3rem;
  height: 3rem;
  color: var(--primary-color) !important;
  animation: pulseAnimation 1.5s infinite ease-in-out,
    spinner-border 0.75s linear infinite;
  -webkit-animation: pulseAnimation 1.5s infinite ease-in-out,
    spinner-border 0.75s linear infinite;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.7;
    -webkit-transform: scale(1.1) rotate(180deg);
    -moz-transform: scale(1.1) rotate(180deg);
    -ms-transform: scale(1.1) rotate(180deg);
    -o-transform: scale(1.1) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
    -webkit-transform: scale(1) rotate(360deg);
    -moz-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
    -o-transform: scale(1) rotate(360deg);
  }
}

/* Tab button styles */
.hydro-tab-btn {
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  outline: none !important;
}

.hydro-tab-btn:hover {
  transform: translateY(-3px);
}
/* 
.hydro-tab-btn::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
} */

/* .hydro-tab-btn:hover::before,
.hydro-tab-btn.active::before {
  width: 70%;
  left: 15%;
} */

/* Hiệu ứng hover cho sản phẩm */
.product-item-wrapper:hover {
  transform: translateY(-10px);
}

/* Tối ưu hiển thị trên các thiết bị */
@media (max-width: 768px) {
  .hydro-product-counter {
    bottom: -25px;
    right: 10px;
    padding: 3px 10px;
    font-size: 0.7rem;
  }

  .hydro-swiper-button {
    transform: translateY(-50%) scale(0.8);
  }

  .hydro-swiper-button-navigate-prev {
    left: -10px;
  }

  .hydro-swiper-button-navigate-next {
    right: -10px;
  }
}

@media (max-width: 576px) {
  .hydro-tab-btn {
    padding: 5px 10px;
  }

  .hydro-product-tabs-name {
    font-size: 1rem;
  }

  .hydro-product-tabs-des {
    font-size: 0.8rem;
  }

  #hydro-loading {
    padding: 1rem;
  }

  #hydro-loading .spinner-border {
    width: 2rem;
    height: 2rem;
  }
}

/* sản phẩm item start */
/* Base styles for products */
.product-item-wrapper {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
  transform: translateY(20px);
}

.product-item-wrapper.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Loading styles */
#hydro-loading {
  transition: all 0.4s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* Hidden product styles */
.hydro-product-hidden {
  display: none;
  opacity: 0;
  transform: translateY(30px);
}

/* Load more button styles */
.hydro-btn-load-more {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hydro-btn-load-more:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Counter styles for mobile */
.hydro-product-counter {
  position: absolute;
  bottom: -30px;
  right: 15px;
  background-color: rgba(var(--primary-color-rgb), 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Advanced animations for product appearance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-item-animated {
  animation: fadeInUp 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.product-item-animated:nth-child(even) {
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.1s;
}
/* sản phẩm item end */

/* tin tức nổi bật start */
/* Featured News Section */
.hydro-featured-news {
  background-color: var(--background-color);
  padding: 60px 0;
  position: relative;
}

.hydro-news-swiper {
  padding: 20px 10px;
}

.hydro-news-card {
  overflow: hidden;
  transition: transform var(--transition-speed);
  -webkit-transition: transform var(--transition-speed);
  -moz-transition: transform var(--transition-speed);
  -ms-transition: transform var(--transition-speed);
  -o-transition: transform var(--transition-speed);
}

.hydro-news-card:hover {
  transform: translateY(-10px);
}

.hydro-news-image {
  overflow: hidden;
}
.index .hydro-news-image {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.hydro-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
  -webkit-transition: transform var(--transition-speed);
  -moz-transition: transform var(--transition-speed);
  -ms-transition: transform var(--transition-speed);
  -o-transition: transform var(--transition-speed);
}

.hydro-news-card:hover .hydro-news-image img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.hydro-news-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.index .hydro-news-title {
  text-align: center;
}
.hydro-news-title:hover {
  color: var(--primary-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hydro-news-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.hydro-news-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hydro-news-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.hydro-featured-news .hydro-news-pagination .swiper-pagination-bullet {
  background-color: #333;
}
.hydro-featured-news .hydro-news-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
.hydro-featured-news .hydro-news-pagination .swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
}
.hydro-swiper-button {
  cursor: pointer;
}
.hydro-swiper-button svg path {
  transition: fill 0.3s ease;
  -webkit-transition: fill 0.3s ease;
  -moz-transition: fill 0.3s ease;
  -ms-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
}
.hydro-swiper-button:hover svg path {
  fill: var(--secondary-color);
  transition: fill 0.3s ease;
  -webkit-transition: fill 0.3s ease;
  -moz-transition: fill 0.3s ease;
  -ms-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
}
/* tin tức nổi bật end */

/* footer start */
/* Footer Section */
.hydro-footer {
  background: radial-gradient(100% 100% at 50% 0%, #0465b2 0%, #022b4c 100%);
  color: var(--text-light);
  padding: 30px 0;
}
.hydro-footer .container {
  position: relative;
  z-index: 5;
}
.hydro-footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hydro-footer-logo {
  max-width: 400px;
}
.hydro-footer-logo img {
  width: 100%;
  object-fit: contain;
}

.hydro-footer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.hydro-footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.hydro-footer-menu {
  list-style: none;
  padding-left: 0;
}

.hydro-footer-menu li {
  margin-bottom: 10px;
}

.hydro-footer-menu a {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-speed);
  -webkit-transition: color var(--transition-speed);
  -moz-transition: color var(--transition-speed);
  -ms-transition: color var(--transition-speed);
  -o-transition: color var(--transition-speed);
}

.hydro-footer-menu a:hover {
  color: var(--secondary-color);
  transition: color var(--transition-speed);
  -webkit-transition: color var(--transition-speed);
  -moz-transition: color var(--transition-speed);
  -ms-transition: color var(--transition-speed);
  -o-transition: color var(--transition-speed);
}

.hydro-social-icons {
  display: flex;
  gap: 15px;
}

.hydro-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--icon-background);
  border-radius: 50%;
  color: var(--text-light);
  transition: all var(--transition-speed);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all var(--transition-speed);
  -moz-transition: all var(--transition-speed);
  -ms-transition: all var(--transition-speed);
  -o-transition: all var(--transition-speed);
}
.hydro-social-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.hydro-social-icon:hover {
  filter: brightness(0.8);
  color: var(--text-light);
  -webkit-filter: brightness(0.8);
}
.hydro-footer-address {
  background: rgba(0, 102, 179, 1);
  color: var(--text-light);
}
.hydro-footer-address-box-item {
  font-weight: 400;
  font-size: 1rem;
}
.hydro-footer-address-box-title {
  font-weight: 600;
  text-decoration: underline;
  font-size: clamp(1.2rem, 1.1385rem + 0.3077vw, 1.4rem);
  color: var(--text-light);
}

/* footer end */

/* banner start */
/* Banner Section */
.hydro-about-banner {
  position: relative;
  background-image: var(--background-banner);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
  z-index: 1;
}
.hydro-about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    70deg,
    rgba(21, 59, 105, 1) 0%,
    rgba(21, 59, 105, 0.93) 50%,
    rgba(21, 59, 105, 0) 100%
  );
  z-index: -1;
}

.hydro-breadcrumb .breadcrumb-item {
  color: var(--text-light);
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  font-weight: 600;
}

.hydro-breadcrumb .breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.hydro-breadcrumb .breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.hydro-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary-color);
  content: ">";
}

.hydro-breadcrumb .breadcrumb-item.active {
  color: var(--secondary-color);
}

.hydro-banner-title {
  color: var(--text-light);
  font-size: clamp(1.5rem, 1.0385rem + 2.3077vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.hydro-banner-tires {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 50%;
  z-index: 1;
}

/* banner end */

/* trang giới thiệu start */
/* Introduction Section */
.hydro-about-intro {
  padding: 60px 0;
  background-color: var(--background-color);
}

.hydro-about-images {
  position: relative;
}

.hydro-about-image-main {
  overflow: hidden;
  min-height: 100%;
}
.hydro-about-images-col-right {
  position: relative;
  z-index: 3;
}
.hydro-about-image-small {
  overflow: hidden;
}

.hydro-about-image-medium {
  overflow: hidden;
  --bs-aspect-ratio: 130%;
  outline: 10px solid var(--background-color);
  position: relative;
  z-index: 10;
}
.hydro-about-image-main a,
.hydro-about-image-main img,
.hydro-about-image-small a,
.hydro-about-image-small img,
.hydro-about-image-medium a,
.hydro-about-image-medium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.hydro-about-title {
  color: var(--acent-blue);
  font-size: clamp(1.5rem, 1.2846rem + 1.0769vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.hydro-about-text p {
  color: var(--text-dark);
  line-height: 1.6;
}

.hydro-about-full-text {
}

.hydro-about-full-text p {
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.6;
}
.hydro-about-image-main:hover img,
.hydro-about-image-medium:hover img,
.hydro-about-image-small:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

/* trạng thái start */
/* Stats Section */
.hydro-about-stats {
  background: var(--background-gradient);
  background-image: url("images/about/circuit-pattern.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: var(--text-light);
}

.hydro-stat-item {
  text-align: center;
  padding: 0 15px;
  position: relative;
}

.hydro-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.hydro-stat-icon {
  margin-bottom: 20px;
  color: var(--text-light);
}

.hydro-stat-title {
  font-size: clamp(1.2rem, 1.1385rem + 0.3077vw, 1.4rem);
  font-weight: 400;
  line-height: 1.4;
}
.hydro-stat-title strong,
.hydro-stat-title b {
  font-weight: 800;
}
.hydro-stat-title span {
  font-weight: 700;
  color: var(--secondary-color);
}
.hydro-about-stats-box {
  background-image: var(--stats-background);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
  overflow: hidden;
}
.hydro-about-stats-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.7;
  z-index: -1;
  mix-blend-mode: screen;
}
.hydro-stat-item-col {
  position: relative;
}
.hydro-stat-item-col::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.hydro-stat-item-col:last-child::before {
  display: none;
}
/* trạng thái end */

/* lich su hinh thanh start */
/* Company History Section */

/* Company History Section */
.hydro-history {
  background: var(--background-gradient);
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hydro-history::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--background-history);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.hydro-history-main-slider {
  position: relative;
  z-index: 1;
}

.hydro-history-slide {
  padding: 30px 20px;
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(1);
  cursor: pointer;
  align-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.swiper-slide-active .hydro-history-slide {
  opacity: 1;
  transform: scale(1);
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

.hydro-history-summary {
  padding: 20px;
  border-radius: var(--border-radius);
  height: 100%;
  position: relative;
  z-index: 1;
  color: var(--white-color);
  align-content: center;
  /*background-color: rgba(0, 0, 0, 0.1);
  */
  backdrop-filter: blur(5px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.0692rem + 0.1538vw, 1.2rem);
  text-align: center;
}

.swiper-slide-active .hydro-history-summary {
  /* background-color: rgba(0, 0, 0, 0.2); */
  transform: translateY(0);
  /* border-left: 3px solid var(--secondary-color); */
}

.hydro-history-summary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: var(--white-color);
  z-index: -1;
}

.hydro-history-summary::after {
  content: "";
  position: absolute;
  top: -11px;
  right: -9px;
  width: 20px;
  height: 20px;
  background-color: var(--white-color);
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.hydro-history-detail {
  padding: 20px;
}

.hydro-history-year {
  font-size: clamp(1.6rem, 1.7846rem + 0.8vw, 2.2rem);
  font-weight: 800;
  color: var(--white-color);
  transition: all 0.5s ease;
  opacity: 0.7;
  transform: scale(0.9) translateX(0%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transform: scale(0.9) translateX(0%);
  -moz-transform: scale(0.9) translateX(0%);
  -ms-transform: scale(0.9) translateX(0%);
  -o-transform: scale(0.9) translateX(0%);
}

.swiper-slide-active .hydro-history-year {
  color: var(--accent-color);
  opacity: 1;
  transform: scale(1.1) translateX(15%);
  -webkit-transform: scale(1.1) translateX(15%);
  -moz-transform: scale(1.1) translateX(15%);
  -ms-transform: scale(1.1) translateX(15%);
  -o-transform: scale(1.1) translateX(15%);
}

.hydro-history-dot {
  width: 20px;
  height: 20px;
  background-color: var(--text-light);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.hydro-history-thumb.swiper-slide-thumb-active .hydro-history-dot,
.swiper-slide-active .hydro-history-dot {
  background-color: var(--accent-color);
  transform: scale(1.3);
  box-shadow: 0 0 15px var(--accent-color);
}

.hydro-history-thumbs {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, #f37021 0%, #d0d0d0 48%, #0465b2 100%);
  font-weight: 800;
  color: var(--background-color);
  text-transform: uppercase;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hydro-history-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.5s ease;
  transform: scale(0.9);
  opacity: 0.7;
}

.swiper-slide-active .hydro-history-thumb {
  transform: scale(1.1);
  opacity: 1;
}

.hydro-history-content-slider {
  position: relative;
  z-index: 5;
  padding: 10px 0;
}

.hydro-history-content-slide {
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.5s ease;
  cursor: pointer;
}

.swiper-slide-active .hydro-history-content-slide {
  opacity: 1;
  transform: scale(1);
}

.hydro-history-content-slide-item {
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  height: 100%;
  align-content: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  position: relative;
  text-align: justify;
  font-size: clamp(0.8rem, 0.7538rem + 0.2308vw, 0.95rem);
}
.hydro-history-content-slide-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: var(--white-color);
  z-index: -1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.hydro-history-content-slide-item::after {
  content: "";
  position: absolute;
  bottom: 13%;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--white-color);
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.swiper-slide-active .hydro-history-content-slide-item {
}

/* Swiper Navigation */
.hydro-history-prev,
.hydro-history-next {
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.hydro-history-prev:hover,
.hydro-history-next:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.hydro-history-prev:after,
.hydro-history-next:after {
  font-size: 18px;
}

.hydro-history-section-title {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 1.6385rem + 0.8077vw, 2.4rem);
  font-weight: 700;
}

.hydro-history-slider-wrapper {
}
.hydro-history-content-swiper,
.hydro-history-main-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/* lich su hinh thanh end */

/* phương châm hoạt động start */
/* Operating Principles Section */
.hydro-principles {
  background-color: var(--background-color);
  color: var(--text-dark);
  padding: 80px 0;
}
.hydro-principles-image-box {
  height: 90%;
}
.hydro-principles-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--border-radius);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  -ms-border-radius: var(--border-radius);
  -o-border-radius: var(--border-radius);
}

.hydro-principles-image img,
.hydro-principles-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hydro-principles-content {
  padding: 20px;
}

.hydro-principle-item {
  display: flex;
}

.hydro-principle-icon {
  flex: 0 0 60px;
  height: 60px;
  background-color: var(--acent-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.hydro-principle-icon img {
  width: 30px;
  height: 30px;
}

.hydro-principle-text {
  flex: 1;
}

.hydro-principle-title {
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--acent-blue);
  text-transform: uppercase;
}
.hydro-principle-description {
  text-align: justify;
  font-size: clamp(0.8rem, 0.7538rem + 0.2308vw, 0.95rem);
}
.hydro-principles-image-box-group {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(40%);
  -webkit-transform: translateY(-50%) translateX(40%);
  -moz-transform: translateY(-50%) translateX(40%);
  -ms-transform: translateY(-50%) translateX(40%);
  -o-transform: translateY(-50%) translateX(40%);
  display: flex;
  flex-direction: column;
}
.hydro-principles-image-box-group-item {
  width: 88px;
  height: 75px;
  outline: 2px solid var(--white-color);
  background: var(--acent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hydro-principles-image-box-group-item img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
/* phương châm hoạt động end */

/* chứng nhận start */
/* Certifications Section */
.hydro-certifications {
  background-color: #fafafa;
  padding: 80px 0;
}

.hydro-certifications-subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
}

.hydro-certificate-card {
  padding: 20px;
  text-align: center;
  transition: transform var(--transition-speed);
}

.hydro-certificate-card:hover {
  transform: translateY(-10px);
}

.hydro-certificate-image {
  overflow: hidden;
  --bs-aspect-ratio: 141%;
}
.hydro-certificate-image img,
.hydro-certificate-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hydro-certificate-caption {
  color: var(--text-dark);
  font-size: 14px;
}

.hydro-certifications-pagination {
  position: relative;
  text-align: center;
}

.hydro-certifications-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: var(--text-dark);
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hydro-certifications-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hydro-certificate-caption {
  font-weight: 600;
}
/* chứng nhận end */

/* trang giới thiệu end */

/* trang sản phẩm start */
/* Tabs Section */
.hydro-product-wheels-tabs {
  background-color: var(--background-color);
  padding: 20px 0;
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.hydro-product-wheels-tab-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hydro-product-wheels-tab {
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  cursor: pointer;
  transition: color var(--transition-speed);
}

.hydro-product-wheels-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: width var(--transition-speed);
}

.hydro-product-wheels-tab:hover {
  color: var(--accent-color);
}

.hydro-product-wheels-tab.active {
  color: var(--accent-color);
}

.hydro-product-wheels-tab.active::after {
  width: 100%;
}

/* Content Section */
.hydro-product-wheels-content {
  padding: 50px 0;
  background-color: var(--background-color);
}

.hydro-product-wheels-section {
  display: none;
}

.hydro-product-wheels-section.active {
  display: block;
}

/* Filters */
.hydro-product-wheels-filters {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.hydro-product-wheels-filter-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hydro-product-wheels-filter-group {
  margin-bottom: 25px;
}

.hydro-product-wheels-filter-group-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
  padding-left: 15px;
}

.hydro-product-wheels-filter-group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.hydro-product-wheels-filter-options {
  padding-left: 5px;
}

.hydro-product-wheels-filter-options .form-check {
  margin-bottom: 8px;
}

.hydro-product-wheels-filter-options .form-check-input {
  border-color: #ccc;
}

.hydro-product-wheels-filter-options .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.hydro-product-wheels-filter-options .form-check-label {
  font-size: 14px;
  color: var(--text-dark);
}

.hydro-product-wheels-filter-reset {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-speed);
  width: 100%;
}

.hydro-product-wheels-filter-reset:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Sorting */
.hydro-product-wheels-sorting {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.hydro-product-wheels-results {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-dark);
}

.hydro-product-wheels-results span {
  font-weight: 600;
  color: var(--primary-color);
}

.hydro-product-wheels-sort-select {
  width: auto;
  min-width: 200px;
  border-color: #e0e0e0;
  color: var(--text-dark);
  font-size: 14px;
}

/* Product Grid */
.hydro-product-wheels-grid {
  margin-bottom: 40px;
}

.hydro-product-wheels-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}

.hydro-product-wheels-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hydro-product-wheels-card-image {
  position: relative;
  overflow: hidden;
}

.hydro-product-wheels-card-image img,
.hydro-product-wheels-card-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.hydro-product-wheels-card:hover .hydro-product-wheels-card-image img {
  transform: scale(1.05);
}

.hydro-product-wheels-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-color-rgb), 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.hydro-product-wheels-card:hover .hydro-product-wheels-card-overlay {
  opacity: 1;
}

.hydro-product-wheels-card-btn {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition-speed);
}

.hydro-product-wheels-card-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.hydro-product-wheels-card-content {
  padding: 20px;
}

.hydro-product-wheels-card-title {
  font-size: clamp(0.9rem, 0.7769rem + 0.6154vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hydro-product-wheels-card-title:hover {
  color: var(--secondary-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.hydro-product-wheels-card-specs {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.hydro-product-wheels-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.hydro-product-wheels-card-feature {
  background-color: #f0f0f0;
  color: var(--text-dark);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.hydro-product-wheels-card-price {
  font-size: clamp(0.86rem, 0.7554rem + 0.5231vw, 1.2rem);
  font-weight: 700;
  color: var(--secondary-color);
}

/* Pagination */
.hydro-product-wheels-pagination {
  margin-top: 40px;
}

.hydro-product-wheels-pagination .pagination {
  gap: 5px;
}

.hydro-product-wheels-pagination .page-item .page-link {
  border: none;
  color: var(--text-dark);
  background-color: #f0f0f0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all var(--transition-speed);
}

.hydro-product-wheels-pagination .page-item .page-link:hover {
  background-color: #e0e0e0;
}

.hydro-product-wheels-pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.hydro-product-wheels-pagination .page-item.disabled .page-link {
  color: #aaa;
  background-color: #f0f0f0;
}

/* trang sản phẩm end */

/* trang sản phẩm chi tiết start */
/* Breadcrumb Styles */
.hydro-product-breadcrumb {
  padding: 15px 0;
  background-color: #f9f9f9;
}

.hydro-product-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.hydro-product-breadcrumb .breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.hydro-product-breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.hydro-product-breadcrumb .breadcrumb-item.active {
  color: var(--text-dark);
}

/* Product Detail Section */
.hydro-product-detail {
  padding: 30px 0;
}

/* Product Gallery */
.hydro-product-gallery {
  display: flex;
  gap: 20px;
  position: relative;
  height: auto;
  aspect-ratio: 4/3;
  max-height: 600px;
}

.hydro-product-main-slider {
  width: calc(100% - 110px);
  height: 100%;
  max-width: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hydro-product-main-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.hydro-product-main-image img,
.hydro-product-main-image a {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hydro-product-main-slider:hover .hydro-product-main-image img {
  transform: scale(1.05);
}

.hydro-product-thumb-slider {
  width: 100px;
  height: 100%;
}

.hydro-product-thumb {
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-speed), border var(--transition-speed);
  border: 2px solid transparent;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hydro-product-thumb img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.hydro-product-thumb-slider .swiper-slide-thumb-active .hydro-product-thumb {
  opacity: 1;
  border-color: var(--accent-color);
}

.hydro-product-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(var(--primary-color-rgb), 0.8);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color var(--transition-speed);
}

.hydro-product-slider-nav:hover {
  background-color: var(--accent-color);
}

.hydro-product-slider-prev {
  left: 10px;
}

.hydro-product-slider-next {
  right: 10px;
}

/* Product Info */
.hydro-product-info {
}

.hydro-product-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.hydro-product-category {
  font-size: clamp(1.7rem, 1.6077rem + 0.4615vw, 2rem);
  color: var(--accent-color);
  font-weight: 800;
}

.hydro-product-description {
  margin-bottom: 30px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Key Specifications */
.hydro-product-key-specs {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.hydro-product-specs-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.hydro-product-specs-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.hydro-product-spec-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.hydro-product-spec-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.hydro-product-spec-content {
  flex-grow: 1;
}

.hydro-product-spec-label {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.hydro-product-spec-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Additional Specifications */
.hydro-product-additional-specs {
  margin-bottom: 30px;
}

.hydro-product-specs-table {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid #eee;
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}

.hydro-product-specs-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.hydro-product-specs-row:last-child {
  border-bottom: none;
}

.hydro-product-specs-label {
  width: 40%;
  padding: 12px 15px;
  background-color: #f9f9f9;
  font-weight: 500;
  color: var(--text-dark);
}

.hydro-product-specs-value {
  width: 60%;
  padding: 12px 15px;
  color: var(--primary-color);
}

/* Product Features */
.hydro-product-features {
  margin-bottom: 30px;
}

.hydro-product-features-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.hydro-product-features-list li {
  margin-bottom: 10px;
  color: var(--text-dark);
  position: relative;
}

.hydro-product-features-list li::marker {
  color: var(--accent-color);
}

/* Product Actions */
.hydro-product-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.hydro-product-price {
  font-size: clamp(1.3rem, 1.2385rem + 0.3077vw, 1.5rem);
  font-weight: 700;
  color: var(--secondary-color);
}

.hydro-product-find-dealer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: background-color var(--transition-speed);
  display: inline-block;
}

.hydro-product-find-dealer:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

/* Related Products Section */
.hydro-related-products {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.hydro-related-product-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}

.hydro-related-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hydro-related-product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  overflow: hidden;
}

.hydro-related-product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hydro-related-product-card:hover .hydro-related-product-image img {
  transform: scale(1.05);
}

.hydro-related-product-content {
  padding: 20px;
}

.hydro-related-product-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.hydro-related-product-specs {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.hydro-related-product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}
/* trang sản phẩm chi tiết end */

/* kết quả tìm kiếm start */
/* Results List Styles */
.hydro-wheel-find-result-list {
  padding: 50px 0;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.hydro-wheel-find-result-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hydro-wheel-find-result-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.hydro-wheel-find-result-image {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f9f9f9;
}

.hydro-wheel-find-result-image img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hydro-wheel-find-result-item:hover .hydro-wheel-find-result-image img {
  transform: scale(1.05);
}

.hydro-wheel-find-result-info {
  text-align: center;
}

.hydro-wheel-find-result-product-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.hydro-wheel-find-result-product-category {
  color: #666;
  margin-bottom: 15px;
}

.hydro-wheel-find-result-specs {
  margin-top: 10px;
}

.hydro-wheel-find-result-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hydro-wheel-find-result-view-btn,
.hydro-wheel-find-result-dealer-btn {
  display: block;
  padding: 12px 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.hydro-wheel-find-result-view-btn {
  background-color: var(--primary-color);
  color: #fff;
}

.hydro-wheel-find-result-view-btn:hover {
  background-color: #014e86;
  color: #fff;
}

.hydro-wheel-find-result-dealer-btn {
  background-color: #e9ecef;
  color: #333;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hydro-wheel-find-result-dealer-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.hydro-wheel-find-result-pagination {
  margin-top: 30px;
}

.pagination .page-link {
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 4px;
  margin: 0 3px;
}

.pagination .page-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
}

/* Loading and Animation Styles */
.finder-loading {
  border-radius: 8px;
}

.finder-result-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.finder-result-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.fade-in-item {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fade-in-item {
  animation-name: fadeInUp;
}

/* Badge styles for specifications */
.hydro-wheel-find-result-specs .badge {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 30px;
  background-color: #f1f3f5;
  color: #495057;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hydro-wheel-find-result-specs .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
  .hydro-wheel-find-result-item {
    padding: 15px;
  }

  .hydro-wheel-find-result-product-title {
    font-size: 20px;
  }

  .hydro-wheel-find-result-actions {
    margin-top: 15px;
  }

  .hydro-wheel-find-result-specs .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .hydro-wheel-find-result-product-title {
    font-size: 18px;
  }

  .hydro-wheel-find-result-view-btn,
  .hydro-wheel-find-result-dealer-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .finder-result-heading {
    font-size: 1.25rem;
  }
}

/* Loader container styles */
.loader-container {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-container .spinner-border {
  width: 3rem;
  height: 3rem;
  color: var(--primary-color);
}

.hy-sailun-btn-find-tire {
  position: relative;
  overflow: hidden;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
  padding: 8px 10px;
}

.hy-sailun-btn-find-tire:hover {
  background-color: #ed8d53;
}

.hy-sailun-btn-find-tire:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}
.hy-sailun-finder-fields .form-label {
  font-weight: 600;
  color: var(--background-color);
  font-size: 1.2rem;
}

.page-cong-cu-tim-lop .hy-section-index-tire-finder {
  min-height: 600px;
}
.page-cong-cu-tim-lop .hy-sailun-tire-finder-image {
  bottom: 10%;
}
.page-cong-cu-tim-lop .hydro-wheel-find-result-list {
  min-height: 300px;
}
/* trang tìm đại lý start */
/* Header Styles */
.hydro-sailun-danh-sach-dai-ly-header {
  padding: 50px 0 30px;
  background-color: var(--background-color);
}

.hydro-sailun-danh-sach-dai-ly-title {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hydro-sailun-danh-sach-dai-ly-subtitle {
  font-size: 18px;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.breadcrumb-item a:hover {
  color: var(--accent-color);
}

.breadcrumb-item.active {
  color: var(--text-dark);
}

/* Filter Styles */
.hydro-sailun-danh-sach-dai-ly-filters {
  padding-bottom: 40px;
}

.hydro-sailun-danh-sach-dai-ly-filter-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hydro-sailun-danh-sach-dai-ly-filter-group {
  margin-bottom: 15px;
}

.hydro-sailun-danh-sach-dai-ly-filter-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.hydro-sailun-danh-sach-dai-ly-select,
.hydro-sailun-danh-sach-dai-ly-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  background-color: var(--background-color);
  color: var(--text-dark);
  font-size: 15px;
  transition: all var(--transition-speed);
}

.hydro-sailun-danh-sach-dai-ly-select:focus,
.hydro-sailun-danh-sach-dai-ly-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(4, 101, 178, 0.1);
}

.hydro-sailun-danh-sach-dai-ly-search-btn {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-speed);
  margin-top: 31px; /* Align with input fields */
}

.hydro-sailun-danh-sach-dai-ly-search-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Main Content Area */
.hydro-sailun-danh-sach-dai-ly-main {
  padding-bottom: 80px;
}

/* Results Info */
.hydro-sailun-danh-sach-dai-ly-results-info {
  margin-bottom: 20px;
}

.hydro-sailun-danh-sach-dai-ly-results-info p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Dealer List Container */
.hydro-sailun-danh-sach-dai-ly-list-container {
  height: 100%;
  padding-right: 15px;
}

.hydro-sailun-danh-sach-dai-ly-list {
  max-height: 700px;
  overflow-y: auto;
  padding-right: 10px;
  margin-right: -10px;
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #f1f1f1;
}

.hydro-sailun-danh-sach-dai-ly-list::-webkit-scrollbar {
  width: 6px;
}

.hydro-sailun-danh-sach-dai-ly-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.hydro-sailun-danh-sach-dai-ly-list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.hydro-sailun-danh-sach-dai-ly-list::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* Dealer Card Styles */
.hydro-sailun-danh-sach-dai-ly-card {
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border-color);
  margin-bottom: 20px;
  cursor: pointer;
}

.hydro-sailun-danh-sach-dai-ly-card:hover,
.hydro-sailun-danh-sach-dai-ly-card.active {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.hydro-sailun-danh-sach-dai-ly-card.active {
  border-color: var(--accent-color);
}

.hydro-sailun-danh-sach-dai-ly-card.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-color);
}

.hydro-sailun-danh-sach-dai-ly-card-content {
  padding: 25px;
}

.hydro-sailun-danh-sach-dai-ly-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hydro-sailun-danh-sach-dai-ly-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hydro-sailun-danh-sach-dai-ly-card-info {
  margin-bottom: 20px;
}

.hydro-sailun-danh-sach-dai-ly-card-address,
.hydro-sailun-danh-sach-dai-ly-card-phone,
.hydro-sailun-danh-sach-dai-ly-card-hours {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.hydro-sailun-danh-sach-dai-ly-card-address svg,
.hydro-sailun-danh-sach-dai-ly-card-phone svg,
.hydro-sailun-danh-sach-dai-ly-card-hours svg {
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--accent-blue);
}

.hydro-sailun-danh-sach-dai-ly-card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hydro-sailun-danh-sach-dai-ly-service-tag {
  background-color: var(--tag-bg-color);
  color: var(--text-dark);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
}

.hydro-sailun-danh-sach-dai-ly-card-actions {
  display: flex;
  gap: 10px;
}

.hydro-sailun-danh-sach-dai-ly-card-btn {
  padding: 10px 15px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-speed);
  flex: 1;
}

.hydro-sailun-danh-sach-dai-ly-card-btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.hydro-sailun-danh-sach-dai-ly-card-btn-primary:hover {
  background-color: var(--accent-blue);
  color: var(--text-light);
  transform: translateY(-2px);
}

.hydro-sailun-danh-sach-dai-ly-card-btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.hydro-sailun-danh-sach-dai-ly-card-btn-secondary:hover {
  background-color: rgba(var(--primary-color-rgb), 0.05);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Map Container Styles */
.hydro-sailun-danh-sach-dai-ly-map-container {
  position: relative;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.hydro-sailun-danh-sach-dai-ly-map {
  width: 100%;
  height: 100%;
}

.hydro-sailun-danh-sach-dai-ly-map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  pointer-events: none;
}

.hydro-sailun-danh-sach-dai-ly-map-info {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  pointer-events: auto;
}

.hydro-sailun-danh-sach-dai-ly-map-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.hydro-sailun-danh-sach-dai-ly-map-info p {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.hydro-sailun-danh-sach-dai-ly-map-btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all var(--transition-speed);
  margin-top: 10px;
}

.hydro-sailun-danh-sach-dai-ly-map-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* No Results Styles */
.hydro-sailun-danh-sach-dai-ly-no-results-message {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin: 30px 0;
}

.hydro-sailun-danh-sach-dai-ly-no-results-message svg {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.hydro-sailun-danh-sach-dai-ly-no-results-message h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hydro-sailun-danh-sach-dai-ly-no-results-message p {
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 20px;
}

.hydro-sailun-danh-sach-dai-ly-reset-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.hydro-sailun-danh-sach-dai-ly-reset-btn:hover {
  background-color: var(--accent-color);
}

/* trang tìm đại lý end */

/* liên hệ start */

/* Contact Section Styles */
.hydro-sailun-danh-sach-dai-ly-contact {
  padding: 80px 0;
  display: flex;
  align-items: center;
  background-color: #e8f1f8;
}

/* Help Column Styles */
.hydro-sailun-danh-sach-dai-ly-help-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hydro-sailun-danh-sach-dai-ly-help-content {
  text-align: center;
  max-width: 350px;
}

.hydro-sailun-danh-sach-dai-ly-help-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.hydro-sailun-danh-sach-dai-ly-help-illustration {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.hydro-sailun-danh-sach-dai-ly-help-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0; /* Will be animated with GSAP */
}

/* Form Column Styles */
.hydro-sailun-danh-sach-dai-ly-form-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hydro-sailun-danh-sach-dai-ly-form-content {
  width: 100%;
  max-width: 450px;
  padding: 0 15px;
}

.hydro-sailun-danh-sach-dai-ly-form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.hydro-sailun-danh-sach-dai-ly-contact-form {
  opacity: 0; /* Will be animated with GSAP */
}

.hydro-sailun-danh-sach-dai-ly-form-group {
  margin-bottom: 20px;
}

.hydro-sailun-danh-sach-dai-ly-form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--input-border-color);
  border-radius: 8px;
  background-color: var(--input-bg-color);
  color: var(--text-dark);
  font-size: 16px;
  transition: all var(--transition-speed);
}

.hydro-sailun-danh-sach-dai-ly-form-control:focus {
  outline: none;
  border-color: var(--input-focus-border-color);
  box-shadow: 0 0 0 3px rgba(4, 101, 178, 0.1);
}

.hydro-sailun-danh-sach-dai-ly-form-textarea {
  resize: none;
  min-height: 120px;
}

.hydro-sailun-danh-sach-dai-ly-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--background-gradient);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition-speed);
  text-transform: uppercase;
}

.hydro-sailun-danh-sach-dai-ly-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 36, 107, 0.3);
}

/* Email Column Styles */
.hydro-sailun-danh-sach-dai-ly-email-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hydro-sailun-danh-sach-dai-ly-email-content {
  text-align: center;
  max-width: 350px;
}

.hydro-sailun-danh-sach-dai-ly-email-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  opacity: 0; /* Will be animated with GSAP */
}

.hydro-sailun-danh-sach-dai-ly-email-icon {
  background-color: var(--primary-color);
  color: var(--text-light);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.hydro-sailun-danh-sach-dai-ly-email-address {
  text-align: left;
}

.hydro-sailun-danh-sach-dai-ly-email-address p {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
  line-height: 1.4;
}

.hydro-sailun-danh-sach-dai-ly-email-illustration {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.hydro-sailun-danh-sach-dai-ly-email-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0; /* Will be animated with GSAP */
}

/* liên hệ end */

/* giao diện trang liên hệ start */

/* Main Content Styles */
.hydro-sailun-contact-main {
  padding: 60px 0;
}

/* Section Titles */
.hydro-sailun-contact-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}

/* Address Section Styles */
.hydro-sailun-contact-address-section {
  margin-bottom: 30px;
}

.hydro-sailun-contact-address-item {
  margin-bottom: 20px;
}

.hydro-sailun-contact-address-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Map Container Styles */
.hydro-sailun-contact-map-container {
}

.hydro-sailun-contact-map {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.hydro-sailun-contact-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}

/* Form Section Styles */
.hydro-sailun-contact-form-section {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 0 0 30px;
}

.hydro-sailun-contact-form {
  margin-top: 20px;
}

.hydro-sailun-contact-form-group {
  margin-bottom: 20px;
}

.hydro-sailun-contact-form-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.hydro-sailun-contact-required {
  color: var(--error-color);
  margin-left: 3px;
}

.hydro-sailun-contact-form-input,
.hydro-sailun-contact-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--input-border-color);
  border-radius: var(--border-radius);
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--background-color);
  transition: all var(--transition-speed);
}

.hydro-sailun-contact-form-input:focus,
.hydro-sailun-contact-form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(4, 101, 178, 0.1);
}

.hydro-sailun-contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.hydro-sailun-contact-form-submit {
  margin-top: 30px;
}

.hydro-sailun-contact-submit-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--background-gradient);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.hydro-sailun-contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 36, 107, 0.3);
}

/* Form Validation Styles */
.hydro-sailun-contact-form-input.is-invalid,
.hydro-sailun-contact-form-textarea.is-invalid {
  border-color: var(--error-color);
}

.hydro-sailun-contact-form-input.is-valid,
.hydro-sailun-contact-form-textarea.is-valid {
  border-color: var(--success-color);
}

.hydro-sailun-contact-error-message {
  color: var(--error-color);
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.hydro-sailun-contact-form-input.is-invalid
  + .hydro-sailun-contact-error-message,
.hydro-sailun-contact-form-textarea.is-invalid
  + .hydro-sailun-contact-error-message {
  display: block;
}

/* Form Success Message */
.hydro-sailun-contact-success-message {
  background-color: rgba(67, 160, 71, 0.1);
  color: var(--success-color);
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  display: none;
}

/* Form Error Message */
.hydro-sailun-contact-form-error {
  background-color: rgba(229, 57, 53, 0.1);
  color: var(--error-color);
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  display: none;
}

/* giao diện trang liên hệ end */

/* Danh sách tin tức */
.hydro-danh-sach-tin-tuc-wrapper {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.hydro-tin-tuc-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hydro-tin-tuc-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0056b3, #0091ff);
  border-radius: 2px;
  margin: 20px auto;
}

.hydro-tin-tuc-filter {
  background-color: #f4f3f3;
  padding: 10px 30px;
  border-radius: 8px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
  margin-bottom: 35px;
  /* border: 1px solid rgba(0, 86, 179, 0.1); */
}

.hydro-tin-tuc-filter label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.hydro-tin-tuc-select {
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #333;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.hydro-tin-tuc-select:focus {
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
  border-color: #0056b3;
  outline: none;
  background-color: #fff;
}

.hydro-tin-tuc-filter-btn {
  height: 50px;
  background: linear-gradient(135deg, #0056b3, #0091ff);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2);
  max-width: 100px;
}

.hydro-tin-tuc-filter-btn:hover {
  background: linear-gradient(135deg, #003d80, #007ad9);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.25);
  color: white;
}

.hydro-tin-tuc-result {
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hydro-tin-tuc-count {
  font-size: 0.95rem;
  color: #555;
}

.hydro-tin-tuc-count span {
  font-weight: 700;
  color: #0056b3;
}

.hydro-tin-tuc-sort-select {
  width: auto;
  min-width: 180px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 15px;
  font-size: 0.9rem;
  background-color: #f9f9f9;
}

.hydro-tin-tuc-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hydro-tin-tuc-item.show {
  opacity: 1;
  transform: translateY(0);
}

.hydro-tin-tuc-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
}

.hydro-tin-tuc-image {
  overflow: hidden;
}

.hydro-tin-tuc-image img,
.hydro-tin-tuc-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hydro-tin-tuc-item:hover .hydro-tin-tuc-image img {
  transform: scale(1.08);
}

.hydro-tin-tuc-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 86, 179, 0.85);
  color: white;
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hydro-tin-tuc-content {
  padding: 25px;
  position: relative;
}

.hydro-tin-tuc-category {
  display: inline-block;
  background-color: #f0f7ff;
  color: #0056b3;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 86, 179, 0.15);
}

.hydro-tin-tuc-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.hydro-tin-tuc-item-title a {
  color: #222;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hydro-tin-tuc-item-title a:hover {
  color: #0056b3;
}

.hydro-tin-tuc-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hydro-tin-tuc-read-more {
  display: inline-flex;
  align-items: center;
  color: #0056b3;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 5px;
}

.hydro-tin-tuc-read-more:hover {
  color: #003d80;
  transform: translateX(5px);
}

.hydro-tin-tuc-read-more svg {
  transition: all 0.3s ease;
}

.hydro-tin-tuc-read-more:hover svg {
  transform: translateX(3px);
}

.hydro-tin-tuc-empty {
  padding: 60px 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hydro-tin-tuc-empty-icon {
  display: inline-flex;
  padding: 20px;
  background: #f0f7ff;
  border-radius: 50%;
  color: #0056b3;
}

.hydro-tin-tuc-empty h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.hydro-tin-tuc-empty p {
  color: #666;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 20px;
}

.hydro-tin-tuc-reset-btn {
  background-color: #fff;
  color: #0056b3;
  border: 1px solid #0056b3;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hydro-tin-tuc-reset-btn:hover {
  background-color: #0056b3;
  color: #fff;
}

.hydro-tin-tuc-pagination {
  margin-top: 40px;
}

.hydro-tin-tuc-pagination .pagination {
  gap: 8px;
}

.hydro-tin-tuc-pagination .page-item .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  color: #555;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: #fff;
}

.hydro-tin-tuc-pagination .page-item .page-link:hover {
  background-color: #f0f7ff;
  color: #0056b3;
  border-color: #0056b3;
  z-index: 1;
}

.hydro-tin-tuc-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #0056b3, #0091ff);
  color: white;
  border-color: #0056b3;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2);
}

.hydro-tin-tuc-pagination .page-item.disabled .page-link {
  background-color: #f9f9f9;
  color: #bbb;
  cursor: not-allowed;
  border-color: #eee;
}

.hydro-tin-tuc-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.hydro-tin-tuc-loader .spinner-border {
  width: 50px;
  height: 50px;
  border-width: 5px;
  color: #0056b3;
}

@media (max-width: 992px) {
  .hydro-tin-tuc-item-title {
    font-size: 1.1rem;
  }

  .hydro-tin-tuc-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hydro-danh-sach-tin-tuc-wrapper {
    padding: 60px 0;
  }

  .hydro-tin-tuc-title h1 {
    font-size: 2rem;
  }

  .hydro-tin-tuc-result {
    flex-direction: column;
    gap: 15px;
  }

  .hydro-tin-tuc-sort {
    width: 100%;
  }

  .hydro-tin-tuc-sort-select {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hydro-tin-tuc-filter {
    padding: 20px;
  }

  .hydro-tin-tuc-title h1 {
    font-size: 1.5rem;
  }

  .hydro-tin-tuc-item-title {
    font-size: 1rem;
  }

  .hydro-tin-tuc-excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }

  .hydro-tin-tuc-pagination .page-item .page-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search Modal Styles */
.hd-do-choi-thu-cung-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.hd-do-choi-thu-cung-search-modal.active {
  display: block;
}

.hd-do-choi-thu-cung-search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hd-do-choi-thu-cung-search-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hd-do-choi-thu-cung-search-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hd-do-choi-thu-cung-search-title {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.hd-do-choi-thu-cung-search-input-group {
  position: relative;
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-search-input {
  width: 100%;
  height: 60px;
  padding: 10px 70px 10px 20px;
  border: 2px solid #eee;
  border-radius: 50px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s;
}

.hd-do-choi-thu-cung-search-input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.hd-do-choi-thu-cung-search-btn:hover {
  color: var(--red);
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}

.hd-do-choi-thu-cung-search-popular-title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hd-do-choi-thu-cung-search-tag {
  display: inline-block;
  padding: 8px 15px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.hd-do-choi-thu-cung-search-tag:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.hydro-sailun-tin-tuc-deail-hero-image {
  overflow: hidden;
  max-height: 600px;
}
.hydro-sailun-tin-tuc-deail-hero-image img,
.hydro-sailun-tin-tuc-deail-hero-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tin-tuc-detail .hydro-tin-tuc-item {
  opacity: 1;
}

/* tab */

.hydro-product-wheels-tab-product {
  text-align: center;
}

.hydro-product-wheels-tab-product .nav-tabs {
  border-bottom: none;
  background: #f0f0f0;
  width: max-content;
  margin: 0 auto;
}

.hydro-product-wheels-tab-product button {
  border: none;
  color: var(--text-dark);
  padding: 10px 50px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.hydro-product-wheels-tab-product button .tab-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.hydro-product-wheels-tab-product button .tab-description {
  font-size: 0.9rem;
}
.hydro-product-wheels-tab-product button.active {
  background: var(--primary-color);
  color: var(--white-color);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.hydro-product-wheels-tab-product .nav-item:first-of-type button {
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
}
.hydro-product-wheels-tab-product .nav-item:last-of-type button {
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

/* sửa web xấu */
.hydro-product-btn-name span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hydro-product-btn-cate span {
  font-weight: 400;
  color: var(--text-dark);
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.hydro-product-breadcrumb {
  background: transparent;
}
.hydro-product-title {
  color: var(--text-dark);
  font-size: clamp(1.1rem, 0.9769rem + 0.6154vw, 1.5rem);
  border-bottom: 1px solid #ececec;
  padding-bottom: 10px;
}

.hydro-product-code-value {
  color: #777777;
}
.hydro-product-code-label {
  font-weight: 600;
  color: var(--text-dark);
}
a.hydro-product-code-value {
  color: var(--text-dark);
  transform: translateY(-2px);
  font-size: 1.1rem;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
a.hydro-product-code-value:hover {
  color: var(--secondary-color);
}
.hydro-product-detail-table thead th {
  color: var(--secondary-color);
  text-align: center;
  font-weight: 600;
}
.hydro-product-detail-table tbody td {
  text-align: center;
}
.hydro-product-detail-table {
  overflow: hidden;
  overflow-x: auto;
}
.hydro-product-detail-table table {
  width: max-content;
  min-width: 600px;
  margin: 0 auto;
}

.hydro-product-detail-content-new-wrapper .nav-link {
  color: #777777;
  background: transparent;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 0.8077rem + 0.4615vw, 1.2rem);
  position: relative;
  padding-top: 15px;
}
.hydro-nav-item-product-detail {
  position: relative;
}
.hydro-product-detail-content-new-wrapper
  .hydro-nav-item-product-detail::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
  top: -2px;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hydro-product-detail-content-new-wrapper
  .hydro-nav-item-product-detail.active::before {
  opacity: 1;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hydro-product-detail-content-new-wrapper .nav-link.active {
  color: var(--text-dark);
  background: transparent;
}
.hydro-product-detail-content-new-wrapper {
  border-top: 1px solid #ececec;
}
.hydro-section-title {
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  border-bottom: 2px solid var(--secondary-color);
  width: max-content;
  padding-bottom: 10px;
}
.frame-lop-xe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}
.san-pham-detail .frame-lop-xe {
  opacity: 1;
}
.btn-expand-image {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #949494;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}
.hydro-tin-tuc-item {
  background: transparent !important;
  box-shadow: none !important;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.hydro-tin-tuc-date-new {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.hydro-tin-tuc-pagination .pagination {
  justify-content: end !important;
}
.hydro-tin-tuc-pagination-display {
  width: max-content;
}
#currentCount {
  background: #ebebeb;
  padding: 5px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.hydro-tin-tuc-pagination .page-item .page-link {
  background: #cfcfcf;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-size: 0.9rem;
  box-shadow: none;
}
.hydro-tin-tuc-pagination .page-item.active .page-link {
  background: #0465b2;
}
.hydro-tin-tuc-select {
  max-width: 200px;
  min-width: 120px;
}
.tin-tuc .hydro-tin-tuc-filter label {
  color: #969696;
}
.filter-group label {
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
  font-weight: 400 !important;
  color: #969696;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #969696;
  border-color: #969696;
  box-shadow: none;
}
#searchButton {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  padding: 5px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  clip-path: url(#tim-kiem-clip-path);
}
.svg-tim-kiem {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.page-tim-dai-ly .hy-dealer-filter-box {
  box-shadow: none;
  background: transparent;
}

.search-input {
  border-radius: 5px;
  border: 1px solid #dfdcdc;
  background: #f2f2f2;
  max-width: 200px;
}
.page-tim-dai-ly .filter-body {
  padding: 0;
}

.dealer-icon i {
  font-size: 2.5rem;
  color: var(--input-focus-border-color);
}
.info-row-phone,
.info-row-phone a {
  color: var(--input-focus-border-color);
}
.dealer-item .info-row-phone .info-label {
  width: max-content;
}
.dealer-item-row {
  background: #e9e9e9;
}
.dealer-info-row {
  background: var(--white-color);
}
.nhan-su-chi-dan-link {
  color: var(--input-focus-border-color);
}
.btn-lien-he-ngay {
  min-width: 180px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
  background: var(--input-focus-border-color);
  padding: 10px 0;

  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-weight: 600;
}
.btn-lien-he-ngay:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.dealer-list-body {
  overflow: auto !important;
  height: auto !important;
  max-height: initial !important;
  box-shadow: none !important;
}
.hy-dealer-list-box {
  background: transparent !important;
  box-shadow: none !important;
}
.dealer-item {
  box-shadow: none !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.hydro-sailun-tin-tuc-deail-image {
  overflow: hidden;
}
.hydro-sailun-tin-tuc-deail-image a,
.hydro-sailun-tin-tuc-deail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hydro-sailun-tin-tuc-deail-toc-title {
  color: var(--input-focus-border-color);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.1385rem + 0.3077vw, 1.4rem);
  margin-bottom: 10px;
  text-transform: capitalize;
}
.hydro-sailun-tin-tuc-deail-toc {
  border: 1px solid var(--input-focus-border-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.hydro-sailun-tin-tuc-deail-toc ul {
  list-style: decimal;
  margin: 0;
}
.hydro-sailun-tin-tuc-deail-toc ul li::marker {
  color: var(--input-focus-border-color);
  font-weight: 600;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}
.hydro-sailun-tin-tuc-deail-toc li a {
  color: var(--input-focus-border-color);
  font-weight: 600;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  text-transform: capitalize;
}
.hydro-sailun-tin-tuc-deail-toc li a:hover {
  color: var(--secondary-color);
}
.hydro-sailun-tin-tuc-deail-toc li {
  padding: 5px 0;
}
.hydro-sailun-tin-tuc-deail-toc li a:hover {
  text-decoration: underline;
}
.hydro-sailun-tin-tuc-deail-share-title {
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
}
.hydro-sailun-tin-tuc-deail-share-icon-box-a a {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hydro-sailun-tin-tuc-deail-share-icon-box-a a:hover {
  color: var(--secondary-color);
}
.hydro-quang-cao-wrapper {
  position: sticky;
  top: 70px;
}
.hydro-quang-cao-wrapper {
  width: 100%;
  height: auto;
}
.tin-tuc-detail .hydro-banner-title {
  max-width: 800px;
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
}
.tin-tuc-detail .breadcrumb-item.active a {
  color: var(--accent-color);
}
.index .hy-sailun-tire-finder-image {
  bottom: 7%;
}
