@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@font-face {
  font-family: "SVN-Aptima-Bold";
  src: url("../fonts/SVN-Aptima/SVN-Aptima-bold.eot");
  src: url("../fonts/SVN-Aptima/SVN-Aptima-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/SVN-Aptima/SVN-Aptima-bold.woff2") format("woff2"), url("../fonts/SVN-Aptima/SVN-Aptima-bold.woff") format("woff"), url("../fonts/SVN-Aptima/SVN-Aptima-bold.ttf") format("truetype"), url("../fonts/SVN-Aptima/SVN-Aptima-bold.svg#SVN-Aptima-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  background-color: #f5f5f5;
}
body.overflow-hidden {
  overflow: hidden;
}

.header-container .header-wrapper {
  width: 100%;
  padding: 0 100px 0 100px;
}
@media only screen and (max-width: 1580px) {
  .header-container .header-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.header-container .header-wrapper {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 480px) {
  .header-container .header-wrapper {
    padding: 16px;
  }
}
.header-container__top-bar {
  background: #094A7E;
  font-size: 14px;
  padding: 10px 0;
}
@media only screen and (max-width: 1080px) {
  .header-container__top-bar {
    display: none;
  }
}
.header-container__top-bar-left {
  display: flex;
  gap: 45px;
}
.header-container__top-bar-left img {
  width: 98px;
  height: 16px;
}
.header-container__top-bar-left span {
  font-size: 15px;
  color: #F5F5F5;
  visibility: hidden;
}
.header-container__top-bar-left span .hot-line {
  font-weight: bold;
}
.header-container__top-bar-right {
  display: flex;
  gap: 40px;
  align-items: center;
}
.header-container__top-bar-right span {
  font-size: 15px;
  color: #F5F5F5;
}
.header-container__top-bar-right .login-register {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-container__top-bar-right .login-register svg {
  width: 16px;
  color: #F5F5F5;
  fill: none;
}
.header-container__top-bar-right .login-register svg path {
  stroke: currentColor;
}
.header-container__top-bar-right .login-register a {
  font-size: 15px;
  color: #F5F5F5;
  text-decoration: none;
}
.header-container__top-bar-right select {
  font-size: 16px;
  width: 130px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 12px 12px 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='black' viewBox='0 0 16 16'><path d='M1.5 5l6.5 6 6.5-6'/></svg>") no-repeat right 12px center;
}
@media only screen and (max-width: 1420px) {
  .header-container__top-bar-right select {
    padding: 6px 6px 6px 8px;
  }
}
.header-container__main {
  background: #10568f;
  padding: 30px 0;
  color: white;
}
@media only screen and (max-width: 480px) {
  .header-container__main {
    padding: 0;
  }
}
.header-container__main a {
  text-decoration: none;
}
.header-container__main-logo .logo-text {
  color: #ffb100;
  margin: 0px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}
.header-container__main-logo span {
  font-size: 11px;
  color: white;
}
.header-container__main-search {
  display: flex;
  width: 540px;
  height: 40px;
}
@media only screen and (max-width: 1580px) {
  .header-container__main-search {
    width: 400px;
  }
}
@media only screen and (max-width: 1080px) {
  .header-container__main-search {
    display: none;
  }
}
.header-container__main-search input {
  flex: 1;
  padding: 0 16px;
  border: none;
  border-radius: 15px 0 0 15px;
  font-size: 16px;
  outline: none;
}
.header-container__main-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: none;
  background: white;
  border-radius: 0 15px 15px 0;
  cursor: pointer;
  margin-left: -1px;
}
.header-container__main-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-container__main-icons .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  .header-container__main-icons .item {
    display: none;
  }
}
.header-container__main-icons .item svg {
  height: 24px;
  width: auto;
}
.header-container__main-icons .item span {
  font-size: 16px;
  margin-top: 6px;
}
@media only screen and (max-width: 1080px) {
  .header-container__main-icons .item span {
    display: none;
  }
}
@media only screen and (max-width: 1080px) {
  .header-container__main-icons .avatar {
    display: none;
  }
}
.header-container__main-icons .avatar img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.header-container__main-icons .header-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  margin-left: 10px;
}
.header-container__main-icons .header-toggle svg {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 1080px) {
  .header-container__main-icons .header-toggle {
    display: block;
  }
}
.header-container__offcanvas {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .header-container__offcanvas {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    max-width: 80%;
    height: 100vh;
    z-index: 1000;
    background: #ffffff;
    transition: right 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 30px 20px;
  }
  .header-container__offcanvas.is-active {
    right: 0;
  }
  .header-container__offcanvas .offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }
  .header-container__offcanvas .offcanvas-header a {
    text-decoration: none;
  }
  .header-container__offcanvas .offcanvas-header .header-container__main-logo .logo-text {
    color: #ffb100;
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
  }
  .header-container__offcanvas .offcanvas-header .header-close {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
  }
  .header-container__offcanvas .offcanvas-header .header-close svg {
    width: 32px;
    height: 32px;
  }
  .header-container__offcanvas .header-container__mobile-extras {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .header-container__offcanvas .header-container__mobile-extras .mobile-search {
    display: flex;
    height: 40px;
    margin-bottom: 20px;
    width: 100%;
  }
  .header-container__offcanvas .header-container__mobile-extras .mobile-search input {
    flex: 1;
    padding: 0 16px;
    border: 1px solid #ccc;
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    outline: none;
  }
  .header-container__offcanvas .header-container__mobile-extras .mobile-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid #ccc;
    border-left: none;
    background: white;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    margin-left: -1px;
  }
  .header-container__offcanvas .header-container__mobile-extras .mobile-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .header-container__offcanvas .header-container__mobile-extras .mobile-icons .item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .header-container__offcanvas .header-container__mobile-extras .mobile-icons .item svg {
    height: 24px;
    width: auto;
  }
  .header-container__offcanvas .header-container__mobile-extras .mobile-icons .item img {
    width: 30px;
    height: 30px;
  }
  .header-container__offcanvas .header-container__mobile-extras .mobile-icons .item span {
    font-size: 16px;
    color: #333;
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .header-container__offcanvas {
    width: 100%;
    max-width: 100%;
  }
}
.header-container__menu {
  background: #ffffff;
}
.header-container__menu .header-wrapper {
  justify-content: flex-end;
  gap: 30px;
  padding: 0 100px 0 100px;
}
@media only screen and (max-width: 1580px) {
  .header-container__menu .header-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.header-container__menu .header-wrapper {
  height: 50px;
}
.header-container__menu a {
  text-decoration: none;
  color: #333;
}
.header-container__menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.header-container__menu ul li a {
  text-decoration: none;
  color: #333;
}
@media only screen and (max-width: 1080px) {
  .header-container__menu {
    overflow-x: auto;
    white-space: nowrap;
  }
  .header-container__menu .header-wrapper {
    padding: 10px 16px;
    height: auto;
    justify-content: flex-end;
    gap: 15px;
  }
  .header-container__menu ul {
    flex-wrap: nowrap;
    gap: 20px;
  }
  .header-container__menu ul li a {
    padding: 5px 0;
    font-size: 15px;
  }
}
.header-container .user-account-dropdown {
  position: relative;
  cursor: pointer;
}
.header-container .user-account-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.header-container .user-account-dropdown .dropdown-trigger .user-avatar-small {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ddd;
}
.header-container .user-account-dropdown .dropdown-trigger .user-avatar-small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-container .user-account-dropdown .dropdown-trigger .user-name {
  font-size: 15px;
  color: #757575;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.header-container .user-account-dropdown .dropdown-trigger svg {
  transition: transform 0.3s ease;
}
.header-container .user-account-dropdown:hover .dropdown-trigger .user-name {
  color: #10568f;
}
.header-container .user-account-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
}
.header-container .user-account-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-container .user-account-dropdown .dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 250px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.header-container .user-account-dropdown .dropdown-menu-custom::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-header {
  padding: 8px 20px 12px;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-header .name {
  font-weight: 700;
  color: #333;
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-header .email {
  color: #888;
  font-size: 13px;
  margin: 0;
  word-break: break-all;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 8px 0;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: #555;
  text-decoration: none !important;
  font-size: 14px;
  transition: all 0.2s;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-item svg {
  opacity: 0.6;
  transition: transform 0.2s;
  stroke: currentColor;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-item:hover {
  background: #f8f9fa;
  color: #10568f;
  padding-left: 24px;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-item:hover svg {
  opacity: 1;
  color: #10568f;
  transform: scale(1.1);
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-item.logout {
  color: #e74c3c;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-item.logout:hover {
  background: #fff5f5;
  color: #c0392b;
}
.header-container .user-account-dropdown .dropdown-menu-custom .menu-item.logout:hover svg {
  color: #c0392b;
}
.header-container .user-account-dropdown.main-header-user .dropdown-trigger img {
  border: 2px solid rgba(7, 5, 5, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -10px;
}
.header-container .user-account-dropdown.main-header-user .dropdown-menu-custom {
  top: calc(100% + 15px);
}
.header-container .user-account-dropdown.main-header-user .dropdown-menu-custom::before {
  right: 15px;
}

.footer-container {
  padding: 35px 0;
  background-color: #0a2240;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}
.footer-container .footer-row {
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 1080px) {
  .footer-container .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 20px;
  }
}
.footer-container .footer-logo-link {
  flex-shrink: 0;
  display: block;
}
.footer-container .footer-logo-link img {
  max-height: 70px !important;
  width: auto;
  display: block;
}
.footer-container .footer-center {
  flex: 1;
  max-width: 500px;
  margin-left: 40px;
}
@media only screen and (max-width: 1080px) {
  .footer-container .footer-center {
    margin-left: 0;
    max-width: 100%;
  }
}
.footer-container .footer-center-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.3;
}
.footer-container .footer-center-subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #f4b54f;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.footer-container .footer-center .footer-copyright {
  font-size: 16px;
  font-weight: lighter;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.footer-container .footer-right {
  flex-shrink: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media only screen and (max-width: 1080px) {
  .footer-container .footer-right {
    align-items: flex-start;
  }
}
.footer-container .footer-right .footer-location,
.footer-container .footer-right .footer-email {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}
.footer-container .footer-right .footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.footer-container .footer-right .footer-social-text {
  font-size: 16px;
  font-style: italic;
  color: #ffffff;
  font-weight: lighter;
}
.footer-container .footer-right .footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-container .footer-right .footer-social-icons .social-icon {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}
.footer-container .footer-right .footer-social-icons .social-icon svg {
  display: block;
  transition: transform 0.2s ease;
}
.footer-container .footer-right .footer-social-icons .social-icon:hover {
  color: #f4b54f;
  opacity: 0.9;
}
.footer-container .footer-right .footer-social-icons .social-icon:hover svg {
  transform: scale(1.1);
}

.bb-customer-sidebar-wrapper .bb-customer-sidebar .bb-customer-navigation .nav-pills .nav-item .nav-link.active {
  background-color: #094a7e !important;
}

.about-banner {
  position: relative;
  width: 100%;
}
.about-banner__image {
  width: 100%;
  height: 90vh;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-banner__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 86, 143, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 130px;
  padding: 50px 200px;
}
@media only screen and (max-width: 1366px) {
  .about-banner__info {
    gap: 50px;
    padding: 50px 80px;
  }
}
@media only screen and (max-width: 1080px) {
  .about-banner__info {
    padding: 35px 16px;
  }
}
@media only screen and (max-width: 768px) {
  .about-banner__info {
    flex-direction: column;
    padding: 24px 20px;
    position: relative;
  }
}
.about-banner__left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .about-banner__left {
    justify-content: center;
  }
}
.about-banner__logo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
.about-banner__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .about-banner__logo {
    width: 70px;
    height: 70px;
  }
}
.about-banner__company {
  color: #fff;
}
.about-banner__company h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 4px;
}
@media only screen and (max-width: 1366px) {
  .about-banner__company h2 {
    font-size: 22px;
  }
}
.about-banner__company p {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}
@media only screen and (max-width: 1080px) {
  .about-banner__company p {
    font-size: 16px;
  }
}
.about-banner__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .about-banner__right {
    align-items: center;
  }
}
.about-banner__desc {
  flex: 1;
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}
@media only screen and (max-width: 1080px) {
  .about-banner__desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .about-banner__desc {
    text-align: center;
  }
}
.about-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .about-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}
.about-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5a623, #e08a00);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-banner__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.about-banner__btn:hover {
  background: linear-gradient(135deg, #e08a00, #c47200);
  transform: translateY(-1px);
  color: #fff;
}
.about-banner__website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d9d9d9;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.about-banner__website svg {
  width: 16px;
  height: 16px;
}
.about-banner__website:hover {
  color: #fff;
}

.about-content {
  background: #f5f5f5;
}
.about-content__tabs {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.about-content__tabs-inner {
  display: flex;
  padding: 0 150px;
  gap: 14px;
}
@media only screen and (max-width: 1366px) {
  .about-content__tabs-inner {
    padding: 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .about-content__tabs-inner {
    padding: 0 20px;
  }
}
.about-content__tab {
  background: none;
  border: none;
  border-bottom: 3px solid #b3b3b3;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #777;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-content__tab--active {
  color: #1a1a1a;
  border-bottom-color: #e08a00;
  font-weight: 700;
}
.about-content__tab:hover:not(.about-content__tab--active) {
  color: #333;
}
.about-content__panel {
  padding: 50px 150px;
}
.about-content__panel--hidden {
  display: none;
}
@media only screen and (max-width: 1366px) {
  .about-content__panel {
    padding: 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .about-content__panel {
    padding: 0;
  }
}
.about-content__top {
  display: flex;
  height: 615px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .about-content__top {
    flex-direction: column;
    height: auto;
  }
}
.about-content__top-img {
  flex: 0 0 35%;
  overflow: hidden;
}
.about-content__top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 768px) {
  .about-content__top-img {
    flex: none;
    height: 260px;
  }
}
.about-content__top-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 80px;
  background: #fff;
}
@media only screen and (max-width: 1366px) {
  .about-content__top-info {
    padding: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .about-content__top-info {
    padding: 32px 20px;
  }
}
.about-content__top-logo {
  max-width: 650px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 28px;
}
@media only screen and (max-width: 1366px) {
  .about-content__top-logo {
    max-width: 260px;
  }
}
.about-content__top-desc {
  font-size: 22px;
  line-height: 1.75;
  color: #444;
  max-width: 650px;
  margin: 0;
}
@media only screen and (max-width: 1080px) {
  .about-content__top-desc {
    font-size: 18px;
  }
}
.about-content__bottom {
  display: flex;
  height: 440px;
}
@media only screen and (max-width: 768px) {
  .about-content__bottom {
    flex-direction: column;
    height: auto;
  }
}
.about-content__bottom-blue {
  flex: 0 0 35%;
  background: #10568f;
  overflow: hidden;
}
.about-content__bottom-blue img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .about-content__bottom-blue {
    flex: none;
    height: 180px;
  }
}
.about-content__bottom-photo {
  flex: 1;
  overflow: hidden;
}
.about-content__bottom-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 768px) {
  .about-content__bottom-photo {
    flex: none;
    height: 260px;
  }
}

.about-design {
  background: #fff;
}
.about-design__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 250px;
}
@media only screen and (max-width: 1366px) {
  .about-design__inner {
    padding: 50px 80px;
  }
}
@media only screen and (max-width: 768px) {
  .about-design__inner {
    flex-direction: column;
    padding: 40px 20px;
  }
}
.about-design__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.about-design__title-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 1366px) {
  .about-design__title-img {
    max-width: 400px;
  }
}
.about-design__qr img {
  width: 100%;
  max-width: 566px;
  height: auto;
  display: block;
}
.about-design__right {
  flex: 0 0 48%;
  overflow: hidden;
}
.about-design__right img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .about-design__right {
    flex: none;
    width: 100%;
  }
}

.hero-section-container {
  padding: 58px 100px 28px 100px;
}
@media only screen and (max-width: 1580px) {
  .hero-section-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.hero-section-container {
  background-color: #ffffff;
}
@media only screen and (max-width: 834px) {
  .hero-section-container {
    padding: 16px;
  }
}
.hero-section-container__hero .hero-desktop {
  display: flex;
  gap: 20px;
  max-height: 600px;
  width: 100%;
}
@media only screen and (max-width: 1080px) {
  .hero-section-container__hero .hero-desktop {
    gap: 10px;
  }
}
@media only screen and (max-width: 834px) {
  .hero-section-container__hero .hero-desktop {
    display: none;
  }
}
.hero-section-container__hero .hero-desktop .hero-left {
  position: relative;
  flex: 3;
  cursor: pointer;
}
.hero-section-container__hero .hero-desktop .hero-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section-container__hero .hero-desktop .hero-left::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(57, 83, 117, 0.8) 80%, #10315c);
  pointer-events: none;
  z-index: 1;
}
.hero-section-container__hero .hero-desktop .hero-left .hero-content {
  position: absolute;
  left: 70px;
  bottom: 55px;
  color: white;
  z-index: 2;
}
@media only screen and (max-width: 1300px) {
  .hero-section-container__hero .hero-desktop .hero-left .hero-content {
    left: 40px;
    right: 40px;
    bottom: 30px;
  }
}
.hero-section-container__hero .hero-desktop .hero-left .hero-content .title-desc-container {
  display: flex;
  gap: 70px;
  align-items: flex-end;
}
@media only screen and (max-width: 1080px) {
  .hero-section-container__hero .hero-desktop .hero-left .hero-content .title-desc-container {
    gap: 30px;
  }
}
.hero-section-container__hero .hero-desktop .hero-left .hero-content .title-desc-container .title h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: normal;
}
@media only screen and (max-width: 1300px) {
  .hero-section-container__hero .hero-desktop .hero-left .hero-content .title-desc-container .title h1 {
    font-size: 58px;
  }
}
.hero-section-container__hero .hero-desktop .hero-left .hero-content .title-desc-container .title h2 {
  font-size: 120px;
  font-weight: 900;
  line-height: 100%;
}
.hero-section-container__hero .hero-desktop .hero-left .hero-content .title-desc-container .title p {
  font-size: 36px;
  font-weight: 900;
}
@media only screen and (max-width: 1300px) {
  .hero-section-container__hero .hero-desktop .hero-left .hero-content .title-desc-container .title p {
    font-size: 30px;
  }
}
.hero-section-container__hero .hero-desktop .hero-left .hero-content .desc {
  display: block;
  padding: 30px 0px;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0%;
  max-width: 480px;
  color: #ddd;
}
@media only screen and (max-width: 1200px) {
  .hero-section-container__hero .hero-desktop .hero-left .hero-content .desc {
    font-size: 16px;
  }
}
.hero-section-container__hero .hero-desktop .hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 1080px) {
  .hero-section-container__hero .hero-desktop .hero-right {
    gap: 10px;
  }
}
.hero-section-container__hero .hero-desktop .hero-right .hero-card {
  position: relative;
  height: 33.3333333333%;
  overflow: hidden;
  cursor: pointer;
}
.hero-section-container__hero .hero-desktop .hero-right .hero-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section-container__hero .hero-desktop .hero-right .hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(57, 83, 117, 0.8) 80%, #10315c);
  pointer-events: none;
  z-index: 1;
}
.hero-section-container__hero .hero-desktop .hero-right .hero-card .overlay {
  position: absolute;
  bottom: 10px;
  left: 25px;
  right: 30px;
  color: white;
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .hero-section-container__hero .hero-desktop .hero-right .hero-card .overlay {
    left: 15px;
  }
}
.hero-section-container__hero .hero-desktop .hero-right .hero-card .overlay h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 2px;
}
@media only screen and (max-width: 1200px) {
  .hero-section-container__hero .hero-desktop .hero-right .hero-card .overlay h3 {
    font-size: 16px;
  }
}
.hero-section-container__hero .hero-desktop .hero-right .hero-card .overlay span {
  font-size: 16px;
  font-weight: 300;
  line-height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .hero-section-container__hero .hero-desktop .hero-right .hero-card .overlay span {
    font-size: 11px;
  }
}
.hero-section-container__hero .hero-mobile {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 834px) {
  .hero-section-container__hero .hero-mobile {
    display: block;
  }
}
.hero-section-container__hero .hero-mobile .hero-swiper {
  width: 100%;
}
.hero-section-container__hero .hero-mobile .hero-swiper .swiper-slide {
  height: auto;
}
.hero-section-container__hero .hero-mobile .hero-card {
  position: relative;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.hero-section-container__hero .hero-mobile .hero-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section-container__hero .hero-mobile .hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(57, 83, 117, 0.8) 80%, #10315c);
  pointer-events: none;
  z-index: 1;
}
.hero-section-container__hero .hero-mobile .hero-card .overlay,
.hero-section-container__hero .hero-mobile .hero-card .hero-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  z-index: 2;
}
.hero-section-container__hero .hero-mobile .hero-card.hero-left .title h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.hero-section-container__hero .hero-mobile .hero-card.hero-left .title h2 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  margin: 4px 0;
}
.hero-section-container__hero .hero-mobile .hero-card.hero-left .title p {
  font-size: 18px;
  font-weight: bold;
}
.hero-section-container__hero .hero-mobile .hero-card.hero-left .desc {
  font-size: 14px;
  margin-top: 10px;
  display: block;
  color: #ddd;
  line-height: 1.4;
}
.hero-section-container__hero .hero-mobile .hero-card .overlay h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.hero-section-container__hero .hero-mobile .hero-card .overlay span {
  font-size: 12px;
  font-weight: 300;
  display: block;
}

.breadcrumb {
  padding: 11px 100px 11px 100px;
}
@media only screen and (max-width: 1580px) {
  .breadcrumb {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  background: transparent;
  margin: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .breadcrumb {
    padding: 15px 100px 15px 100px;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1580px) {
  .breadcrumb {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    display: none !important;
  }
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #939393;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item a {
  color: #939393;
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #333;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  content: "▸";
  color: #939393;
  font-size: 20px;
  vertical-align: middle;
}
.breadcrumb .breadcrumb-item.active span {
  color: #939393;
  font-weight: 500;
}

.category-container {
  padding: 30px 100px 28px 100px;
}
@media only screen and (max-width: 1580px) {
  .category-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.category-container {
  background-color: #ffffff;
}
@media only screen and (max-width: 1420px) {
  .category-container {
    padding: 10px;
  }
}
@media only screen and (max-width: 834px) {
  .category-container {
    padding: 16px;
  }
}
.category-container__tabs {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 30px;
  position: relative;
}
@media only screen and (max-width: 1420px) {
  .category-container__tabs {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 834px) {
  .category-container__tabs {
    gap: 10px;
    padding-bottom: 0px;
  }
}
.category-container__tabs .nav {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.category-container__tabs .nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.category-container__tabs .category-swiper {
  flex: 1;
  min-width: 0;
}
.category-container__tabs .tab {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 15px;
  border-radius: 15px;
  background: #b3b3b3;
  color: #ffffff;
  cursor: pointer;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 480px) {
  .category-container__tabs .tab {
    gap: 10px;
  }
}
.category-container__tabs .tab svg {
  width: 57px;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .category-container__tabs .tab svg {
    width: 40px;
  }
}
.category-container__tabs .tab .text {
  display: flex;
  flex-direction: column;
}
.category-container__tabs .tab strong {
  font-size: 24px;
}
@media only screen and (max-width: 1580px) {
  .category-container__tabs .tab strong {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .category-container__tabs .tab strong {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1280px) {
  .category-container__tabs .tab strong {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .category-container__tabs .tab strong {
    font-size: 14px;
  }
}
.category-container__tabs .tab span {
  font-size: 12px;
  padding: 10px 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 13px;
}
.category-container__tabs .tab span svg {
  width: 17px;
  height: 17px;
}
@media only screen and (max-width: 480px) {
  .category-container__tabs .tab span {
    padding: 10px 0px;
  }
}
.category-container__tabs .tab--active {
  background: #094a7e;
}
.category-container__product-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1420px) {
  .category-container__product-stats .left,
  .category-container__product-stats .right {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 834px) {
  .category-container__product-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-container__product-stats .left,
  .category-container__product-stats .right {
    padding: 0;
    padding-top: 25px;
  }
}
.category-container__product-stats .left .text-title {
  font-size: 24px;
  color: #757575;
}
@media only screen and (max-width: 1420px) {
  .category-container__product-stats .left .text-title {
    margin: 0;
  }
}
@media only screen and (max-width: 1080px) {
  .category-container__product-stats .left .text-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.category-container__product-stats .left .text-content {
  font-size: 30px;
  color: #757575;
  font-weight: 900;
}
@media only screen and (max-width: 1080px) {
  .category-container__product-stats .left .text-content {
    font-size: 25px;
    margin-bottom: 5px;
  }
}
.category-container__product-stats .right p {
  font: 16px;
  color: #757575;
}
.category-container__product-stats .right p span {
  font-weight: 800;
}

.product-section {
  background: #f5f5f5;
}
.product-section__layout {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 60px;
  padding: 58px 100px 80px 100px;
}
@media only screen and (max-width: 1580px) {
  .product-section__layout {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 1580px) {
  .product-section__layout {
    gap: 40px;
    grid-template-columns: 300px 1fr;
  }
}
@media only screen and (max-width: 1420px) {
  .product-section__layout {
    padding: 30px 50px 30px;
  }
}
@media only screen and (max-width: 1080px) {
  .product-section__layout {
    grid-template-columns: none;
  }
}
@media only screen and (max-width: 834px) {
  .product-section__layout {
    padding: 20px 16px;
  }
}
.product-section__filter {
  background: #ffffff;
  border-radius: 8px;
  padding: 18px 28px;
}
@media only screen and (max-width: 1080px) {
  .product-section__filter {
    background: transparent;
    padding: 0;
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .product-section__filter {
    width: 100%;
  }
}
.product-section__filter-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1080px) {
  .product-section__filter-header {
    cursor: pointer;
    margin-bottom: 0px;
    padding: 10px 20px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background: #ffffff;
    border-radius: 8px;
    width: -moz-max-content;
    width: max-content;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}
.product-section__filter-header .title-with-icon {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #757575;
}
@media only screen and (max-width: 1080px) {
  .product-section__filter-header .title-with-icon {
    margin-right: 40px;
  }
}
.product-section__filter-header .clear-filter {
  font-weight: 400;
  color: #d91f1f;
  font-size: 16px;
  text-decoration: none;
  margin-left: auto;
}
.product-section__filter-header .mobile-toggle-arrow {
  display: none;
  margin-left: 15px;
  transition: 0.3s;
}
@media only screen and (max-width: 1080px) {
  .product-section__filter-header .mobile-toggle-arrow {
    display: flex;
  }
}
.product-section__filter-overlay {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .product-section__filter-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}
.product-section__filter-body {
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.3s ease-out, margin 0.3s ease-out;
  overflow: hidden;
  opacity: 1;
}
@media only screen and (max-width: 1080px) {
  .product-section__filter-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    max-height: none !important;
    opacity: 1;
    pointer-events: auto;
    background: #ffffff;
    z-index: 1010;
    padding: 20px !important;
    margin-top: 0;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    transform: translateX(-101%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    border-radius: 0;
  }
}
.product-section__filter-mobile-header {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .product-section__filter-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  .product-section__filter-mobile-header .title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
  }
  .product-section__filter-mobile-header .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
  }
}
.product-section__filter-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 0;
  margin-bottom: 15px;
}
.product-section__filter-tags-container .filter-chip {
  display: inline-flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #757575;
  transition: all 0.2s;
}
.product-section__filter-tags-container .filter-chip__label {
  display: inline-block;
  line-height: 1.2;
}
.product-section__filter-tags-container .filter-chip__remove {
  margin-left: 6px;
  cursor: pointer;
  font-size: 16px;
  color: #888;
  line-height: 1;
}
.product-section__filter-tags-container .filter-chip__remove:hover {
  color: #ff4d4f;
}
.product-section__filter-tags-container .reset-btn {
  background: none;
  border: none;
  color: #ff4d4f;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
}
.product-section__filter-tags-container .reset-btn:hover {
  text-decoration: underline;
}
.product-section__filter.is-open .mobile-toggle-arrow {
  transform: rotate(-180deg);
}
@media only screen and (max-width: 1080px) {
  .product-section__filter.is-open .product-section__filter-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 1080px) {
  .product-section__filter.is-open .product-section__filter-body {
    transform: translateX(0);
  }
}
.product-section__filter-item {
  padding: 12px 0;
}
.product-section__filter-item .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}
.product-section__filter-item .filter-header .arrow {
  transition: 0.3s;
}
.product-section__filter-item .filter-content {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow: hidden;
  transition: 0.3s;
}
.product-section__filter-item--collapsed .filter-content {
  max-height: 0;
  margin-top: 0;
}
.product-section__filter-item--collapsed .arrow {
  transform: rotate(-90deg);
}
.product-section__price-filter {
  margin: 24px 0px;
}
.product-section__price-filter .price-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #b3b3b3;
}
.product-section__price-filter #priceValue {
  font-size: 14px;
  font-weight: 400;
}
.product-section__price-filter .range-slider {
  position: relative;
  height: 30px;
}
.product-section__price-filter .range-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 4px;
  background: var(--track-bg, #ddd);
}
.product-section__price-filter .range-slider input[type=range] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  pointer-events: none;
  z-index: 3;
}
.product-section__price-filter .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #094a7e;
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
  margin-top: -6px;
}
.product-section__price-filter .range-slider input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border-radius: 4px;
}
.product-section__price-filter .range-slider input[type=range]::-moz-range-track {
  height: 4px;
  background: transparent;
  border-radius: 4px;
}
.product-section__price-filter .range-slider input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  border: none;
  width: 16px;
  height: 16px;
  background: #094a7e;
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
}
.product-section__filter-select {
  padding-bottom: 24px;
}
.product-section__filter-select label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #757575;
}
.product-section__filter-select select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #ffffff;
  font-size: 16px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.product-section__filter-select select:focus {
  outline: none;
  border-color: #f4a52c;
}
.product-section__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.product-section__checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #f4b54f;
  color: #f5f5f5;
  border-radius: 4px;
}
.product-section__checkbox span {
  font-weight: 400;
  color: #757575;
}
.product-section__products {
  flex-wrap: wrap;
  align-content: start;
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1680px) {
  .product-section__products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1280px) {
  .product-section__products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 500px) {
  .product-section__products {
    grid-template-columns: 1fr;
  }
}
.product-section__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transition: 0.2s;
  border-radius: 15px;
  flex: 0 0 calc(33.333% - 29px);
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1580px) {
  .product-section__card {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media only screen and (max-width: 1366px) {
  .product-section__card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media only screen and (max-width: 780px) {
  .product-section__card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.product-section__card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.product-section__card > a {
  display: block;
  text-decoration: none;
  flex: 1 1 50%;
  height: 50%;
  min-height: 0;
  overflow: hidden;
}
.product-section__card > a img.card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
  border-radius: 0;
  min-height: 0;
  aspect-ratio: auto;
}
.product-section__card > img.card-img {
  flex: 1 1 50%;
  height: 50%;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
  border-radius: 0;
  aspect-ratio: auto;
}
.product-section__card a {
  text-decoration: none;
}
.product-section__card .info {
  display: flex;
  flex-direction: column;
  flex: 1 1 50%;
  height: 50%;
  min-height: 0;
  padding: 20px;
}
.product-section__card .info .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #757575;
  line-height: 1.2;
  height: 58px;
  overflow: hidden;
}
.product-section__card .info .name a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 100%;
}
.product-section__card .info .name a:hover {
  text-decoration: none;
  color: inherit;
}
.product-section__card .info .price {
  font-size: 18px;
  font-weight: 600;
  color: #757575;
  letter-spacing: 0%;
  margin-top: 0;
}
.product-section__card .info .sub-price {
  font-size: 16px;
  font-weight: 300;
  color: #757575;
  padding-bottom: 13px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 13px;
}
@media only screen and (max-width: 1200px) {
  .product-section__card .info .sub-price {
    font-size: 14px;
  }
}
.product-section__card .info .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 10px;
  margin-top: 0 !important;
}
.product-section__card .info .brand img {
  aspect-ratio: auto;
  border-radius: 50%;
  height: 54px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 55px;
  background: #F7F7F7;
}
.product-section__card .info .brand span {
  font-size: 16px;
  color: #094a7e;
  font-weight: 900;
}
.product-section__card .info .actions {
  display: flex;
  gap: 8px;
}
.product-section__card .info .actions button {
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  white-space: nowrap;
  justify-content: center;
  min-width: 0;
}
.product-section__card .info .actions button svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.product-section__card .info .actions a {
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  white-space: nowrap;
  text-decoration: none;
  justify-content: center;
  min-width: 0;
}
.product-section__card .info .actions a svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.product-section__card .info .actions .contact {
  background: #f4b54f;
  color: #f5f5f5;
  flex: 1;
}
.product-section__card .info .actions .website {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  flex: 1;
  color: #757575;
}

.saved-item-list {
  flex-wrap: wrap;
  align-content: start;
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1280px) {
  .saved-item-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 500px) {
  .saved-item-list {
    grid-template-columns: 1fr;
  }
}
.saved-item-list .saved-item-card {
  position: relative;
}

.viewed-products-container .viewed-products {
  padding: 40px 100px 40px 100px;
}
@media only screen and (max-width: 1580px) {
  .viewed-products-container .viewed-products {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.viewed-products-container .viewed-products {
  background: #ffffff;
}
@media only screen and (max-width: 834px) {
  .viewed-products-container .viewed-products {
    padding: 16px !important;
  }
}
.viewed-products-container .viewed-products .title {
  font-size: 20px;
  margin-bottom: 27px;
  border-bottom: 4px solid orange;
  display: inline-block;
  padding-bottom: 6px;
  color: #2C2C2C;
  padding: 0px 15px;
  line-height: 52px;
}
@media only screen and (max-width: 480px) {
  .viewed-products-container .viewed-products .title {
    font-size: 16px;
  }
}
.viewed-products-container .viewed-products .product-slider {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
@media only screen and (max-width: 480px) {
  .viewed-products-container .viewed-products .product-slider {
    gap: 3px;
  }
}
.viewed-products-container .viewed-products .product-slider .nav {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.viewed-products-container .viewed-products .product-slider .nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.viewed-products-container .viewed-products .product-slider .products-swiper {
  flex: 1;
  min-width: 0;
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card a {
  text-decoration: none;
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  height: 172px;
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card .name {
  font-size: 16px;
  font-weight: 700;
  color: #757575;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin-top: 5px;
  margin-bottom: 0;
  height: 45px;
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card .name a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card .name a:hover {
  text-decoration: none;
  color: inherit;
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card .price {
  font-weight: 400;
  font-size: 16px;
  color: #757575;
  margin-top: auto;
  margin: 0;
  margin-top: 9px;
}
@media only screen and (max-width: 1200px) {
  .viewed-products-container .viewed-products .product-slider .products-swiper .product-card .price {
    font-size: 15px;
  }
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card .sub-price {
  margin: 0px;
  color: #757575;
  font-size: 18px;
}
@media only screen and (max-width: 1200px) {
  .viewed-products-container .viewed-products .product-slider .products-swiper .product-card .sub-price {
    font-size: 15px;
  }
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card .company {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 35px;
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card .company img {
  width: 55px;
  height: 54px;
  border-radius: 50%;
  aspect-ratio: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background: #F7F7F7;
}
@media only screen and (max-width: 1200px) {
  .viewed-products-container .viewed-products .product-slider .products-swiper .product-card .company img {
    width: 41px;
    height: 41px;
  }
}
.viewed-products-container .viewed-products .product-slider .products-swiper .product-card .company span {
  font-size: 16px;
  font-weight: 900;
  color: #094A7E;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-page-section {
  background: #f5f5f5;
}
.product-page-section__layout {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 60px;
}
@media (max-width: 1600px) {
  .product-page-section__layout {
    gap: 24px;
  }
}

.single-product-content {
  font-family: "Inter", system-ui;
  background: #ffffff;
}

.product-detail-container {
  font-family: "Inter", system-ui;
  color: #757575;
}
.product-detail-container .product-detail-layout {
  padding: 55px 100px 20px 100px;
}
@media only screen and (max-width: 1580px) {
  .product-detail-container .product-detail-layout {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.product-detail-container .product-detail-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 50px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .product-detail-container .product-detail-layout {
    grid-template-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 30px 100px 20px 100px;
    gap: 30px;
    gap: 30px;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1580px) {
  .product-detail-container .product-detail-layout {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 834px) {
  .product-detail-container .product-detail-layout {
    gap: 15px;
    padding: 16px !important;
  }
}
.product-detail-container .product-detail-layout {
  /* Khung nền xám cho Skeleton */
}
.product-detail-container .product-detail-layout .skeleton-box {
  background-color: #e2e5e7;
  position: relative;
  overflow: hidden;
}
.product-detail-container .product-detail-layout {
  /* Hiệu ứng tia sáng chạy ngang (Shimmer) */
}
.product-detail-container .product-detail-layout .skeleton-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
.product-detail-container .product-detail-layout {
  /* Định hình kích thước cho cái ảnh loading */
}
.product-detail-container .product-detail-layout .image-skeleton {
  width: 100%;
  aspect-ratio: 16/9;
  /* Hoặc chiều cao cố định tùy layout của ông */
}
.product-detail-container .product-detail-gallery {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  min-width: 0;
  width: 100%;
  width: 100%;
}
.product-detail-container .product-detail-gallery .main-image-container {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  background: #f9f9f9;
  overflow: hidden;
}
.product-detail-container .product-detail-gallery .main-image-container .main-image-wrapper {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-container .product-detail-gallery .main-image-container .main-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.product-detail-container .product-detail-gallery .main-image-container .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 32px;
  background: rgba(233, 233, 233, 0.6);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: rgb(255, 255, 255);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.product-detail-container .product-detail-gallery .main-image-container .nav-btn i {
  font-size: 18px;
}
.product-detail-container .product-detail-gallery .main-image-container .nav-btn:hover {
  background: #f4b54f;
  color: #fff;
}
.product-detail-container .product-detail-gallery .main-image-container .nav-btn.main-prev {
  left: 15px;
}
.product-detail-container .product-detail-gallery .main-image-container .nav-btn.main-next {
  right: 15px;
}
.product-detail-container .product-detail-gallery .main-image-container:hover .nav-btn {
  opacity: 1;
  visibility: visible;
}
.product-detail-container .product-detail-gallery .main-image-container:hover img {
  transform: scale(1.02);
}
.product-detail-container .product-detail-gallery .thumbnails-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.product-detail-container .product-detail-gallery .thumbnails-slider-container .thumbnails-slider-wrapper {
  flex: 1;
  overflow: hidden;
  padding: 2px 0;
}
.product-detail-container .product-detail-gallery .thumbnails-slider-container .thumb-nav-btn {
  position: absolute;
  z-index: 11;
  width: 28px;
  height: 28px;
  background: rgba(233, 233, 233, 0.6);
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(255, 255, 255);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.product-detail-container .product-detail-gallery .thumbnails-slider-container .thumb-nav-btn:hover {
  border-color: #f4b54f;
  color: #f4b54f;
}
.product-detail-container .product-detail-gallery .thumbnails-slider-container .thumb-nav-btn.prev {
  left: -5px;
}
.product-detail-container .product-detail-gallery .thumbnails-slider-container .thumb-nav-btn.next {
  right: -5px;
}
.product-detail-container .product-detail-gallery .thumbnails-slider-container:hover .thumb-nav-btn {
  opacity: 1;
  visibility: visible;
}
.product-detail-container .product-detail-gallery .thumb-item {
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
}
.product-detail-container .product-detail-gallery .thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  transition: 0.3s;
}
.product-detail-container .product-detail-gallery .thumb-item:hover img, .product-detail-container .product-detail-gallery .thumb-item.active img {
  opacity: 1;
}
.product-detail-container .product-detail-gallery .thumb-item.active {
  border-color: #f4b54f;
  box-shadow: 0 2px 8px rgba(244, 181, 79, 0.2);
}
.product-detail-container .product-detail-content {
  width: 100%;
  width: 100%;
}
@media (max-width: 1440px) {
  .product-detail-container .product-detail-content {
    width: 100%;
    max-width: none;
  }
}
.product-detail-container .product-detail-content .product-title {
  font-size: 24px;
  font-weight: 700;
  color: #757575;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .product-detail-container .product-detail-content .product-title {
    font-size: 16px;
  }
}
.product-detail-container .product-detail-content .product-price {
  margin-bottom: 25px;
}
.product-detail-container .product-detail-content .product-price .price-range {
  font-size: 36px;
  font-weight: 600;
  color: #f4b54f;
  display: block;
}
.product-detail-container .product-detail-content .product-price .moq-label {
  font-size: 16px;
  font-weight: 400;
  color: #757575;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-price .moq-label {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-detail-container .product-detail-content .product-price .moq-label {
    font-size: 12px;
  }
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-price {
    margin-bottom: 15px;
  }
  .product-detail-container .product-detail-content .product-price .price-range {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .product-detail-container .product-detail-content .product-price {
    margin-bottom: 10px;
  }
  .product-detail-container .product-detail-content .product-price .price-range {
    font-size: 18px;
  }
}
.product-detail-container .product-detail-content .product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.product-detail-container .product-detail-content .product-actions .btn-contact {
  background: #f4b54f;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.product-detail-container .product-detail-content .product-actions .btn-contact:hover {
  opacity: 0.9;
}
.product-detail-container .product-detail-content .product-actions .btn-website {
  border: 1px solid #dcdcdc;
  color: #757575;
  padding: 10px 14px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.product-detail-container .product-detail-content .product-actions .btn-website:hover {
  background: #f8f8f8;
}
.product-detail-container .product-detail-content .product-actions .action-secondary {
  display: flex;
  gap: 15px;
}
@media (max-width: 576px) {
  .product-detail-container .product-detail-content .product-actions .action-secondary {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
}
.product-detail-container .product-detail-content .product-actions .action-secondary button {
  background: none;
  border: none;
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.product-detail-container .product-detail-content .product-actions .action-secondary button:hover {
  color: #f4b54f;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-actions {
    margin-bottom: 15px;
  }
  .product-detail-container .product-detail-content .product-actions .btn-contact,
  .product-detail-container .product-detail-content .product-actions .btn-website,
  .product-detail-container .product-detail-content .product-actions .action-secondary button {
    font-size: 12px;
    padding: 8px 12px;
  }
}
.product-detail-container .product-detail-content .product-specs {
  border-top: 1px solid #EFEFEF;
  padding-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-specs {
    padding-top: 20px;
    margin-bottom: 15px;
  }
}
.product-detail-container .product-detail-content .product-specs .specs-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #757575;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-specs .specs-title {
    font-size: 16px;
  }
}
.product-detail-container .product-detail-content .product-specs .specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}
.product-detail-container .product-detail-content .product-specs .specs-grid .spec-item {
  display: flex;
  font-size: 15px;
  padding-bottom: 8px;
  color: #939393;
  gap: 25px;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-specs .specs-grid .spec-item {
    font-size: 13px;
    padding-bottom: 0;
  }
}
.product-detail-container .product-detail-content .product-specs .specs-grid .spec-item span {
  font-weight: 300;
  width: 100px;
}
.product-detail-container .product-detail-content .product-specs .specs-grid .spec-item strong {
  font-weight: 600;
  width: 50%;
}
.product-detail-container .product-detail-content .product-specs .specs-delivery .spec-item,
.product-detail-container .product-detail-content .product-specs .specs-payment .spec-item {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  padding-bottom: 8px;
  gap: 15px;
  color: #939393;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-specs .specs-delivery .spec-item,
  .product-detail-container .product-detail-content .product-specs .specs-payment .spec-item {
    font-size: 12px;
  }
}
.product-detail-container .product-detail-content .product-specs .specs-delivery .spec-item span,
.product-detail-container .product-detail-content .product-specs .specs-payment .spec-item span {
  font-weight: 400;
  flex: 0 0 30%;
}
.product-detail-container .product-detail-content .product-specs .specs-delivery .spec-item strong,
.product-detail-container .product-detail-content .product-specs .specs-payment .spec-item strong {
  font-weight: 600;
  flex: 1;
}
.product-detail-container .product-detail-content .product-description {
  font-size: 15px;
  line-height: 1.6;
  color: #939393;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-description {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.product-detail-container .product-detail-content .product-description :deep(ul) {
  padding-left: 15px;
}
.product-detail-container .product-detail-content .product-description :deep(ul) li {
  margin-bottom: 5px;
  position: relative;
}
.product-detail-container .product-detail-content .product-description :deep(ul) li::marker {
  color: #ccc;
}
.product-detail-container .product-detail-content .product-description :deep(h1), .product-detail-container .product-detail-content .product-description :deep(h2), .product-detail-container .product-detail-content .product-description :deep(h3), .product-detail-container .product-detail-content .product-description :deep(h4), .product-detail-container .product-detail-content .product-description :deep(h5), .product-detail-container .product-detail-content .product-description :deep(h6) {
  font-size: 24px !important;
  line-height: 1.3 !important;
}
@media (max-width: 820px) {
  .product-detail-container .product-detail-content .product-description :deep(h1), .product-detail-container .product-detail-content .product-description :deep(h2), .product-detail-container .product-detail-content .product-description :deep(h3), .product-detail-container .product-detail-content .product-description :deep(h4), .product-detail-container .product-detail-content .product-description :deep(h5), .product-detail-container .product-detail-content .product-description :deep(h6) {
    font-size: 18px !important;
  }
}
@media (max-width: 480px) {
  .product-detail-container .product-detail-content .product-description :deep(h1), .product-detail-container .product-detail-content .product-description :deep(h2), .product-detail-container .product-detail-content .product-description :deep(h3), .product-detail-container .product-detail-content .product-description :deep(h4), .product-detail-container .product-detail-content .product-description :deep(h5), .product-detail-container .product-detail-content .product-description :deep(h6) {
    font-size: 16px !important;
  }
}

.brand-card-container {
  padding: 0 100px 20px 100px;
}
@media only screen and (max-width: 1580px) {
  .brand-card-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.brand-card-container {
  padding: 0 100px 20px 100px;
}
@media only screen and (max-width: 1580px) {
  .brand-card-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.brand-card-container {
  background-color: #F3F3F3;
  overflow: hidden;
  gap: 50px;
  display: grid;
  gap: 50px;
  display: grid;
  grid-template-columns: 8fr 4fr;
  height: 218px;
}
@media (max-width: 1440px) {
  .brand-card-container {
    height: auto;
    min-height: 218px;
  }
}
@media (max-width: 820px) {
  .brand-card-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 16px !important;
    height: auto;
  }
}
.brand-card-container .brand-card-content {
  display: grid;
  grid-template-columns: 3fr 5fr 4fr;
  align-items: center;
  padding: 0;
  min-height: 120px;
  gap: 68px;
  width: 100%;
}
@media (max-width: 1440px) {
  .brand-card-container .brand-card-content {
    gap: 15px;
  }
}
@media (max-width: 1080px) {
  .brand-card-container .brand-card-content {
    grid-template-columns: 1fr;
    padding: 20px 0;
    gap: 10px;
  }
}
@media (max-width: 820px) {
  .brand-card-container .brand-card-content {
    grid-template-columns: 1fr;
    padding: 15px 8px;
    gap: 10px;
  }
}
.brand-card-container .brand-logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 1440px) {
  .brand-card-container .brand-logo {
    margin-top: 0;
  }
}
.brand-card-container .brand-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-card-container .brand-text {
  color: #757575;
  font-weight: 400;
  width: 100%;
}
.brand-card-container .brand-text .brand-name {
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 5px 0;
}
.brand-card-container .brand-text .brand-type {
  font-size: 16px;
  margin: 0;
  text-align: justify;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 5;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 820px) {
  .brand-card-container .brand-text {
    padding: 20px 0;
    margin-top: 0;
  }
  .brand-card-container .brand-text .brand-name {
    font-size: 18px;
  }
  .brand-card-container .brand-text .brand-type {
    font-size: 14px;
  }
}
.brand-card-container .brand-stats {
  width: 100%;
  color: #757575;
  font-weight: 400;
}
.brand-card-container .brand-stats .stat-item {
  font-size: 16px;
  color: #757575;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
.brand-card-container .brand-stats .stat-item .stat-bullet {
  color: #1e1e1e;
  font-size: 18px;
}
.brand-card-container .brand-stats .stat-item strong {
  font-weight: 600;
}
@media (max-width: 820px) {
  .brand-card-container .brand-stats .stat-item {
    font-size: 14px;
  }
  .brand-card-container .brand-stats .stat-item .stat-bullet {
    font-size: 14px;
  }
}
.brand-card-container .brand-stats .brand-btn-view-detail {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.brand-card-container .brand-stats .brand-btn-view-detail .btn-view-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 8px 25px;
  border: 1px solid #f4b54f;
  border-radius: 50px;
  color: #f4b54f;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}
.brand-card-container .brand-stats .brand-btn-view-detail .btn-view-detail:hover {
  background: #f4b54f;
  color: #fff;
}
@media (max-width: 991px) {
  .brand-card-container .brand-stats {
    border: none;
    padding: 20px 0;
    width: 100%;
    margin-top: 0;
  }
}
.brand-card-container .brand-banner {
  width: 100%;
  width: 100%;
  height: 218px;
}
.brand-card-container .brand-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .brand-card-container .brand-banner img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 991px) {
  .brand-card-container .brand-banner {
    width: 100%;
    height: 200px;
    border-radius: 8px;
  }
}

.orther-product-section .product-section__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1440px) {
  .orther-product-section .product-section__products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .orther-product-section .product-section__products {
    grid-template-columns: repeat(1, 1fr);
  }
}
.orther-product-section .product-section__card {
  max-width: none;
}
@media (max-width: 820px) {
  .orther-product-section .product-section__card .info {
    padding: 0 10px 16px 10px;
  }
}
.orther-product-section .product-section__card .name {
  font-size: 16px;
  font-weight: 300;
  margin: 8px 0;
  color: #757575;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .orther-product-section .product-section__card .name {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .orther-product-section .product-section__card .price {
    font-size: 16px;
  }
}
.orther-product-section .product-section__card .actions {
  justify-content: center;
}
@media (max-width: 1024px) {
  .orther-product-section .product-section__card .actions {
    flex-direction: column;
    align-items: center;
  }
  .orther-product-section .product-section__card .actions .contact,
  .orther-product-section .product-section__card .actions .website {
    width: 100%;
    justify-content: center;
  }
  .orther-product-section .product-section__card .actions .contact {
    flex-direction: row-reverse;
  }
}
@media (max-width: 480px) {
  .orther-product-section .product-section__card .actions {
    flex-direction: row;
  }
}

.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.share-modal {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: auto;
  text-align: center;
}

.copy-link-group {
  display: flex;
  gap: 5px;
  margin-top: 15px;
}

.copy-link-group input {
  flex: 1;
  padding: 5px;
  border: 1px solid #ddd;
}

.product-technical-section {
  padding: 40px 100px 20px 100px;
}
@media only screen and (max-width: 1580px) {
  .product-technical-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.product-technical-section {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (max-width: 834px) {
  .product-technical-section {
    padding: 0 16px 0 16px !important;
  }
}
.product-technical-section .tabs-header {
  display: flex;
  gap: 40px;
}
.product-technical-section .tabs-header .tab-item {
  padding: 5px 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  position: relative;
}
.product-technical-section .tabs-header .tab-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #F4B54F;
}
.product-technical-section .technical-grid-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .product-technical-section .technical-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.product-technical-section .technical-info-column .product-main-title {
  font-size: 24px;
  font-weight: 700;
  color: #757575;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .product-technical-section .technical-info-column .product-main-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.product-technical-section .technical-info-column .product-info-details .info-section {
  margin-bottom: 30px;
}
.product-technical-section .technical-info-column .product-info-details .info-section .section-title {
  font-size: 20px;
  font-weight: 500;
  color: #757575;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .product-technical-section .technical-info-column .product-info-details .info-section .section-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.product-technical-section .technical-info-column .product-info-details .spec-row {
  display: flex;
  margin-bottom: 5px;
  line-height: 1.6;
  gap: 10px;
}
.product-technical-section .technical-info-column .product-info-details .spec-row .spec-label {
  width: 30%;
  color: #939393;
  font-weight: 300;
  font-size: 18px;
  flex-shrink: 0;
  overflow-wrap: break-word;
}
.product-technical-section .technical-info-column .product-info-details .spec-row .spec-value {
  color: #939393;
  flex: 1;
  font-weight: 600;
  font-size: 16px;
}
.product-technical-section .technical-info-column .product-info-details .spec-row .spec-value .sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-technical-section .technical-info-column .product-info-details .spec-row .spec-value .sub-list li {
  margin-bottom: 6px;
  color: #939393;
}
@media (max-width: 768px) {
  .product-technical-section .technical-info-column .product-info-details .spec-row .spec-label,
  .product-technical-section .technical-info-column .product-info-details .spec-row .spec-value {
    font-size: 14px;
  }
}
.product-technical-section .technical-info-column .product-info-details .divider {
  border: 1px solid #D9D9D9;
  margin: 45px 0;
}
@media (max-width: 768px) {
  .product-technical-section .technical-info-column .product-info-details .divider {
    margin: 20px 0;
  }
}
.product-technical-section .technical-info-column .product-info-details .view-more {
  color: #B3B3B3;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .product-technical-section .technical-info-column .product-info-details .view-more {
    font-size: 14px;
    margin-top: 20px;
  }
}
.product-technical-section .technical-info-column .product-info-details .view-more:hover {
  color: #f15a24;
}
.product-technical-section .technical-image-column {
  top: 20px;
}
.product-technical-section .technical-image-column img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-description-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-description-gallery .block-full-width {
  width: 100%;
}
.product-description-gallery .block-full-width h3 {
  font-size: 19px;
}
.product-description-gallery .block-full-width img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-description-gallery .block-almost-full-width {
  padding: 0 100px 40px 100px;
}
@media only screen and (max-width: 1580px) {
  .product-description-gallery .block-almost-full-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 834px) {
  .product-description-gallery .block-almost-full-width {
    padding: 16px !important;
  }
}
.product-description-gallery .block-almost-full-width h3 {
  font-size: 19px;
}
.product-description-gallery .block-almost-full-width img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-description-gallery {
  /* Container chính */
}
.product-description-gallery .block-full-width-modern {
  width: 100%;
  position: relative;
  /* 1. Phần ảnh Cha-Con (Nền chính) */
}
.product-description-gallery .block-full-width-modern .modern-image-wrapper {
  position: relative;
  width: 100%;
}
.product-description-gallery .block-full-width-modern .modern-image-wrapper > img {
  width: 100%;
  display: block;
}
.product-description-gallery .block-full-width-modern {
  /* 2. Logo Orona Essentia (banner-7) - Đặt vào góc trái của ảnh */
}
.product-description-gallery .block-full-width-modern .modern-logo-group {
  position: absolute;
  /* 1. Căn giữa theo chiều dọc */
  top: 50%;
  transform: translateY(-50%);
  /* 2. Khoảng cách lề trái */
  left: 10%;
  /* 3. Kích thước */
  width: 224px;
  z-index: 2;
  display: block;
}
.product-description-gallery .block-full-width-modern .modern-logo-group img {
  width: 100%;
  height: auto;
}
.product-description-gallery .block-full-width-modern {
  /* 3. Dải màu xanh lá */
}
.product-description-gallery .block-full-width-modern .modern-text-strip {
  background-color: #16A44A;
  color: #bddec2;
  padding: 30px 0;
  margin-top: -1px;
  /* Khử khe hở pixel giữa ảnh và div */
  height: 315px;
  align-content: center;
}
.product-description-gallery .block-full-width-modern .modern-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.product-description-gallery .block-full-width-modern .modern-title-group {
  flex: 0 0 45%;
  justify-items: center;
  /* Chiếm khoảng 45% chiều rộng dải xanh */
}
.product-description-gallery .block-full-width-modern .modern-title-group img {
  width: 514px;
  /* Để hình chữ tự co giãn theo container */
  height: auto;
  display: block;
}
@media (max-width: 820px) {
  .product-description-gallery .block-full-width-modern .modern-title-group img {
    width: 80%;
  }
}
.product-description-gallery .block-full-width-modern {
  /* 5. Danh sách bên phải */
}
.product-description-gallery .block-full-width-modern .modern-features-list {
  list-style: none;
  padding-left: 50px;
  margin: 0;
  flex: 0 0 50%;
  /* Chiếm phần còn lại */
}
.product-description-gallery .block-full-width-modern .modern-features-list li {
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 820px) {
  .product-description-gallery .block-full-width-modern .modern-features-list li {
    font-size: 16px;
  }
}
.product-description-gallery .block-full-width-modern .modern-features-list li::before {
  content: "•";
  position: absolute;
  left: -20px;
}
.product-description-gallery .block-full-width-modern {
  /* Responsive cho Mobile */
}
@media (max-width: 768px) {
  .product-description-gallery .block-full-width-modern .modern-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-description-gallery .block-full-width-modern .modern-title-group {
    width: 80%;
    /* Trên mobile cho chữ to ra tí */
    margin-bottom: 20px;
  }
  .product-description-gallery .block-full-width-modern .modern-features-list {
    border-left: none;
    padding-left: 20px;
  }
  .product-description-gallery .block-full-width-modern .modern-logo-group {
    width: 35%;
  }
}
.product-description-gallery .block-full-width-modern .modern-materials-grid {
  display: grid;
  /* Chia làm 7 cột bằng nhau */
  grid-template-columns: repeat(7, 1fr);
  /* Tự động tính chiều cao hàng */
  grid-auto-rows: minmax(150px, auto);
  gap: 0;
  width: 100%;
}
.product-description-gallery .block-full-width-modern .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Quan trọng: để ảnh không bị méo khi co giãn */
  display: block;
}
.product-description-gallery .block-full-width-modern {
  /* Định nghĩa vị trí từng ô */
  /* Hàng 1 */
}
.product-description-gallery .block-full-width-modern .item-1 {
  grid-column: 1/3;
  grid-row: 1/2;
}
.product-description-gallery .block-full-width-modern {
  /* Tay vịn */
}
.product-description-gallery .block-full-width-modern .item-2 {
  grid-column: 3/4;
  grid-row: 1/2;
}
.product-description-gallery .block-full-width-modern {
  /* Hoa văn xám */
}
.product-description-gallery .block-full-width-modern .item-3 {
  grid-column: 4/5;
  grid-row: 1/2;
}
.product-description-gallery .block-full-width-modern {
  /* Màu đen */
}
.product-description-gallery .block-full-width-modern .item-4 {
  grid-column: 5/6;
  grid-row: 1/3;
}
.product-description-gallery .block-full-width-modern {
  /* Cột dọc màu rêu (CAO NHẤT) */
}
.product-description-gallery .block-full-width-modern .item-5 {
  grid-column: 6/8;
  grid-row: 1/2;
}
.product-description-gallery .block-full-width-modern {
  /* Nút bấm thang máy */
  /* Hàng 2 */
}
.product-description-gallery .block-full-width-modern .item-6 {
  grid-column: 1/2;
  grid-row: 2/3;
}
.product-description-gallery .block-full-width-modern {
  /* Gỗ xanh */
}
.product-description-gallery .block-full-width-modern .item-7 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.product-description-gallery .block-full-width-modern {
  /* Gỗ hồng */
}
.product-description-gallery .block-full-width-modern .item-8 {
  grid-column: 3/5;
  grid-row: 2/3;
}
.product-description-gallery .block-full-width-modern {
  /* Bảng số 12 */
}
.product-description-gallery .block-full-width-modern .item-9 {
  grid-column: 6/7;
  grid-row: 2/3;
}
.product-description-gallery .block-full-width-modern {
  /* Chấm vàng */
}
.product-description-gallery .block-full-width-modern .item-10 {
  grid-column: 7/8;
  grid-row: 2/3;
}
.product-description-gallery .block-full-width-modern {
  /* Lưới thép */
}
.product-description-gallery .about-banner {
  position: relative;
  width: 100%;
}
.product-description-gallery .about-banner__image {
  width: 100%;
  height: 90vh;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-description-gallery .about-banner__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 86, 143, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 130px;
  padding: 50px 200px;
}
@media only screen and (max-width: 1366px) {
  .product-description-gallery .about-banner__info {
    gap: 50px;
    padding: 50px 80px;
  }
}
@media only screen and (max-width: 1080px) {
  .product-description-gallery .about-banner__info {
    padding: 35px 16px;
  }
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-banner__info {
    flex-direction: column;
    padding: 24px 20px;
    position: relative;
  }
}
.product-description-gallery .about-banner__left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-banner__left {
    justify-content: center;
  }
}
.product-description-gallery .about-banner__logo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
.product-description-gallery .about-banner__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-banner__logo {
    width: 70px;
    height: 70px;
  }
}
.product-description-gallery .about-banner__company {
  color: #fff;
}
.product-description-gallery .about-banner__company h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 4px;
}
@media only screen and (max-width: 1366px) {
  .product-description-gallery .about-banner__company h2 {
    font-size: 22px;
  }
}
.product-description-gallery .about-banner__company p {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}
@media only screen and (max-width: 1080px) {
  .product-description-gallery .about-banner__company p {
    font-size: 16px;
  }
}
.product-description-gallery .about-banner__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-banner__right {
    align-items: center;
  }
}
.product-description-gallery .about-banner__desc {
  flex: 1;
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}
@media only screen and (max-width: 1080px) {
  .product-description-gallery .about-banner__desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-banner__desc {
    text-align: center;
  }
}
.product-description-gallery .about-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}
.product-description-gallery .about-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5a623, #e08a00);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-description-gallery .about-banner__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.product-description-gallery .about-banner__btn:hover {
  background: linear-gradient(135deg, #e08a00, #c47200);
  transform: translateY(-1px);
  color: #fff;
}
.product-description-gallery .about-banner__website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d9d9d9;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.product-description-gallery .about-banner__website svg {
  width: 16px;
  height: 16px;
}
.product-description-gallery .about-banner__website:hover {
  color: #fff;
}
.product-description-gallery .about-content {
  background: #f5f5f5;
}
.product-description-gallery .about-content__tabs {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.product-description-gallery .about-content__tabs-inner {
  display: flex;
  padding: 0 150px;
  gap: 14px;
}
@media only screen and (max-width: 1366px) {
  .product-description-gallery .about-content__tabs-inner {
    padding: 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-content__tabs-inner {
    padding: 0 20px;
  }
}
.product-description-gallery .about-content__tab {
  background: none;
  border: none;
  border-bottom: 3px solid #b3b3b3;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #777;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-description-gallery .about-content__tab--active {
  color: #1a1a1a;
  border-bottom-color: #e08a00;
  font-weight: 700;
}
.product-description-gallery .about-content__tab:hover:not(.about-content__tab--active) {
  color: #333;
}
.product-description-gallery .about-content__panel {
  padding: 50px 150px;
}
.product-description-gallery .about-content__panel--hidden {
  display: none;
}
@media only screen and (max-width: 1366px) {
  .product-description-gallery .about-content__panel {
    padding: 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-content__panel {
    padding: 0;
  }
}
.product-description-gallery .about-content__top {
  display: flex;
  height: 615px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-content__top {
    flex-direction: column;
    height: auto;
  }
}
.product-description-gallery .about-content__top-img {
  flex: 0 0 35%;
  overflow: hidden;
}
.product-description-gallery .about-content__top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-content__top-img {
    flex: none;
    height: 260px;
  }
}
.product-description-gallery .about-content__top-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 80px;
  background: #fff;
}
@media only screen and (max-width: 1366px) {
  .product-description-gallery .about-content__top-info {
    padding: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-content__top-info {
    padding: 32px 20px;
  }
}
.product-description-gallery .about-content__top-logo {
  max-width: 650px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 28px;
}
@media only screen and (max-width: 1366px) {
  .product-description-gallery .about-content__top-logo {
    max-width: 260px;
  }
}
.product-description-gallery .about-content__top-desc {
  font-size: 22px;
  line-height: 1.75;
  color: #444;
  max-width: 650px;
  margin: 0;
}
@media only screen and (max-width: 1080px) {
  .product-description-gallery .about-content__top-desc {
    font-size: 18px;
  }
}
.product-description-gallery .about-content__bottom {
  display: flex;
  height: 440px;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-content__bottom {
    flex-direction: column;
    height: auto;
  }
}
.product-description-gallery .about-content__bottom-blue {
  flex: 0 0 35%;
  background: #10568f;
  overflow: hidden;
}
.product-description-gallery .about-content__bottom-blue img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-content__bottom-blue {
    flex: none;
    height: 180px;
  }
}
.product-description-gallery .about-content__bottom-photo {
  flex: 1;
  overflow: hidden;
}
.product-description-gallery .about-content__bottom-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-content__bottom-photo {
    flex: none;
    height: 260px;
  }
}
.product-description-gallery .about-design {
  background: #fff;
}
.product-description-gallery .about-design__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 250px;
}
@media only screen and (max-width: 1366px) {
  .product-description-gallery .about-design__inner {
    padding: 50px 80px;
  }
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-design__inner {
    flex-direction: column;
    padding: 40px 20px;
  }
}
.product-description-gallery .about-design__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.product-description-gallery .about-design__title-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 1366px) {
  .product-description-gallery .about-design__title-img {
    max-width: 400px;
  }
}
.product-description-gallery .about-design__qr img {
  width: 100%;
  max-width: 566px;
  height: auto;
  display: block;
}
.product-description-gallery .about-design__right {
  flex: 0 0 48%;
  overflow: hidden;
}
.product-description-gallery .about-design__right img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .product-description-gallery .about-design__right {
    flex: none;
    width: 100%;
  }
}
.product-description-gallery .block-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 136px;
}
@media (max-width: 1024px) {
  .product-description-gallery .block-grid-layout {
    padding: 20px 50px;
  }
}
.product-description-gallery .block-grid-layout .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-description-gallery .block-grid-layout .grid-item.span-1 {
  grid-column: span 1;
}
.product-description-gallery .block-grid-layout .grid-item.span-2 {
  grid-column: span 2;
}
.product-description-gallery .block-grid-layout .grid-item.span-3 {
  grid-column: span 3;
}

.supplier-contact__container,
.supplier-contact .viewed-products {
  background: rgba(248, 248, 248, 0.6);
}
.supplier-contact__title {
  background: #ffffff;
}
.supplier-contact__form {
  display: flex;
  gap: 40px;
  flex-direction: column;
  padding-top: 60px;
}
@media (max-width: 1024px) {
  .supplier-contact__form {
    padding-top: 10px;
    gap: 20px;
  }
}
.supplier-contact__form-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  width: 1018px;
  align-self: center;
}
@media (max-width: 1024px) {
  .supplier-contact__form-container {
    flex-direction: column;
    width: 60%;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .supplier-contact__form-container {
    width: 100%;
  }
}
.supplier-contact__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .supplier-contact__col {
    gap: 10px;
  }
}
.supplier-contact__group {
  display: flex;
  flex-direction: column;
}
.supplier-contact__group label {
  font-size: 20px;
  margin-bottom: 6px;
  color: #8F8F8F;
}
@media (max-width: 1024px) {
  .supplier-contact__group label {
    font-size: 16px;
  }
}
.supplier-contact__group input,
.supplier-contact__group textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  outline: none;
  transition: border 0.2s;
  color: #8F8F8F;
  background: #EBEBEB;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}
.supplier-contact__group input:focus,
.supplier-contact__group textarea:focus {
  border-color: #8F8F8F;
}
.supplier-contact__group input[disabled] {
  color: #888;
}
.supplier-contact__group--full {
  flex: 1;
}
.supplier-contact__actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  width: 1018px;
  align-self: center;
}
@media (max-width: 1024px) {
  .supplier-contact__actions {
    width: auto;
  }
}
.supplier-contact__actions button {
  background: #FFCF53;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  transition: 0.2s;
  width: 208px;
}
.supplier-contact__actions button:hover {
  background: #e6951f;
}
@media (max-width: 1024px) {
  .supplier-contact__actions button {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .supplier-contact__form {
    flex-direction: column;
  }
  .supplier-contact__col {
    max-width: 100%;
  }
}

.supplier-container .pagination {
  padding: 37px 0;
}

.supplier-category-container {
  padding: 0 100px 0 100px;
}
@media only screen and (max-width: 1580px) {
  .supplier-category-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.supplier-category-container {
  background-color: #ffffff;
}
.supplier-category-container__product-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
}
@media (max-width: 600px) {
  .supplier-category-container__product-stats {
    display: block;
  }
}
.supplier-category-container__product-stats .left .text-title {
  font-size: 24px;
  color: #757575;
}
.supplier-category-container__product-stats .left .text-content {
  font-size: 30px;
  color: #757575;
  font-weight: 900;
}
.supplier-category-container__product-stats .right p {
  font: 16px;
  color: #757575;
}
.supplier-category-container__product-stats .right p span {
  font-weight: 800;
}

.supplier-section {
  background: #f5f5f5;
}
.supplier-section__layout {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 60px;
  padding: 58px 100px 80px 100px;
}
@media only screen and (max-width: 1580px) {
  .supplier-section__layout {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1600px) {
  .supplier-section__layout {
    gap: 40px;
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 1080px) {
  .supplier-section__layout {
    grid-template-columns: none;
  }
}
@media (max-width: 834px) {
  .supplier-section__layout {
    padding: 20px 16px;
  }
}
.supplier-section__filter {
  background: #ffffff;
  border-radius: 8px;
  padding: 18px 28px;
}
@media (max-width: 1080px) {
  .supplier-section__filter {
    background: transparent;
    padding: 0;
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .supplier-section__filter {
    width: 100%;
    margin-bottom: 0;
  }
}
.supplier-section__filter.is-open .mobile-toggle-arrow {
  transform: rotate(-180deg);
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter.is-open .supplier-section__filter-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter.is-open .supplier-section__filter-body {
    transform: translateX(0);
  }
}
.supplier-section__filter-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter-header {
    cursor: pointer;
    margin-bottom: 0px;
    padding: 10px 20px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background: #ffffff;
    border-radius: 8px;
    width: -moz-max-content;
    width: max-content;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}
.supplier-section__filter-header .title-with-icon {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #757575;
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter-header .title-with-icon {
    margin-right: 40px;
  }
}
.supplier-section__filter-header .clear-filter {
  font-weight: 400;
  color: #d91f1f;
  font-size: 16px;
  text-decoration: none;
  margin-left: auto;
}
.supplier-section__filter-header .mobile-toggle-arrow {
  display: none;
  margin-left: 15px;
  transition: 0.3s;
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter-header .mobile-toggle-arrow {
    display: flex;
  }
}
.supplier-section__filter-overlay {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}
.supplier-section__filter-body {
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.3s ease-out, margin 0.3s ease-out;
  overflow: hidden;
  max-height: 1500px;
  opacity: 1;
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    max-height: none !important;
    opacity: 1;
    pointer-events: auto;
    background: #ffffff;
    z-index: 1010;
    padding: 20px !important;
    margin-top: 0;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    transform: translateX(-101%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    border-radius: 0;
  }
}
.supplier-section__filter-mobile-header {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  .supplier-section__filter-mobile-header .title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
  }
  .supplier-section__filter-mobile-header .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
  }
}
.supplier-section__filter-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 0;
  margin-bottom: 15px;
}
.supplier-section__filter-tags-container .filter-chip {
  display: inline-flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #757575;
  transition: all 0.2s;
}
.supplier-section__filter-tags-container .filter-chip__remove {
  margin-left: 6px;
  cursor: pointer;
  font-size: 16px;
  color: #888;
  line-height: 1;
}
.supplier-section__filter-tags-container .filter-chip__remove:hover {
  color: #ff4d4f;
}
.supplier-section__filter-tags-container .reset-btn {
  background: none;
  border: none;
  color: #ff4d4f;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
}
.supplier-section__filter-tags-container .reset-btn:hover {
  text-decoration: underline;
}
.supplier-section__filter-item {
  padding: 12px 0;
}
.supplier-section__filter-item .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}
.supplier-section__filter-item .filter-header .arrow {
  transition: 0.3s;
}
.supplier-section__filter-item .filter-content {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow: hidden;
  transition: 0.3s;
}
.supplier-section__filter-item--collapsed .filter-content {
  max-height: 0;
  margin-top: 0;
}
.supplier-section__filter-item--collapsed .arrow {
  transform: rotate(-90deg);
}
.supplier-section__price-filter {
  margin: 24px 0px;
}
.supplier-section__price-filter .price-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #b3b3b3;
}
.supplier-section__price-filter #priceValue {
  font-size: 14px;
  font-weight: 400;
}
.supplier-section__price-filter .range-slider {
  position: relative;
  height: 30px;
}
.supplier-section__price-filter .range-slider input[type=range] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  pointer-events: none;
  z-index: 3;
}
.supplier-section__price-filter .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #999;
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
  margin-top: -6px;
}
.supplier-section__price-filter .range-slider input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: #ddd;
  border-radius: 4px;
}
.supplier-section__filter-select {
  padding-bottom: 24px;
}
.supplier-section__filter-select label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #757575;
}
.supplier-section__filter-select select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #ffffff;
  font-size: 16px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.supplier-section__filter-select select:focus {
  outline: none;
  border-color: #f4a52c;
}
.supplier-section__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.supplier-section__checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #f4b54f;
  color: #f5f5f5;
  border-radius: 4px;
}
.supplier-section__checkbox span {
  font-weight: 400;
  color: #757575;
}
.supplier-section__filter-img {
  padding: 12px 0;
}
.supplier-section__filter-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1080px) {
  .supplier-section__filter-img img {
    display: none;
  }
}
.supplier-section__suppliers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: start;
  gap: 43px;
}
@media (max-width: 1920px) {
  .supplier-section__suppliers {
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1440px) {
  .supplier-section__suppliers {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1080px) {
  .supplier-section__suppliers {
    gap: 40px;
  }
}
@media (max-width: 500px) {
  .supplier-section__suppliers {
    grid-template-columns: repeat(1, 1fr);
  }
}
.supplier-section__card {
  background: #ffffff;
  transition: 0.2s;
  border-radius: 15px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.supplier-section__card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.supplier-section__card .card-img img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 15px 15px 0px 0px;
  max-height: 300px;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1080px) {
  .supplier-section__card .card-img img {
    max-height: 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .supplier-section__card .card-img img {
    max-height: 100%;
    flex: 0 0 100%;
  }
}
.supplier-section__card .info {
  padding: 25px;
}
.supplier-section__card .info .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #757575;
  line-height: 33px;
}
.supplier-section__card .info .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  margin-bottom: 14px;
}
.supplier-section__card .info .brand img {
  cursor: pointer;
  aspect-ratio: auto;
  border-radius: 50%;
  height: 76px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 76px;
  background: #F7F7F7;
}
.supplier-section__card .info .brand span {
  font-size: 24px;
  color: #094a7e;
  font-weight: 900;
}
.supplier-section__card .info .actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.supplier-section__card .info .actions button {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 36px;
  white-space: nowrap;
}
.supplier-section__card .info .actions .contact {
  background: #f4b54f;
  color: #f5f5f5;
  width: -moz-fit-content;
  width: fit-content;
}
.supplier-section__card .info .actions .website {
  background: none;
  width: -moz-fit-content;
  width: fit-content;
  color: #757575;
  border: solid 1px #d9d9d9;
}

.auth-card .btn-primary {
  background-color: #094a7e !important;
  border-color: #094a7e !important;
  color: #fff !important;
  transition: all 0.3s ease;
}
.auth-card .btn-primary:hover, .auth-card .btn-primary:active, .auth-card .btn-primary:focus {
  background-color: rgb(5.6, 46.0444444444, 78.4) !important;
  border-color: rgb(5.6, 46.0444444444, 78.4) !important;
  box-shadow: 0 0 0 0.25rem rgba(9, 74, 126, 0.25) !important;
  opacity: 1 !important;
}
.auth-card .form-check-input {
  cursor: pointer;
  border: 1px solid #ced4da;
}
.auth-card .form-check-input:checked {
  background-color: #094a7e !important;
  border-color: #094a7e !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}
.auth-card .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(9, 74, 126, 0.25);
  border-color: #094a7e;
}
.auth-card .form-control:focus, .auth-card .form-select:focus {
  border-color: #094a7e;
  box-shadow: 0 0 0 0.25rem rgba(9, 74, 126, 0.25);
}
.auth-card select.form-control.ps-5 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1600px !important;
  }
}
