@charset "UTF-8";
/**
 * Scroll / route enter: horizontal slide + fade. Toggled by .is-inview via inno-scroll-reveal.js
 */
@media (prefers-reduced-motion: no-preference) {
  .inno-reveal {
    --inno-reveal-shift: clamp(44px, 9vw, 96px);
    --inno-reveal-x: 0;
    --inno-reveal-y: 0;
    --inno-reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(var(--inno-reveal-x), var(--inno-reveal-y), 0);
    transition: opacity 1.12s cubic-bezier(0.16, 1, 0.3, 1), transform 1.12s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--inno-reveal-delay);
    will-change: opacity, transform;
  }
  /* 侧栏、密集列表：位移略小，避免被圆角卡片裁切 */
  .inno-reveal.inno-reveal-tight {
    --inno-reveal-shift: clamp(20px, 3.5vw, 40px);
  }
  .inno-reveal.inno-reveal-left {
    --inno-reveal-x: calc(-1 * var(--inno-reveal-shift));
    --inno-reveal-y: 0;
  }
  .inno-reveal.inno-reveal-right {
    --inno-reveal-x: var(--inno-reveal-shift);
    --inno-reveal-y: 0;
  }
  .inno-reveal.inno-reveal-top {
    --inno-reveal-x: 0;
    --inno-reveal-y: calc(-1 * var(--inno-reveal-shift));
  }
  .inno-reveal.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }
  /* 可选：略长一点的淡出感（离开视区时） */
  .inno-reveal:not(.is-inview) {
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0ms;
  }
}
@media (prefers-reduced-motion: reduce) {
  .inno-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html[dir=rtl] .inno-reveal.inno-reveal-left {
    --inno-reveal-x: var(--inno-reveal-shift);
  }
  html[dir=rtl] .inno-reveal.inno-reveal-right {
    --inno-reveal-x: calc(-1 * var(--inno-reveal-shift));
  }
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

.page-top-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
}
.page-top-swiper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.14) 45%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}
.page-top-swiper .page-top-swiper-track,
.page-top-swiper .page-top-swiper-slide {
  width: 100%;
  height: clamp(240px, 34vw, 440px);
}
.page-top-swiper .page-top-swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.min-h1 {
  min-height: 100px;
}

.min-h2 {
  min-height: 200px;
}

.min-h3 {
  min-height: 300px;
}

.min-h4 {
  min-height: 400px;
}

.min-h5 {
  min-height: 500px;
}

.min-h6 {
  min-height: 600px;
}

.wp-100 {
  width: 100px;
  flex: 0 0 100px;
}

.wp-200 {
  width: 200px;
  flex: 0 0 200px;
}

.wp-300 {
  width: 300px;
  flex: 0 0 300px;
}

.wp-400 {
  width: 400px;
  flex: 0 0 400px;
}

.wp-500 {
  width: 500px;
  flex: 0 0 500px;
}

.wp-600 {
  width: 600px;
  flex: 0 0 600px;
}

.wp-700 {
  width: 700px;
  flex: 0 0 700px;
}

.wp-800 {
  width: 800px;
  flex: 0 0 800px;
}

.wp-900 {
  width: 900px;
  flex: 0 0 900px;
}

.wp-1000 {
  width: 1000px;
  flex: 0 0 1000px;
}

.wp-100- {
  width: calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
}

.wp-200- {
  width: calc(100% - 200px);
  flex: 0 0 calc(100% - 200px);
}

.wp-300- {
  width: calc(100% - 300px);
  flex: 0 0 calc(100% - 300px);
}

.wp-400- {
  width: calc(100% - 400px);
  flex: 0 0 calc(100% - 400px);
}

.wp-500- {
  width: calc(100% - 500px);
  flex: 0 0 calc(100% - 500px);
}

.wp-600- {
  width: calc(100% - 600px);
  flex: 0 0 calc(100% - 600px);
}

.wp-700- {
  width: calc(100% - 700px);
  flex: 0 0 calc(100% - 700px);
}

.wp-800- {
  width: calc(100% - 800px);
  flex: 0 0 calc(100% - 800px);
}

.wp-900- {
  width: calc(100% - 900px);
  flex: 0 0 calc(100% - 900px);
}

.wp-1000- {
  width: calc(100% - 1000px);
  flex: 0 0 calc(100% - 1000px);
}

.h-min-100 {
  min-height: 100px;
}

.h-min-200 {
  min-height: 200px;
}

.h-min-300 {
  min-height: 300px;
}

.h-min-400 {
  min-height: 400px;
}

.h-min-500 {
  min-height: 500px;
}

.h-min-600 {
  min-height: 600px;
}

.h-min-700 {
  min-height: 700px;
}

.h-min-800 {
  min-height: 800px;
}

.h-min-900 {
  min-height: 900px;
}

.h-min-1000 {
  min-height: 1000px;
}

.w-min-100 {
  min-width: 100px;
}

.w-min-200 {
  min-width: 200px;
}

.w-min-300 {
  min-width: 300px;
}

.w-min-400 {
  min-width: 400px;
}

.w-min-500 {
  min-width: 500px;
}

.w-min-600 {
  min-width: 600px;
}

.w-min-700 {
  min-width: 700px;
}

.w-min-800 {
  min-width: 800px;
}

.w-min-900 {
  min-width: 900px;
}

.w-min-1000 {
  min-width: 1000px;
}

.w-max-100 {
  max-width: 100px;
}

.w-max-200 {
  max-width: 200px;
}

.w-max-300 {
  max-width: 300px;
}

.w-max-400 {
  max-width: 400px;
}

.w-max-500 {
  max-width: 500px;
}

.w-max-600 {
  max-width: 600px;
}

.w-max-700 {
  max-width: 700px;
}

.w-max-800 {
  max-width: 800px;
}

.w-max-900 {
  max-width: 900px;
}

.w-max-1000 {
  max-width: 1000px;
}

.hp-100 {
  height: 100px;
}

.hp-200 {
  height: 200px;
}

.hp-300 {
  height: 300px;
}

.hp-400 {
  height: 400px;
}

.hp-500 {
  height: 500px;
}

.hp-600 {
  height: 600px;
}

.hp-700 {
  height: 700px;
}

.hp-800 {
  height: 800px;
}

.hp-900 {
  height: 900px;
}

.hp-1000 {
  height: 1000px;
}

.wh-10 {
  height: 10px;
  width: 10px;
  flex: 0 0 10px;
}

.wh-20 {
  height: 20px;
  width: 20px;
  flex: 0 0 20px;
}

.wh-30 {
  height: 30px;
  width: 30px;
  flex: 0 0 30px;
}

.wh-40 {
  height: 40px;
  width: 40px;
  flex: 0 0 40px;
}

.wh-50 {
  height: 50px;
  width: 50px;
  flex: 0 0 50px;
}

.wh-60 {
  height: 60px;
  width: 60px;
  flex: 0 0 60px;
}

.wh-70 {
  height: 70px;
  width: 70px;
  flex: 0 0 70px;
}

.wh-80 {
  height: 80px;
  width: 80px;
  flex: 0 0 80px;
}

.wh-90 {
  height: 90px;
  width: 90px;
  flex: 0 0 90px;
}

.wh-100 {
  height: 100px;
  width: 100px;
  flex: 0 0 100px;
}

a {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-primary {
  color: #fff !important;
}

[v-cloak] {
  display: none;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}

.table-response thead {
  display: none;
}
@media (min-width: 768px) {
  .table-response thead {
    display: table-header-group;
  }
}
.table-response:not(.table-response.table-bordered) tr td:first-child, .table-response:not(.table-response.table-bordered) tr th:first-child {
  padding-left: 0;
}
.table-response:not(.table-response.table-bordered) tr td:last-child, .table-response:not(.table-response.table-bordered) tr th:last-child {
  padding-right: 0;
}
.table-response td {
  display: block;
  text-align: right;
  clear: both;
}
.table-response td::before {
  content: attr(data-title) ": ";
  float: left;
}
@media (min-width: 768px) {
  .table-response td::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .table-response td {
    display: table-cell;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .table-response td {
    border-bottom: none;
  }
  .table-response td:last-child {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 24px;
    margin-bottom: 14px;
  }
}

.quantity-wrap {
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  width: 140px;
  height: inherit;
  overflow: hidden;
  position: relative;
}
.quantity-wrap.disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.quantity-wrap input {
  border: none;
  text-align: center;
  padding: 0;
  font-size: 18px;
  height: inherit;
  box-shadow: none !important;
}
.quantity-wrap input::-webkit-inner-spin-button, .quantity-wrap input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-wrap div {
  font-size: 18px;
  height: inherit;
  width: 38px;
  flex: 0 0 38px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
}
.quantity-wrap div:hover {
  color: #004ca0;
}

.tabs-plus {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 24px;
  padding-bottom: 6px;
}
.tabs-plus .nav-item {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .tabs-plus .nav-item {
    margin-right: 40px;
  }
}
.tabs-plus .nav-link {
  padding-left: 2px;
  padding-right: 2px;
  border: none !important;
  color: #888;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tabs-plus .nav-link {
    font-size: 18px;
  }
}
.tabs-plus .nav-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222;
  bottom: -6px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s;
  display: none;
}
.tabs-plus .nav-link.active {
  color: #222;
  font-weight: bold;
}
.tabs-plus .nav-link.active::after {
  transform: scaleX(1);
  display: block;
}

.is-up-file .img-upload-item {
  border-style: dashed !important;
}
.is-up-file .img-upload-item:hover {
  background-color: #f4f4f4 !important;
  border-color: #004ca0 !important;
}
.is-up-file .img-upload-item:active {
  background-color: #e4e4e4 !important;
}
.is-up-file .img-upload-item .tool-wrap > div:first-of-type {
  border-right: 1px solid #fff;
}
.is-up-file .img-upload-item .tool-wrap > div:hover {
  background-color: #1d4ff3;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #004ca0;
}

.page-head {
  padding: 40px 0;
  background: #EFF1FE;
  text-align: center;
}
@media (max-width: 768px) {
  .page-head {
    padding: 20px 0;
  }
}
.page-head .page-title {
  font-size: 30px;
  color: #333;
  margin-bottom: 14px;
}
.page-head .breadcrumb {
  margin-bottom: 0;
  font-size: 15px;
}
.page-head .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f285";
  font-size: 12px;
  margin-top: 3px;
  font-family: "bootstrap-icons";
}
.page-head .breadcrumb a {
  text-decoration: none;
}

.page-product-content {
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .page-product-content {
    margin-top: 1.5rem;
  }
}
.page-product-content .title-box {
  text-align: center;
  margin-bottom: 40px;
}
.page-product-content .title-box .title {
  font-size: 26px;
  color: #333;
  margin-bottom: 10px;
}
.page-product-content .title-box .sub-title {
  font-size: 16px;
  color: #666;
}
.page-product-content .product-item {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(194, 49, 244, 0.1);
}
.page-product-content .product-item .top {
  background-color: #F3F7FF;
  height: 70px;
  display: flex;
  align-items: center;
}
.page-product-content .product-item .top .left {
  width: 70px;
  height: 70px;
  background-color: #004ca0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-product-content .product-item .top .left i {
  color: #fff;
  font-size: 20px;
}
.page-product-content .product-item .top .name {
  font-size: 18px;
  padding: 0 10px 0 20px;
}
.page-product-content .product-item .content {
  padding: 20px;
  line-height: 2;
  font-size: 15px;
  color: #555;
}
@media (min-width: 992px) {
  .page-product-content .product-item .content {
    height: 220px;
  }
}

.page-service-content {
  margin-top: 3rem;
  color: #606B86;
}
.page-service-content .title-box {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .page-service-content .title-box {
    margin-bottom: 30px;
  }
}
.page-service-content .title-box .title {
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .page-service-content .title-box .title {
    font-size: 22px;
    text-align: center;
  }
}
.page-service-content .title-box .sub-title {
  font-size: 16px;
  max-width: 550px;
}
@media (max-width: 992px) {
  .page-service-content .title-box .sub-title {
    font-size: 12px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .page-service-content .title-box .sub-title {
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  .page-service-content .service-row-2 {
    padding-left: 64px;
  }
}
.page-service-content .service-icon {
  max-width: 500px;
}
@media (max-width: 992px) {
  .page-service-content .service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .page-service-content .service-icon img {
    max-width: 80%;
  }
}
.page-service-content .service-item {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .page-service-content .service-item {
    margin-bottom: 20px;
  }
}
.page-service-content .service-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FCF3F4;
  margin-bottom: 20px;
}
.page-service-content .service-item .icon i {
  font-size: 18px;
  color: #FA4949;
}
.page-service-content .service-item .title {
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
}
.page-service-content .service-item .sub-title {
  color: #606B86;
  font-size: 14px;
  line-height: 1.8;
}

.page-about-content {
  margin-top: 3rem;
}
.page-about-content .about-text .main-title {
  font-size: 26px;
  color: #333;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .page-about-content .about-text .main-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.page-about-content .about-text .about-text-item {
  display: flex;
  margin-bottom: 40px;
}
.page-about-content .about-text .about-text-item:last-child {
  margin-bottom: 0;
}
.page-about-content .about-text .about-text-item .left {
  width: 40px;
  flex: 0 0 40px;
}
.page-about-content .about-text .about-text-item .left i {
  font-size: 24px;
  color: #004ca0;
}
.page-about-content .about-text .about-text-item .right .title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}
.page-about-content .about-text .about-text-item .right .sub-title {
  font-size: 14px;
  color: #606B86;
  line-height: 2;
  max-width: 460px;
}
.page-about-content .home-contact {
  background-color: #F9F9FC;
  background: linear-gradient(180deg, #F9F9FC 0%, #fff 100%);
  padding: 60px 0;
}

.layui-layer-btn .layui-layer-btn0 {
  background-color: #004ca0;
  border-color: #004ca0;
}

input[type=password] {
  font-family: "Arial";
}

@media (min-width: 992px) {
  #appHeader {
    position: relative;
    z-index: 3000;
  }
  body.page-home #appHeader:not(.is-sticky) .header-desktop,
  body.page-home #appHeader .header-desktop:not(.is-sticky),
  body.catalog-list-page #appHeader:not(.is-sticky) .header-desktop,
  body.catalog-list-page #appHeader .header-desktop:not(.is-sticky),
  body.page-news #appHeader:not(.is-sticky) .header-desktop,
  body.page-news #appHeader .header-desktop:not(.is-sticky),
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop,
  body.page-news-details #appHeader .header-desktop:not(.is-sticky) {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    z-index: 3000;
  }
  #appHeader:not(.is-sticky) .header-desktop,
  #appHeader .header-desktop:not(.is-sticky) {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .dropdown > .nav-link,
  #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .nav-link,
  #appHeader .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .dropdown > .nav-link,
  #appHeader .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .nav-link {
    color: rgba(255, 255, 255, 0.96) !important;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  }
  body.page-product #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .dropdown > .nav-link,
  body.page-product #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .nav-link,
  body.page-product #appHeader .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .dropdown > .nav-link,
  body.page-product #appHeader .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .nav-link {
    color: #222 !important;
    text-shadow: none;
  }
  body.page-product #appHeader:not(.is-sticky) .header-desktop .lang-toggle,
  body.page-product #appHeader .header-desktop:not(.is-sticky) .lang-toggle {
    color: #222 !important;
    text-shadow: none;
  }
  body.page-product #appHeader:not(.is-sticky) .header-desktop .search-group,
  body.page-product #appHeader .header-desktop:not(.is-sticky) .search-group {
    background-color: #f1f3f5 !important;
    backdrop-filter: none !important;
  }
  body.page-product #appHeader:not(.is-sticky) .header-desktop .search-group input,
  body.page-product #appHeader .header-desktop:not(.is-sticky) .search-group input {
    color: #111 !important;
  }
  body.page-product #appHeader:not(.is-sticky) .header-desktop .search-group input::-moz-placeholder, body.page-product #appHeader .header-desktop:not(.is-sticky) .search-group input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.45) !important;
  }
  body.page-product #appHeader:not(.is-sticky) .header-desktop .search-group input::placeholder,
  body.page-product #appHeader .header-desktop:not(.is-sticky) .search-group input::placeholder {
    color: rgba(0, 0, 0, 0.45) !important;
  }
  body.page-product #appHeader:not(.is-sticky) .header-desktop .search-group .btn i,
  body.page-product #appHeader .header-desktop:not(.is-sticky) .search-group .btn i {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .dropdown > .nav-link,
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .nav-link,
  body.page-news-details #appHeader .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .dropdown > .nav-link,
  body.page-news-details #appHeader .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .nav-link {
    color: #222 !important;
    text-shadow: none;
  }
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop .lang-toggle,
  body.page-news-details #appHeader .header-desktop:not(.is-sticky) .lang-toggle {
    color: #222 !important;
    text-shadow: none;
  }
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop .search-group,
  body.page-news-details #appHeader .header-desktop:not(.is-sticky) .search-group {
    background-color: #f1f3f5 !important;
    backdrop-filter: none !important;
  }
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop .search-group input,
  body.page-news-details #appHeader .header-desktop:not(.is-sticky) .search-group input {
    color: #111 !important;
  }
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop .search-group input::-moz-placeholder, body.page-news-details #appHeader .header-desktop:not(.is-sticky) .search-group input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.45) !important;
  }
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop .search-group input::placeholder,
  body.page-news-details #appHeader .header-desktop:not(.is-sticky) .search-group input::placeholder {
    color: rgba(0, 0, 0, 0.45) !important;
  }
  body.page-news-details #appHeader:not(.is-sticky) .header-desktop .search-group .btn i,
  body.page-news-details #appHeader .header-desktop:not(.is-sticky) .search-group .btn i {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  #appHeader.is-sticky .header-desktop,
  #appHeader .header-desktop.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3500;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: saturate(160%) blur(10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  }
  #appHeader.is-sticky .header-desktop .menu .navbar .nav-item > .dropdown > .nav-link,
  #appHeader.is-sticky .header-desktop .menu .navbar .nav-item > .nav-link,
  #appHeader .header-desktop.is-sticky .menu .navbar .nav-item > .dropdown > .nav-link,
  #appHeader .header-desktop.is-sticky .menu .navbar .nav-item > .nav-link {
    color: #222 !important;
    text-shadow: none;
  }
}
@media (min-width: 992px) {
  header #appHeader {
    position: relative;
    z-index: 1040;
  }
  header #appHeader .header-desktop {
    background: transparent;
    transition: background-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
  }
  header body.page-home #appHeader:not(.is-sticky) .header-desktop {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2000;
  }
  header #appHeader:not(.is-sticky) .header-desktop,
  header .header-desktop:not(.is-sticky) {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  header #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .dropdown > .nav-link,
  header #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .nav-link,
  header .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .dropdown > .nav-link,
  header .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .nav-link {
    color: rgba(255, 255, 255, 0.96) !important;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  }
  header #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .dropdown > .nav-link::after,
  header #appHeader:not(.is-sticky) .header-desktop .menu .navbar .nav-item > .nav-link::after,
  header .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .dropdown > .nav-link::after,
  header .header-desktop:not(.is-sticky) .menu .navbar .nav-item > .nav-link::after {
    border-bottom-color: rgba(255, 255, 255, 0.9) !important;
  }
  header #appHeader:not(.is-sticky) .header-desktop .search-group,
  header .header-desktop:not(.is-sticky) .search-group {
    background-color: rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(8px) !important;
  }
  header #appHeader:not(.is-sticky) .header-desktop .search-group input,
  header .header-desktop:not(.is-sticky) .search-group input {
    color: rgba(255, 255, 255, 0.98) !important;
  }
  header #appHeader:not(.is-sticky) .header-desktop .search-group input::-moz-placeholder, header .header-desktop:not(.is-sticky) .search-group input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.74) !important;
  }
  header #appHeader:not(.is-sticky) .header-desktop .search-group input::placeholder,
  header .header-desktop:not(.is-sticky) .search-group input::placeholder {
    color: rgba(255, 255, 255, 0.74) !important;
  }
  header #appHeader:not(.is-sticky) .header-desktop .search-group .btn i,
  header .header-desktop:not(.is-sticky) .search-group .btn i {
    color: rgba(255, 255, 255, 0.92) !important;
  }
  header #appHeader:not(.is-sticky) .header-desktop .lang-toggle,
  header .header-desktop:not(.is-sticky) .lang-toggle {
    color: rgba(255, 255, 255, 0.96) !important;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  }
  header #appHeader:not(.is-sticky) .header-desktop .lang-toggle:hover,
  header .header-desktop:not(.is-sticky) .lang-toggle:hover {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }
  header #appHeader.is-sticky .header-desktop,
  header .header-desktop.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: saturate(160%) blur(10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  }
  header #appHeader.is-sticky .header-desktop .menu .navbar .nav-item > .dropdown > .nav-link,
  header #appHeader.is-sticky .header-desktop .menu .navbar .nav-item > .nav-link,
  header .header-desktop.is-sticky .menu .navbar .nav-item > .dropdown > .nav-link,
  header .header-desktop.is-sticky .menu .navbar .nav-item > .nav-link {
    color: #222 !important;
    text-shadow: none;
  }
  header #appHeader.is-sticky .header-desktop .lang-toggle,
  header .header-desktop.is-sticky .lang-toggle {
    color: #222 !important;
    text-shadow: none;
  }
  header #appHeader.is-sticky .header-desktop .search-group,
  header .header-desktop.is-sticky .search-group {
    background-color: #F1F3F5 !important;
    backdrop-filter: none !important;
  }
  header #appHeader.is-sticky .header-desktop .search-group input,
  header .header-desktop.is-sticky .search-group input {
    color: #111 !important;
  }
  header #appHeader.is-sticky .header-desktop .search-group input::-moz-placeholder, header .header-desktop.is-sticky .search-group input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.45) !important;
  }
  header #appHeader.is-sticky .header-desktop .search-group input::placeholder,
  header .header-desktop.is-sticky .search-group input::placeholder {
    color: rgba(0, 0, 0, 0.45) !important;
  }
  header #appHeader.is-sticky .header-desktop .search-group .btn i,
  header .header-desktop.is-sticky .search-group .btn i {
    color: rgba(0, 0, 0, 0.7) !important;
  }
}
header .dropdown {
  cursor: pointer;
  position: relative;
}
header .dropdown:hover .dropdown-menu {
  display: block;
}
header .header-top {
  background-color: #1B1F22;
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
}
header .header-top .top-info a {
  color: inherit;
  margin-right: 10px;
}
header .header-top .top-info a:hover > a {
  color: rgba(255, 255, 255, 0.92);
}
header .header-top .language-switch .dropdown {
  cursor: pointer;
}
header .header-top .language-switch .dropdown:hover > a {
  color: rgba(255, 255, 255, 0.92);
}
header .header-top .language-switch .dropdown > a {
  color: inherit;
  border-radius: 0;
  border: none;
  padding: 0;
  height: 40px;
  line-height: 40px;
}
header .header-top .language-switch .dropdown > a img {
  width: 20px;
}
header .search-group {
  --search-bg: #f3f5f7;
  --search-border: rgba(17, 24, 39, 0.08);
  --search-text: #111827;
  --search-placeholder: rgba(17, 24, 39, 0.5);
  background: var(--search-bg);
  border: 1px solid var(--search-border);
  border-radius: 999px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.22s ease;
}
header .search-group:hover {
  border-color: rgba(17, 24, 39, 0.16);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}
header .search-group:focus-within {
  border-color: rgba(17, 24, 39, 0.24);
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}
header .search-group input {
  background-color: transparent;
  color: var(--search-text);
  padding: 0 44px 0 16px;
  border-radius: 999px;
  border: none;
  width: 236px;
  font-size: 14px;
  font-weight: 500;
  height: 42px;
  box-shadow: none;
  line-height: 1;
}
header .search-group input::-moz-placeholder {
  color: var(--search-placeholder);
}
header .search-group input::placeholder {
  color: var(--search-placeholder);
}
header .search-group input:focus {
  box-shadow: none;
  background-color: transparent;
}
header .search-group .btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.06);
  transition: all 0.2s ease;
}
header .search-group .btn i {
  color: rgba(17, 24, 39, 0.7);
  font-size: 15px;
  line-height: 1;
}
header .search-group .btn:hover {
  background: rgba(17, 24, 39, 0.12);
}
header .header-desktop {
  padding: 22px 0;
}
@media (max-width: 992px) {
  header .header-desktop {
    display: none;
  }
}
header .header-desktop .left {
  display: flex;
  align-items: center;
}
header .header-desktop .left .logo {
  max-width: 180px;
  max-height: 60px;
  margin-bottom: 0;
}
header .header-desktop .left .logo a {
  display: flex;
  align-items: center;
  height: 60px;
}
header .header-desktop .left .logo img {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-desktop .left .menu {
  margin-left: 40px;
}
header .header-desktop .left .menu .navbar {
  padding: 0;
}
header .header-desktop .left .menu .navbar .nav-item > .dropdown > .nav-link, header .header-desktop .left .menu .navbar .nav-item > .nav-link {
  font-weight: bold;
  color: #222;
  font-size: 16px;
  padding-left: 6px;
  padding-right: 6px;
  margin: 0 14px;
  position: relative;
}
header .header-desktop .left .menu .navbar .nav-item > .dropdown > .nav-link::after, header .header-desktop .left .menu .navbar .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid;
  border-bottom-width: 2px;
  transition: width 0.3s;
}
header .header-desktop .left .menu .navbar .nav-item:hover > .dropdown > .nav-link::after, header .header-desktop .left .menu .navbar .nav-item:hover > .nav-link::after {
  width: 100%;
  left: 0;
}
header .header-desktop .left .menu .navbar .nav-item:hover .dropdown-menu {
  display: block;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  background: radial-gradient(1200px 300px at 20% -30%, rgba(0, 0, 0, 0.06), transparent 60%), linear-gradient(180deg, #ffffff 0%, #ffffff 65%, #fbfbfc 100%);
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu {
  min-width: 230px;
  padding: 0;
  border-radius: 14px;
  border: none;
  box-shadow: none;
  margin-top: 0;
  animation: dropdownFadeIn 0.18s ease;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  position: absolute;
  top: 100%;
  left: 0;
  margin-left: 0;
  white-space: nowrap;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
  z-index: 0;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu .dropdown-menu-brand {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu .dropdown-menu-brand .brand-title {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #121212;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu .dropdown-menu-brand .brand-subtitle {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.46);
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item {
  font-size: 15px;
  font-weight: 650;
  color: #1e1f22;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  position: relative;
  background: transparent;
  border-left: none;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item .dropdown-item-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 10px;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item i.bi {
  font-size: 18px;
  line-height: 1;
  opacity: 0.55;
  transform: translateX(-2px);
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 7px;
  bottom: 7px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 0;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item:hover {
  background-color: transparent;
  color: #101114;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item:hover::before {
  opacity: 1;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item:hover i.bi {
  opacity: 0.95;
  transform: translateX(1px);
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item:active {
  background-color: rgba(0, 0, 0, 0.08);
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li a.dropdown-item > * {
  position: relative;
  z-index: 1;
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header .header-desktop .left .menu .navbar .nav-item .dropdown-menu > * {
  position: relative;
  z-index: 1;
}
header .header-desktop .right {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header-desktop .right .dropdown .dropdown-toggle::after {
  display: none;
}
header .header-desktop .right .icons {
  display: flex;
  align-items: center;
}
header .header-desktop .right .icons .account-icon .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: none;
  text-align: center;
}
header .header-desktop .right .icons .account-icon .dropdown-menu a {
  padding: 10px 0;
}
header .header-desktop .right .icons .item {
  margin-left: 26px;
  position: relative;
}
header .header-desktop .right .icons .item .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #111;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-desktop .right .lang-switch {
  display: flex;
  align-items: center;
}
header .header-desktop .right .lang-dropdown {
  position: relative;
}
header .header-desktop .right .lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s ease;
}
header .header-desktop .right .lang-toggle:hover {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
}
header .header-desktop .right .lang-globe {
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
}
header .header-desktop .right .lang-chevron {
  font-size: 12px;
  line-height: 1;
  opacity: 0.7;
}
header .header-desktop .right .lang-dropdown-menu {
  min-width: 210px;
  padding: 0;
  border-radius: 14px;
  border: none;
  margin-top: 0;
  animation: dropdownFadeIn 0.18s ease;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1050;
}
header .header-desktop .right .lang-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
  z-index: 0;
}
header .header-desktop .right .lang-dropdown-menu > * {
  position: relative;
  z-index: 1;
}
header .header-desktop .right .lang-switch .dropdown:hover .lang-dropdown-menu {
  background: radial-gradient(1200px 300px at 20% -30%, rgba(0, 0, 0, 0.06), transparent 60%), linear-gradient(180deg, #ffffff 0%, #ffffff 65%, #fbfbfc 100%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}
header .header-desktop .right .lang-dropdown-brand {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
header .header-desktop .right .lang-dropdown-brand .brand-title {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #121212;
}
header .header-desktop .right .lang-dropdown-brand .brand-subtitle {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.46);
}
header .header-desktop .right .language-dropdown-item {
  font-size: 14px;
  font-weight: 650;
  color: #1e1f22;
  padding: 12px 16px;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  position: relative;
  transition: all 0.2s ease;
}
header .header-desktop .right .language-dropdown-item::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 7px;
  bottom: 7px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 0;
}
header .header-desktop .right .language-dropdown-item:hover {
  color: #101114;
}
header .header-desktop .right .language-dropdown-item:hover::before {
  opacity: 1;
}
header .header-desktop .right .language-dropdown-item.active {
  color: #101114;
}
header .header-desktop .right .language-dropdown-item.active::before {
  opacity: 1;
}
header .header-desktop .right .language-dropdown-item > * {
  position: relative;
  z-index: 1;
}
header .header-desktop .right .language-dropdown-item .lang-flag {
  width: 24px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
header .header-desktop .right .language-dropdown-item .language-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
header .header-desktop .right .language-dropdown-item .lang-check {
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}
header .header-desktop .right .language-dropdown-item.active .lang-check {
  opacity: 1;
}
header .header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
@media (min-width: 992px) {
  header .header-mobile {
    display: none;
  }
}
header .header-mobile .logo {
  max-width: 140px;
  max-height: 44px;
  margin-bottom: 0;
}
header .header-mobile .logo a {
  display: flex;
  align-items: center;
  height: 44px;
}
header .header-mobile .logo img {
  max-width: 140px;
  max-height: 44px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header-mobile .mb-icon i {
  font-size: 30px;
  line-height: 1;
}
header .header-mobile .lang-switch {
  display: flex;
  align-items: center;
}
header .header-mobile .lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s ease;
  color: #222;
}
header .header-mobile .lang-toggle:hover {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
}
header .header-mobile .lang-globe {
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
}
header .header-mobile .lang-dropdown-menu {
  min-width: 200px;
  padding: 0;
  border-radius: 14px;
  border: none;
  margin-top: 0;
  animation: dropdownFadeIn 0.18s ease;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1050;
}
header .header-mobile .lang-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
  z-index: 0;
}
header .header-mobile .lang-dropdown-menu > * {
  position: relative;
  z-index: 1;
}
header .header-mobile .lang-switch .dropdown:hover .lang-dropdown-menu {
  background: radial-gradient(1200px 300px at 20% -30%, rgba(0, 0, 0, 0.06), transparent 60%), linear-gradient(180deg, #ffffff 0%, #ffffff 65%, #fbfbfc 100%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}
header .header-mobile .lang-dropdown-brand {
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
header .header-mobile .lang-dropdown-brand .brand-title {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #121212;
}
header .header-mobile .lang-dropdown-brand .brand-subtitle {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.46);
}
header .header-mobile .language-dropdown-item {
  font-size: 13px;
  font-weight: 650;
  color: #1e1f22;
  padding: 10px 14px;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  position: relative;
  transition: all 0.2s ease;
}
header .header-mobile .language-dropdown-item::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 6px;
  bottom: 6px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 0;
}
header .header-mobile .language-dropdown-item:hover {
  color: #101114;
}
header .header-mobile .language-dropdown-item:hover::before {
  opacity: 1;
}
header .header-mobile .language-dropdown-item.active {
  color: #101114;
}
header .header-mobile .language-dropdown-item.active::before {
  opacity: 1;
}
header .header-mobile .language-dropdown-item > * {
  position: relative;
  z-index: 1;
}
header .header-mobile .language-dropdown-item .lang-flag {
  width: 22px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
header .header-mobile .language-dropdown-item .language-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
header .header-mobile .language-dropdown-item .lang-check {
  font-size: 15px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}
header .header-mobile .language-dropdown-item.active .lang-check {
  opacity: 1;
}
header .header-mobile .header-cart-icon {
  position: relative;
}
header .header-mobile .header-cart-icon .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #111;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas {
  width: 76%;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header {
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  position: relative;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group {
  width: calc(100% - 34px);
  margin-right: 0;
  min-width: 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  box-sizing: border-box;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group input {
  flex: 1 1 auto;
  min-width: 0;
  width: 1%;
  height: 40px;
  font-size: 14px;
  padding-right: 44px;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group .btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group .btn i {
  font-size: 14px;
  line-height: 1;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .account-icon img {
  width: 24px;
}
header .header-mobile #mobile-menu-offcanvas .close-offcanvas {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -26px;
  width: 26px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
}
header .header-mobile #mobile-menu-offcanvas .close-offcanvas:active {
  background-color: #f1f1f1;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap {
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > a {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > a:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > a .badge {
  position: relative;
  margin-left: 13px;
  font-weight: 400;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > a .badge::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
  border: 4px solid;
  border-right-width: 7px;
  border: 5px solid rgba(0, 0, 0, 0);
  border-right-color: inherit;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > span:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > span i {
  transition: transform 0.2s ease;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > span[aria-expanded=true] i {
  transform: rotate(180deg);
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse {
  border-top: 1px solid #e5e5e5;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group {
  padding: 5px 0;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .children-title {
  height: 44px;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .children-title span {
  margin-right: -10px;
  width: 44px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .children-title span:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .children-title span[aria-expanded=true] i::before {
  content: "\f63b";
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .nav a {
  color: #333;
}

#catalog-category-offcanvas {
  width: 76%;
}
#catalog-category-offcanvas .offcanvas-header {
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#catalog-category-offcanvas .offcanvas-header .search-group {
  width: calc(100% - 34px);
  margin-right: 0;
  min-width: 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  box-sizing: border-box;
}
#catalog-category-offcanvas .offcanvas-header .search-group input {
  flex: 1 1 auto;
  min-width: 0;
  width: 1%;
  height: 40px;
  font-size: 14px;
  padding-right: 44px;
}
#catalog-category-offcanvas .offcanvas-header .search-group .btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
}
#catalog-category-offcanvas .offcanvas-header .search-group .btn i {
  font-size: 14px;
  line-height: 1;
}
#catalog-category-offcanvas .offcanvas-header .account-icon img {
  width: 24px;
}
#catalog-category-offcanvas .close-offcanvas {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -26px;
  width: 26px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
}
#catalog-category-offcanvas .close-offcanvas:active {
  background-color: #f1f1f1;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap {
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > a {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > a:active {
  background-color: #eee;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > a .badge {
  position: relative;
  margin-left: 13px;
  font-weight: 400;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > a .badge::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
  border: 4px solid;
  border-right-width: 7px;
  border: 5px solid rgba(0, 0, 0, 0);
  border-right-color: inherit;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > span:active {
  background-color: #eee;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > span i {
  transition: transform 0.2s ease;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item .nav-item-text > span[aria-expanded=true] i {
  transform: rotate(180deg);
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse {
  border-top: 1px solid #e5e5e5;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group {
  padding: 5px 0;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .children-title {
  height: 44px;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .children-title span {
  margin-right: -10px;
  width: 44px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .children-title span:active {
  background-color: #eee;
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .children-title span[aria-expanded=true] i::before {
  content: "\f63b";
}
#catalog-category-offcanvas .offcanvas-body.mobile-menu-wrap .mobile-nav-accordion .accordion-item > .accordion-collapse .children-group .nav a {
  color: #333;
}

@media (max-width: 1200px) {
  header .header-desktop .right .search-group input {
    width: 200px;
  }
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-contact-cta {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 5.5rem 1rem 5rem;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004ca0;
  border: none;
}
@media (min-width: 768px) {
  .footer-contact-cta {
    padding: 6.25rem 1.25rem 5.5rem;
    min-height: 400px;
  }
}
@media (min-width: 1200px) {
  .footer-contact-cta {
    padding: 6.75rem 1.5rem 6rem;
    min-height: 440px;
  }
}
.footer-contact-cta__shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
  color: #fff;
}
.footer-contact-cta__shape-top svg {
  display: block;
  width: 100%;
  height: clamp(52px, 10vw, 92px);
}
.footer-contact-cta__shape-top .elementor-shape-fill {
  fill: currentColor;
}
.footer-contact-cta__particle-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.footer-contact-cta__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.footer-contact-cta__glow {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 88% 68% at 50% 38%, rgba(255, 255, 255, 0.14) 0%, transparent 55%);
  mix-blend-mode: screen;
}
.footer-contact-cta__inner {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 52rem;
  pointer-events: auto;
}
.footer-contact-cta__title {
  margin: 0 0 1.5rem;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.75rem, 1.2rem + 2.15vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 25, 60, 0.35);
}
@media (min-width: 768px) {
  .footer-contact-cta__title {
    margin-bottom: 1.75rem;
  }
}
.footer-contact-cta {
  /** 与 home.blade.php 中 `.btn-company-about` 完全一致（home.scss 内仅 body.page-home 生效，此处全站页脚复用） */
}
.footer-contact-cta .btn-company-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 54px;
  height: auto;
  padding: 0.65rem 1.85rem;
  border-radius: 999px;
  color: #0c3987;
  background: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  transition: transform 0.28s ease, color 0.28s ease;
}
.footer-contact-cta .btn-company-about::before, .footer-contact-cta .btn-company-about::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.footer-contact-cta .btn-company-about::before {
  padding: 2px;
  background: conic-gradient(from var(--angle), rgba(12, 57, 135, 0) 112deg, #0a3d9f 220deg, #0a3d9f 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-angle 2.8s linear infinite;
}
.footer-contact-cta .btn-company-about::after {
  inset: -2px;
  background: conic-gradient(from var(--angle), rgba(12, 57, 135, 0) 130deg, rgba(10, 61, 159, 0.55) 230deg, rgba(10, 61, 159, 0.6) 360deg);
  filter: blur(8px);
  z-index: -1;
  animation: rotate-angle 2.8s linear infinite;
}
.footer-contact-cta .btn-company-about:hover {
  transform: translateY(-2px);
}
.footer-contact-cta .btn-company-about span {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .footer-contact-cta .btn-company-about::before, .footer-contact-cta .btn-company-about::after {
    animation: none;
    --angle: 0deg;
  }
  .footer-contact-cta__canvas {
    opacity: 0.85;
  }
}
.footer-newsletter-wrapper {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 24px 0;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.footer-newsletter-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
@media (min-width: 768px) {
  .footer-newsletter-wrapper {
    padding: 36px 0;
  }
}

.footer-newsletter {
  position: relative;
  z-index: 1;
}
.footer-newsletter .newsletter-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .footer-newsletter .newsletter-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.footer-newsletter .newsletter-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .footer-newsletter .newsletter-desc {
    font-size: 15px;
  }
}
.footer-newsletter .newsletter-form {
  margin-top: 14px;
}
@media (min-width: 992px) {
  .footer-newsletter .newsletter-form {
    margin-top: 0;
  }
}
.footer-newsletter .newsletter-input-group {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  padding: 4px;
}
.footer-newsletter .newsletter-email-input {
  border: none;
  padding: 8px 16px;
  font-size: 15px;
  background: transparent;
  box-shadow: none;
}
.footer-newsletter .newsletter-email-input:focus {
  border: none;
  box-shadow: none;
  background: transparent;
}
.footer-newsletter .newsletter-email-input::-moz-placeholder {
  color: #999;
}
.footer-newsletter .newsletter-email-input::placeholder {
  color: #999;
}
.footer-newsletter .newsletter-submit-btn {
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.footer-newsletter .newsletter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.footer-newsletter .newsletter-submit-btn:active {
  transform: translateY(0);
}

footer {
  position: relative;
  background-color: #fff;
  overflow: visible;
  margin-top: 0;
}
footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url("/images/icons/1-footer-scaled.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  footer::after {
    background-position: center top;
    background-size: 75% auto;
  }
}
footer .footer-box {
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}
footer .footer-box a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer .footer-box a:hover {
  color: #004ca0;
}
footer .footer-box .footer-top-links {
  padding: 8px 0 4px;
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links {
    padding: 20px 0 8px;
  }
}
footer .footer-box .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  footer .footer-box .footer-brand {
    align-items: flex-start;
    text-align: left;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
footer .footer-box .footer-brand-logo-link {
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
}
footer .footer-box .footer-brand-logo {
  max-height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  footer .footer-box .footer-brand-logo {
    max-height: 42px;
  }
}
footer .footer-box .footer-brand-tagline {
  margin: 0.875rem 0 0;
  padding: 0;
  width: 100%;
  max-width: 26em;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  white-space: pre-line;
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 768px) {
  footer .footer-box .footer-brand-tagline {
    margin-top: 1rem;
    max-width: 40rem;
    text-align: left;
  }
}
@media (min-width: 992px) {
  footer .footer-box .footer-brand-tagline {
    max-width: 46rem;
    font-size: 16px;
    line-height: 1.75;
  }
}
footer .footer-box .footer-nav .footer-item {
  padding-top: 0;
  padding-bottom: 0;
}
footer .footer-box .footer-nav .footer-link-title {
  display: none !important;
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.3;
  opacity: 0 !important;
  visibility: hidden !important;
  white-space: normal;
  overflow: visible;
  height: 0;
}
@media (min-width: 768px) {
  footer .footer-box .footer-nav .footer-link-title {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
}
footer .footer-box .footer-nav .footer-item-content {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-box .footer-nav .footer-item-content li {
  margin: 0;
  padding: 0.25rem 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
@media (min-width: 768px) {
  footer .footer-box .footer-nav .footer-item-content li {
    font-size: 15px;
    padding: 0.28rem 0;
  }
}
footer .footer-box .footer-nav .footer-item-content li a {
  display: inline-block;
  color: #333;
  font-weight: 600;
}
footer .footer-box .footer-nav .footer-item-content li a:hover {
  color: #004ca0;
}
footer .footer-box .footer-nav .footer-item-content .footer-link-nested {
  padding-left: 0.65rem;
  font-size: 14px;
}
footer .footer-box .footer-nav .footer-item-content .footer-link-nested a {
  color: #555;
  font-weight: 500;
}
footer .footer-box .footer-nav .footer-item-content .footer-link-nested--deep {
  padding-left: 1.15rem;
  font-size: 13px;
}
footer .footer-box .bottom-box {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 0 1.25rem;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  footer .footer-box .bottom-box {
    padding: 1.125rem 0 1.5rem;
  }
}
footer .footer-box .footer-legal {
  text-align: center;
}
@media (min-width: 768px) {
  footer .footer-box .footer-legal {
    text-align: left;
  }
}
footer .footer-box .copyright-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #555;
}
footer .footer-box .copyright-line {
  display: block;
}
footer .footer-box .copyright-line--cn {
  margin-top: 0.2rem;
}
footer .footer-box .footer-icp-link {
  display: inline-block;
  margin-top: 0.35rem;
  color: #555;
  font-weight: 600;
}
footer .footer-box .footer-icp-link:hover {
  color: #004ca0;
}
footer .footer-box .payment-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  footer .footer-box .payment-icon {
    justify-content: flex-end;
    margin-top: 0;
  }
}
footer .footer-box .payment-icon img {
  max-width: 36px;
  height: auto;
}

body.page-home #appContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
body.page-home .module-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  perspective: var(--home-reveal-perspective, 1200px);
}
body.page-home .module-content > .module-line:first-child {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.page-home #module-swiper-1 .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.page-home .module-title-wrap {
  margin-bottom: 30px;
}
body.page-home .module-title-wrap .module-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  position: relative;
  color: #222;
}
@media (max-width: 768px) {
  body.page-home .module-title-wrap .module-title {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
}
body.page-home .module-title-wrap .module-sub-title {
  text-align: center;
  font-size: 1rem;
  color: #768088;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  max-width: 840px;
}
@media (max-width: 768px) {
  body.page-home .module-title-wrap .module-sub-title {
    font-size: 0.87rem;
  }
}
body.page-home .module-line {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  body.page-home .module-line {
    margin-bottom: 40px;
  }
}
body.page-home {
  --home-reveal-x: clamp(100px, 32vw, 340px);
  --home-reveal-y: 76px;
  --home-reveal-duration: 1.88s;
  --home-reveal-duration-opacity: 1.42s;
  --home-reveal-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --home-reveal-ease-opacity: cubic-bezier(0.33, 1, 0.68, 1);
  --home-reveal-scale-side: 0.84;
  --home-reveal-scale-up: 0.88;
  --home-reveal-blur-side: 14px;
  --home-reveal-blur-up: 9px;
  --home-reveal-rotate: 2.75deg;
  --home-reveal-perspective: 1200px;
}
@media (max-width: 767.98px) {
  body.page-home {
    --home-reveal-x: clamp(36px, 10vw, 120px);
    --home-reveal-y: 48px;
    --home-reveal-blur-side: 10px;
  }
}
@media (max-width: 575.98px) {
  body.page-home {
    --home-reveal-x: clamp(28px, 8vw, 64px);
    --home-reveal-y: 36px;
  }
}
body.page-home .reveal-up,
body.page-home .reveal-left,
body.page-home .reveal-right {
  opacity: 0;
  will-change: opacity, transform, filter;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: opacity var(--home-reveal-duration-opacity) var(--home-reveal-ease-opacity), transform var(--home-reveal-duration) var(--home-reveal-ease), filter var(--home-reveal-duration) var(--home-reveal-ease);
  transition-delay: var(--delay, 0s);
}
body.page-home .reveal-up {
  transform: translate3d(0, var(--home-reveal-y), 0) scale(var(--home-reveal-scale-up));
  filter: blur(var(--home-reveal-blur-up));
}
body.page-home .reveal-left {
  transform: translate3d(calc(-1 * var(--home-reveal-x)), calc(var(--home-reveal-y) * 0.88), 0) scale(var(--home-reveal-scale-side)) rotateZ(calc(-1 * var(--home-reveal-rotate)));
  filter: blur(var(--home-reveal-blur-side));
}
body.page-home .reveal-right {
  transform: translate3d(var(--home-reveal-x), calc(var(--home-reveal-y) * 0.88), 0) scale(var(--home-reveal-scale-side)) rotateZ(var(--home-reveal-rotate));
  filter: blur(var(--home-reveal-blur-side));
}
body.page-home .reveal-up.is-visible,
body.page-home .reveal-left.is-visible,
body.page-home .reveal-right.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateZ(0deg);
  filter: blur(0);
}
body.page-home .reveal-btn-wrap {
  display: inline-flex;
  vertical-align: middle;
}
@media (prefers-reduced-motion: reduce) {
  body.page-home .module-content {
    perspective: none !important;
  }
  body.page-home .reveal-up,
  body.page-home .reveal-left,
  body.page-home .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    transform-style: flat;
    backface-visibility: visible;
  }
}
body.page-home .home-solution-tabs {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  align-items: stretch;
  background: #fff;
}
body.page-home .solution-tabs-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-right: 4px dashed #0e57cc;
  padding-right: 80px;
}
body.page-home .solution-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  text-align: right;
  border: 0;
  background: transparent;
  color: #222;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  padding: 16px 2px;
  cursor: pointer;
  opacity: 0.78;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
body.page-home .solution-tab-btn:hover {
  opacity: 1;
}
body.page-home .solution-tab-icon {
  line-height: 1;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
body.page-home .solution-tab-icon img {
  width: 32px;
  height: 32px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
body.page-home .solution-tab-btn.is-active {
  color: #0e57cc;
  opacity: 1;
}
body.page-home .solution-panel {
  display: none;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 460px);
  gap: 28px;
  align-items: center;
}
body.page-home .solution-panel.is-active {
  display: grid;
}
body.page-home .solution-copy h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1d2a45;
}
body.page-home .solution-copy h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
  color: #1a1a1a;
}
body.page-home .solution-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: #3b3b3b;
  max-width: 680px;
  margin-bottom: 24px;
}
body.page-home .solution-more-btn {
  margin-bottom: 0;
}
body.page-home .solution-figure {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}
body.page-home .solution-figure img {
  width: 100%;
  height: auto;
  display: block;
}
body.page-home .module-home-solutions-line {
  margin-top: 150px;
}
body.page-home .module-products-apps-line {
  padding: 56px 0 24px;
}
body.page-home .home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
body.page-home .home-section-title {
  font-size: 30px;
  font-weight: 900;
  color: #0b214a;
  letter-spacing: 0.2px;
}
body.page-home .home-section-more {
  margin-bottom: 0;
  white-space: nowrap;
}
body.page-home .home-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.page-home .home-product-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  border-radius: 14px;
  cursor: default;
}
body.page-home .home-product-card .home-product-card-surface {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(14, 87, 204, 0.1);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
}
body.page-home .home-product-card:hover .home-product-card-surface {
  transform: translate3d(0, -4px, 0) scale(1);
  box-shadow: 0 18px 40px rgba(14, 87, 204, 0.16);
}
body.page-home .home-product-thumb {
  background: #f3f6fb;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
body.page-home .home-product-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
body.page-home .home-product-card:hover .home-product-thumb img {
  transform: scale(1.04);
}
body.page-home .home-product-body {
  padding: 14px 14px 16px;
}
body.page-home .home-product-name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  color: #0b214a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.page-home .home-product-summary {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #5a6a84;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.page-home .home-product-date {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #0e57cc;
}
body.page-home .btn-company-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  color: #0c3987;
  background: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: transform 0.28s ease, color 0.28s ease;
}
body.page-home .btn-company-about::before, body.page-home .btn-company-about::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
body.page-home .btn-company-about::before {
  padding: 2px;
  background: conic-gradient(from var(--angle), rgba(12, 57, 135, 0) 112deg, #0a3d9f 220deg, #0a3d9f 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-angle 2.8s linear infinite;
}
body.page-home .btn-company-about::after {
  inset: -2px;
  background: conic-gradient(from var(--angle), rgba(12, 57, 135, 0) 130deg, rgba(10, 61, 159, 0.55) 230deg, rgba(10, 61, 159, 0.6) 360deg);
  filter: blur(8px);
  z-index: -1;
  animation: rotate-angle 2.8s linear infinite;
}
body.page-home .btn-company-about {
  -webkit-tap-highlight-color: transparent;
}
body.page-home .btn-company-about:focus {
  outline: none;
}
body.page-home .btn-company-about:focus-visible {
  outline: 2px solid rgba(12, 57, 135, 0.45);
  outline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  body.page-home .btn-company-about:hover {
    transform: translateY(-2px);
  }
}
body.page-home .btn-company-about span {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  body.page-home .btn-company-about {
    min-width: 132px;
    height: 42px;
  }
}
@media (max-width: 767.98px) {
  body.page-home .btn-company-about {
    min-width: 124px;
    height: 40px;
    padding: 0 20px;
  }
}
body.page-home .module-company-overview-line {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.page-home .module-home-video-line {
  margin-top: 0 !important;
  margin-bottom: 0;
}
body.page-home .module-home-video .home-video-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: visible;
  background: #050f2a;
}
body.page-home .module-home-video .home-video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 0) 92%, rgba(248, 251, 255, 0.99) 100%);
}
body.page-home .module-home-video .home-video-player {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #050f2a;
}
body.page-home .module-home-video .home-video-floating-text {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  box-sizing: border-box;
  width: min(100%, 1280px);
  max-width: 100%;
  padding: 36px 220px 36px 220px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 255, 0.94) 100%);
  border: 1px solid rgba(18, 28, 45, 0.1);
  color: #111827;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2;
  margin-bottom: -44px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
body.page-home .module-home-video .home-video-floating-text .home-video-floating-title {
  display: inline-block;
  font-size: clamp(18px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.4px;
  color: #0b1220;
  text-shadow: none;
  text-align: left;
  flex: 1 1 280px;
  min-width: 0;
}
body.page-home .module-home-video .home-video-floating-text .reveal-btn-wrap {
  flex: 0 0 auto;
}
body.page-home .module-home-video .home-video-floating-text .btn-company-about {
  margin-bottom: 0;
  flex-shrink: 0;
}
body.page-home .module-company-overview {
  position: relative;
  overflow: hidden;
  color: #0c2f74;
  padding: 0;
  background: #ffffff;
}
body.page-home .module-company-overview .company-overview-hero {
  position: relative;
  border-radius: 28px;
  text-align: center;
  padding: 58px 24px 48px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}
body.page-home .module-company-overview .company-overview-brand {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 3px;
  line-height: 1.15;
  background: linear-gradient(180deg, #1f56b0 0%, #0d347a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  text-shadow: 0 6px 18px rgba(20, 72, 160, 0.18);
}
body.page-home .module-company-overview .company-overview-title {
  font-size: 42px;
  line-height: 1.28;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0d347a;
  position: relative;
}
body.page-home .module-company-overview .company-overview-desc {
  margin: 0 auto 28px;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.9;
  color: #556b84;
  position: relative;
}
body.page-home .module-company-overview .btn-company-about {
  margin-bottom: 34px;
}
body.page-home .module-company-overview .strength-value {
  margin-bottom: 6px;
  line-height: 1.1;
  font-size: 35px;
  font-weight: 700;
  color: #0d3f99;
}
body.page-home .module-company-overview .strength-label {
  font-size: 14px;
  color: #566b82;
  line-height: 1.6;
}
body.page-home .module-company-overview .company-rank-row-carousel {
  overflow: hidden;
  margin-top: 10px;
}
body.page-home .module-company-overview .company-rank-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 0;
  transition: transform 0.45s ease;
}
body.page-home .module-company-overview .company-rank-card {
  flex: 0 0 calc((100% - 36px) / 4);
  box-sizing: border-box;
  border-radius: 14px;
  padding: 16px 12px 14px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.25s ease;
}
body.page-home .module-company-overview .company-rank-card.is-visible:hover {
  transform: translate3d(0, -3px, 0) scale(1);
}
body.page-home .module-company-overview .rank-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-home .module-company-overview .rank-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
body.page-home .module-company-overview .rank-value {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: #0f469f;
  margin-bottom: 4px;
}
body.page-home .module-company-overview .rank-text {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.5;
  color: #004ca0;
}
@media (min-width: 992px) {
  body.page-home #module-swiper-1 {
    position: relative;
    z-index: 1;
    height: 100vh;
    min-height: 600px;
  }
  body.page-home #module-swiper-1 .swiper-wrapper,
  body.page-home #module-swiper-1 .swiper-slide {
    height: 100%;
  }
  body.page-home #module-swiper-1 .swiper-slide a {
    display: block;
    height: 100%;
  }
  body.page-home #module-swiper-1 .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.page-home #module-swiper-1 .swiper-slide video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  body.page-home #module-swiper-1 .swiper-pagination {
    bottom: 26px;
    z-index: 2;
  }
  body.page-home #module-swiper-1::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
  }
}
@media (max-width: 1199.98px) {
  body.page-home .module-company-overview .company-overview-title {
    font-size: 34px;
  }
  body.page-home .module-company-overview .company-rank-cards .company-rank-card {
    flex: 0 0 calc((100% - 36px) / 4);
  }
  body.page-home .module-company-overview .rank-value {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  body.page-home .module-company-overview .company-overview-hero {
    padding: 38px 20px 30px;
  }
  body.page-home .module-company-overview .company-overview-brand {
    font-size: 22px;
    letter-spacing: 2px;
  }
  body.page-home .module-company-overview .company-overview-title {
    font-size: 28px;
  }
  body.page-home .module-company-overview .company-overview-desc {
    font-size: 15px;
    line-height: 1.75;
  }
  body.page-home .module-company-overview .btn-company-about {
    margin-bottom: 26px;
  }
  body.page-home .module-company-overview .company-rank-cards {
    flex-wrap: wrap;
    gap: 10px;
  }
  body.page-home .module-company-overview .company-rank-cards .company-rank-card {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    padding: 14px 10px 12px;
  }
  body.page-home .module-company-overview .rank-value {
    font-size: 28px;
  }
  body.page-home .module-home-video .home-video-wrap {
    height: auto;
    min-height: 0;
    aspect-ratio: 16/9;
  }
  body.page-home .module-home-video .home-video-player {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  body.page-home .module-home-video .home-video-floating-text {
    width: min(100%, 980px);
    max-width: 100%;
    padding: 28px 24px;
    border-radius: 12px;
    margin-bottom: -36px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 251, 255, 0.74) 100%);
    transform: translateX(-50%) scale(0.93);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  body.page-home .module-home-video .home-video-floating-text .home-video-floating-title {
    font-size: clamp(15px, 3.2vw, 22px);
    flex: none;
    width: 100%;
    text-align: center;
  }
  body.page-home .module-home-video .home-video-floating-text .reveal-btn-wrap {
    margin-left: 0;
  }
  body.page-home .module-home-video .home-video-floating-text .btn-company-about {
    margin-left: 0;
  }
  body.page-home .home-solution-tabs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body.page-home .solution-tabs-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    border-right: 0;
    border-bottom: 4px dashed #0e57cc;
    padding-right: 0;
    overflow: hidden;
    padding-bottom: 10px;
  }
  body.page-home .solution-tab-btn {
    white-space: normal;
    justify-content: flex-start;
    text-align: left;
    font-size: 18px;
    padding: 10px 0;
    flex: 1 1 160px;
  }
  body.page-home .solution-tab-icon {
    width: 32px;
    height: 32px;
  }
  body.page-home .solution-tab-icon img {
    width: 28px;
    height: 28px;
  }
  body.page-home .solution-panel {
    grid-template-columns: 1fr;
  }
  body.page-home .solution-copy h2 {
    font-size: 34px;
  }
  body.page-home .module-products-apps-line {
    padding-top: 34px;
  }
  body.page-home .home-section-title {
    font-size: 24px;
  }
  body.page-home .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  body.page-home .home-product-thumb {
    height: 200px;
  }
  body.page-home .module-home-solutions-line {
    margin-top: 72px;
  }
}
@media (max-width: 767.98px) {
  body.page-home .module-company-overview .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  body.page-home .module-company-overview .company-overview-hero {
    padding: 28px 12px 22px;
  }
  body.page-home .module-company-overview .company-overview-brand {
    font-size: 18px;
    letter-spacing: 1px;
  }
  body.page-home .module-company-overview .company-overview-title {
    font-size: 24px;
    line-height: 1.35;
  }
  body.page-home .module-company-overview .company-overview-desc {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.65;
  }
  body.page-home .module-company-overview .btn-company-about {
    margin-bottom: 20px;
  }
  body.page-home .module-company-overview .company-rank-row-carousel {
    margin-top: 6px;
  }
  body.page-home .module-company-overview .company-rank-cards {
    flex-wrap: wrap;
    gap: 8px;
  }
  body.page-home .module-company-overview .company-rank-card {
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
    border-radius: 10px;
    padding: 12px 10px;
  }
  body.page-home .module-company-overview .rank-value {
    font-size: 24px;
  }
  body.page-home .module-company-overview .rank-text {
    font-size: 12px;
  }
  body.page-home .module-home-video .home-video-wrap {
    height: auto;
    min-height: 0;
    aspect-ratio: 16/9;
  }
  body.page-home .module-home-video .home-video-floating-text {
    width: calc(100% - 12px);
    margin-bottom: -24px;
    padding: 14px 12px;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.62) 0%, rgba(248, 251, 255, 0.58) 100%);
    transform: translateX(-50%) scale(0.88);
  }
  body.page-home .module-home-video .home-video-floating-title {
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    padding-right: 0;
    width: 100%;
  }
  body.page-home .module-home-video .home-video-floating-text .btn-company-about {
    position: static;
    transform: none;
  }
}
@media (max-width: 575.98px) {
  body.page-home .module-company-overview .company-overview-title {
    font-size: 23px;
  }
  body.page-home .module-company-overview .company-overview-brand {
    font-size: 14px;
  }
  body.page-home .module-company-overview .strength-value {
    font-size: 27px;
  }
  body.page-home .module-company-overview .strength-label {
    font-size: 13px;
  }
  body.page-home .module-company-overview .company-rank-cards .company-rank-card {
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }
  body.page-home .module-company-overview .rank-value {
    font-size: 26px;
  }
  body.page-home .home-products-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .home-product-thumb {
    height: 210px;
  }
  body.page-home .module-home-video .home-video-wrap {
    height: auto;
    min-height: 0;
    aspect-ratio: 16/9;
  }
  body.page-home .module-home-video .home-video-floating-text {
    border-radius: 10px;
    bottom: 0;
    width: calc(100% - 20px);
    padding: 18px 12px;
    margin-bottom: -26px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 251, 255, 0.46) 100%);
    transform: translateX(-50%) scale(0.84);
  }
  body.page-home .module-home-video .home-video-floating-text .home-video-floating-title {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.1px;
    font-weight: 800;
    color: #0b1220;
    text-shadow: none;
    width: 100%;
    text-align: center;
  }
  body.page-home .module-home-video .home-video-floating-text .btn-company-about {
    position: static;
    transform: none;
  }
}
@media (max-width: 575.98px) and (hover: hover) and (pointer: fine) {
  body.page-home .module-home-video .home-video-floating-text .btn-company-about:hover {
    transform: translateY(-2px);
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotate-angle {
  0% {
    --angle: 0deg;
  }
  100% {
    --angle: 360deg;
  }
}
@font-face {
  font-family: "Jost";
  src: url("/vendor/font/jost/Jost-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/vendor/font/jost/Jost-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}
/* Listing uses storefront primary; detail pages share same token */
body.page-news,
body.page-news-details {
  background-color: #fff;
  --gw-theme: #004ca0;
  --gw-br-2: 12px;
  --gw-font-12: 0.75rem;
  --gw-font-14: 0.875rem;
  --gw-font-16: 1rem;
  --gw-font-18: 1.125rem;
  --gw-font-24: 1.5rem;
  --gw-font-30: 1.875rem;
  --gw-font-36: 2.25rem;
  --gw-font-48: 3rem;
  --gw-font-60: 3.75rem;
}

/* 100vw 与竖向滚动条并存时避免挤掉右侧一截；稳定滚动条槽减少裁切 */
body.page-news {
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body.page-news .breadcrumb-wrap,
body.page-news-details .breadcrumb-wrap {
  display: none !important;
}

.gw-news-page,
.gw-news-detail-page {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
}

.gw-flex-center {
  display: flex;
  justify-content: center;
}

/* 副标题起：与视口同宽，仅保留左右安全边距（不再受 Bootstrap .container 限制） */
.gw-news-page__fullbleed {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4.5vw, 80px);
  padding-right: clamp(16px, 4.5vw, 80px);
  box-sizing: border-box;
}

.line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-1 {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Listing: breadcrumb strip --- */
.gw-news-page .news-kv {
  padding-top: 0;
}

.gw-news-detail-page .news-kv {
  padding-top: 72px;
}

@media (min-width: 992px) {
  .gw-news-detail-page .news-kv {
    padding-top: 110px;
  }
}
.gw-news-page .news-kv .gw-news-page__fullbleed {
  border-top: none;
  max-width: 100%;
  width: 100%;
  padding-left: clamp(16px, 4.5vw, 80px);
  padding-right: clamp(16px, 4.5vw, 80px);
}

.gw-news-page .section-bread {
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.gw-news-page .section-bread li {
  margin-right: 10px;
  flex-shrink: 0;
}

.gw-news-page .section-bread li a {
  font-size: var(--gw-font-14);
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.gw-news-page .section-bread li:not(:first-child) a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  transform: rotate(-45deg);
  margin-right: 10px;
  margin-bottom: 2px;
}

.gw-news-page .section-bread .gw-bread-home {
  width: 18px;
  height: 18px;
  opacity: 0.75;
}

.gw-news-page .section-bread .gw-bread-current {
  font-size: var(--gw-font-14);
  color: #888;
}

/* --- Listing: hero（大标题 / 副标题已移除，仅保留轮播） --- */
.gw-news-page .news-1 {
  padding-top: max(2.5vw, 20px);
  padding-bottom: max(3vw, 24px);
}

/* --- Hero carousel：视口全宽 + 居中主卡 + 左右对称预览（无箭头） --- */
.gw-news-page .gw-news-hero {
  margin-top: max(1vw, 8px);
  margin-bottom: max(1.5vw, 20px);
}

.gw-news-page .gw-news-hero--bleed {
  /* 用 svw 避免 100vw 含滚动条宽度导致右侧被 overflow-x 裁掉、预览缺一块 */
  width: 100svw;
  max-width: 100svw;
  margin-left: calc(50% - 50svw);
  margin-right: calc(50% - 50svw);
  box-sizing: border-box;
}

@supports not (width: 100svw) {
  .gw-news-page .gw-news-hero--bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.gw-news-page .gw-news-hero__viewport {
  width: 100%;
  padding: 0;
}

.gw-news-page .gw-news-hero__pag {
  display: flex;
  justify-content: center;
  padding-top: max(1.25vw, 14px);
  padding-left: clamp(12px, 3vw, 40px);
  padding-right: clamp(12px, 3vw, 40px);
  box-sizing: border-box;
}

.gw-news-page .gw-news-hero .main-news {
  padding: 0;
}

/* centeredSlides + slidesPerView:auto：主卡居中，左右各露一截邻卡（对称） */
.gw-news-page .gw-news-hero .main-news-swiper {
  overflow: hidden;
  padding-bottom: 6px;
}

.gw-news-page .gw-news-hero .main-news-swiper .swiper-wrapper {
  align-items: stretch;
}

.gw-news-page .gw-news-hero .main-news-swiper .swiper-slide {
  width: 86vw;
  max-width: none;
  height: auto;
  box-sizing: border-box;
  display: flex;
  transition: opacity 0.4s ease;
}

.gw-news-page .gw-news-hero .main-news-swiper .swiper-slide > .news-item {
  flex: 1;
  width: 100%;
  min-width: 0;
  border-radius: 16px;
}

/* 只淡化「紧邻」上一张/下一张；无上一张时不会有 slide-prev，无下一张时不会有 slide-next */
.gw-news-page .gw-news-hero .main-news-swiper .swiper-slide.swiper-slide-prev,
.gw-news-page .gw-news-hero .main-news-swiper .swiper-slide.swiper-slide-next {
  opacity: 0.48;
}

.gw-news-page .gw-news-hero .main-news-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 1;
}

/* 更远处的 slide（若可见）保持略淡，避免抢主卡 */
.gw-news-page .gw-news-hero .main-news-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
  opacity: 0.28;
}

@media (min-width: 768px) {
  .gw-news-page .gw-news-hero .main-news-swiper .swiper-slide {
    width: 76vw;
  }
}
@media (min-width: 1200px) {
  .gw-news-page .gw-news-hero .main-news-swiper .swiper-slide {
    width: 68vw;
    max-width: 1180px;
  }
}
@media (min-width: 1600px) {
  .gw-news-page .gw-news-hero .main-news-swiper .swiper-slide {
    width: min(62vw, 1200px);
  }
}
/* --- Featured swiper (horizontal cards) --- */
.gw-news-page .main-news {
  padding: max(6vw, 48px) 0;
}

.gw-news-page .news-1 .main-news {
  padding: 0;
}

.gw-news-page .main-news .news-item {
  display: flex;
  background: #fff;
  border-radius: var(--gw-br-2);
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
  text-decoration: none;
  height: 100%;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.gw-news-page .main-news .news-item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.gw-news-page .main-news .news-item-content {
  flex: 1;
  padding: max(2.5vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.gw-news-page .main-news .news-category {
  display: flex;
  align-items: center;
  color: var(--gw-theme);
  font-size: var(--gw-font-14);
}

.gw-news-page .main-news .news-category::before {
  content: "";
  display: block;
  width: 0.55em;
  height: 0.55em;
  background-color: var(--gw-theme);
  border-radius: 50%;
  margin-right: 0.5em;
  flex-shrink: 0;
}

.gw-news-page .main-news .news-title {
  color: #000;
  font-size: clamp(1rem, 1.6vw, var(--gw-font-24));
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 max(1.5vw, 12px);
}

.gw-news-page .main-news .news-date {
  color: #888;
  font-size: var(--gw-font-14);
}

.gw-news-page .main-news .news-item-img {
  width: 46%;
  min-height: 200px;
  height: 26vw;
  max-height: 420px;
  position: relative;
  flex-shrink: 0;
}

.gw-news-page .main-news .ni-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.gw-news-page .gw-news-hero .news-pagination {
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 6px 12px;
}

.gw-news-page .gw-news-hero .swiper-pagination {
  position: static;
  transform: none;
}

.gw-news-page .gw-news-hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: var(--gw-theme);
  transition: width 0.3s ease-in-out;
}

.gw-news-page .gw-news-hero .swiper-pagination-bullet-active {
  width: 70px;
  border-radius: 5px;
}

.gw-news-page .gw-news-hero .main-news .news-item:hover {
  transform: scale(0.995);
}

/* --- Grid section --- */
.gw-news-page .news-2 {
  background-color: #fff;
  padding: max(4vw, 40px) 0 max(6vw, 56px);
}

.gw-news-page .news-2 .gw-news-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: max(2vw, 20px);
}

.gw-news-page .news-2 .gw-news-toolbar__start {
  flex: 1;
  min-width: 0;
}

.gw-news-page .news-2 .gw-news-toolbar__end {
  flex: 0 0 auto;
}

.gw-news-page .news-2 .gw-news-tabs {
  flex: 1;
  min-width: 0;
}

/* 与头部 search-group 同构，并用主题色做焦点 / 图标品牌化 */
.gw-news-page .news-2 .gw-news-search.search-group {
  --search-bg: #fff;
  --search-border: rgba(17, 24, 39, 0.1);
  --search-text: #111827;
  --search-placeholder: rgba(17, 24, 39, 0.48);
  flex: 0 0 auto;
  width: min(300px, 100%);
  max-width: 100%;
  margin-left: auto;
  background: var(--search-bg);
  border: 1px solid var(--search-border);
  border-radius: 999px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.gw-news-page .news-2 .gw-news-search.search-group:hover {
  border-color: rgba(0, 76, 160, 0.22);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
}
.gw-news-page .news-2 .gw-news-search.search-group:focus-within {
  border-color: rgba(0, 76, 160, 0.42);
  box-shadow: 0 0 0 3px rgba(0, 76, 160, 0.14), 0 6px 20px rgba(0, 0, 0, 0.08);
}
.gw-news-page .news-2 .gw-news-search.search-group .form-control {
  background-color: transparent;
  color: var(--search-text);
  padding: 0 46px 0 18px;
  border-radius: 999px;
  border: none;
  width: 100%;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  height: 44px;
  box-shadow: none;
  line-height: 1;
}
.gw-news-page .news-2 .gw-news-search.search-group .form-control::-moz-placeholder {
  color: var(--search-placeholder);
}
.gw-news-page .news-2 .gw-news-search.search-group .form-control::placeholder {
  color: var(--search-placeholder);
}
.gw-news-page .news-2 .gw-news-search.search-group .form-control:focus {
  box-shadow: none;
  background-color: transparent;
}
.gw-news-page .news-2 .gw-news-search.search-group .btn {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 76, 160, 0.1);
  transition: background 0.2s ease;
}
.gw-news-page .news-2 .gw-news-search.search-group .btn i {
  color: var(--gw-theme);
  font-size: 16px;
  line-height: 1;
}
.gw-news-page .news-2 .gw-news-search.search-group .btn:hover {
  background: rgba(0, 76, 160, 0.18);
}
.gw-news-page .news-2 .gw-news-search.search-group .btn:active {
  background: rgba(0, 76, 160, 0.26);
}

.gw-news-page .news-2 .news-2-c-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.gw-news-page .news-2 .news-2-c-list .news-2-item {
  font-size: var(--gw-font-14);
  color: #000;
  padding: 0 max(1vw, 14px);
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.gw-news-page .news-2 .news-2-c-list .news-2-item:hover,
.gw-news-page .news-2 .news-2-c-list .news-2-item.active {
  background: var(--gw-theme);
  color: #fff;
  border-color: var(--gw-theme);
  box-shadow: 0 6px 18px rgba(0, 76, 160, 0.28), 0 2px 6px rgba(0, 76, 160, 0.15);
}

@media (max-width: 991px) {
  .gw-news-page .news-2 .gw-news-toolbar {
    flex-wrap: wrap;
  }
  .gw-news-page .news-2 .gw-news-toolbar__start {
    flex: 1 1 100%;
    order: 1;
  }
  .gw-news-page .news-2 .gw-news-toolbar__end {
    flex: 1 1 100%;
    order: 2;
    width: 100%;
  }
  .gw-news-page .news-2 .gw-news-tabs {
    flex: 1 1 100%;
  }
  .gw-news-page .news-2 .gw-news-search.search-group {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}
.gw-news-page .news-2 .main-news {
  padding: 0;
}

.gw-news-page .news-2 .news-2-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: max(2vw, 20px) max(1.5vw, 16px);
  align-items: stretch;
}

.gw-news-page .news-2 .news-2-list .news-item {
  background-color: #fff;
  flex-direction: column;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(0, 0, 0, 0.05);
  min-height: 0;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gw-news-page .news-2 .news-2-list .news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.gw-news-page .news-2 .news-2-list .news-item-img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  min-height: 140px;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}

/* 横向铺满图区（左右无留白）；上下按裁切对齐，保证视觉满幅 */
.gw-news-page .news-2 .news-2-list .news-item-img .ni-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.gw-news-page .news-2 .news-2-list .news-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: max(2.5rem, 44px);
  height: max(2.5rem, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
  line-height: 1;
  color: var(--gw-theme);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.gw-news-page .news-2 .news-2-list .news-arrow .bi {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
}

.gw-news-page .news-2 .news-2-list .news-item:hover .news-arrow {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.gw-news-page .news-2 .news-2-list .news-item-content {
  padding: max(1.65rem, 2.15vw) max(1.35rem, 2vw) max(2rem, 2.65vw);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* 加高卡片：垫高文字区；图区比例与尺寸不变 */
  min-height: clamp(7.5rem, 11vw, 10.5rem);
}

.gw-news-page .news-2 .news-2-list .news-meta {
  margin-top: max(1.85vw, 16px);
}

.gw-news-page .news-2 .news-2-list .news-meta .news-title {
  margin-bottom: max(1vw, 10px);
  font-size: clamp(1rem, 1.2vw, 1.1875rem);
  line-height: 1.42;
  font-weight: 700;
}

/* WOW-style（详情等通用页） */
.gw-wow {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--gw-delay, 0s), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--gw-delay, 0s);
}

.gw-wow.gw-wow-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* --- 文章列表页：品牌化滚动动效（大位移 + 强淡入淡出 + 轻缩放） --- */
body.page-news .gw-news-page {
  --gw-reveal-dur: 1.05s;
  --gw-fade-dur: 1.35s;
  --gw-reveal-ease: cubic-bezier(0.14, 1, 0.32, 1);
  /* 淡入淡出略慢、更明显 */
  --gw-fade-ease: cubic-bezier(0.33, 0, 0.2, 1);
  --gw-reveal-y: 120px;
  --gw-reveal-x: 132px;
  --gw-reveal-scale: 0.9;
}

body.page-news .gw-news-page .gw-wow {
  opacity: 0;
  will-change: opacity, transform, filter;
  transform: translate3d(0, var(--gw-reveal-y), 0) scale(var(--gw-reveal-scale));
  filter: blur(0);
  transition: opacity var(--gw-fade-dur) var(--gw-fade-ease) var(--gw-delay, 0s), transform var(--gw-reveal-dur) var(--gw-reveal-ease) var(--gw-delay, 0s), filter var(--gw-fade-dur) var(--gw-fade-ease) var(--gw-delay, 0s);
}

body.page-news .gw-news-page .gw-wow--raise {
  transform: translate3d(0, var(--gw-reveal-y), 0) scale(calc(var(--gw-reveal-scale) - 0.02));
  filter: blur(10px);
}

body.page-news .gw-news-page .gw-wow--from-left {
  transform: translate3d(calc(-1 * var(--gw-reveal-x)), calc(var(--gw-reveal-y) * 0.62), 0) scale(var(--gw-reveal-scale));
  filter: blur(8px);
}

body.page-news .gw-news-page .gw-wow--from-right {
  transform: translate3d(var(--gw-reveal-x), calc(var(--gw-reveal-y) * 0.62), 0) scale(var(--gw-reveal-scale));
  filter: blur(8px);
}

body.page-news .gw-news-page .gw-wow--hero {
  --gw-reveal-y: 148px;
  --gw-reveal-scale: 0.88;
}

body.page-news .gw-news-page .gw-wow.gw-wow-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  will-change: auto;
}

@media (max-width: 767px) {
  body.page-news .gw-news-page .gw-wow--raise,
  body.page-news .gw-news-page .gw-wow--from-left,
  body.page-news .gw-news-page .gw-wow--from-right {
    filter: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.page-news .gw-news-page .gw-wow,
  body.page-news .gw-news-page .gw-wow--raise,
  body.page-news .gw-news-page .gw-wow--from-left,
  body.page-news .gw-news-page .gw-wow--from-right {
    filter: none !important;
    transition-duration: 0.01ms !important;
  }
}
/* Paginator */
.gw-news-paginator {
  margin-top: max(3vw, 32px);
  display: flex;
  justify-content: center;
}

.gw-news-paginator__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gw-news-paginator__item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 700;
  font-size: 16px;
}

.gw-news-paginator__item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.gw-news-paginator__item--edge {
  border: 1px solid var(--gw-theme);
  color: var(--gw-theme);
}

.gw-news-paginator__item--edge:hover:not(.is-disabled) {
  background: var(--gw-theme);
  color: #fff;
}

.gw-news-paginator__item.is-active {
  color: var(--gw-theme);
}

.gw-news-paginator__item.is-active span {
  color: var(--gw-theme);
}

.gw-news-paginator__item.is-disabled span {
  opacity: 0.35;
  cursor: not-allowed;
}

/* --- Detail --- */
.gw-news-detail-page .news-kv .container {
  border-top: 1px solid #e5e5e5;
}

.gw-news-detail-page .section-bread {
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.gw-news-detail-page .section-bread li {
  margin-right: 10px;
}

.gw-news-detail-page .section-bread li a {
  font-size: var(--gw-font-14);
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.gw-news-detail-page .section-bread li:not(:first-child) a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  transform: rotate(-45deg);
  margin-right: 10px;
  margin-bottom: 2px;
}

.gw-news-detail-page .section-bread .gw-bread-home {
  width: 18px;
  height: 18px;
  opacity: 0.75;
}

.gw-news-detail-page .section-bread .gw-bread-current {
  font-size: var(--gw-font-14);
  color: #888;
}

.news-d-1 {
  padding: max(1.5vw, 16px) 0 max(4vw, 40px);
}

.news-d-1 .news-d-top {
  padding: clamp(18px, 2.4vw, 28px) clamp(16px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.news-d-1 .news-d-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(17, 24, 39, 0.56) 0%, rgba(17, 24, 39, 0.32) 100%);
  z-index: 0;
}

.news-d-1 .news-d-top > * {
  position: relative;
  z-index: 1;
}

.news-d-1 .news-category {
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
}

.news-d-1 .news-d-title {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: 0;
  max-width: min(780px, 100%);
}

.news-d-1 .news-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.news-d-1 .news-share {
  align-self: flex-end;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-d-1 .news-share span {
  font-size: var(--gw-font-14);
  color: #fff;
}

.news-d-1 .share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-d-1 .share-buttons .btn-share {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.news-d-1 .share-buttons .btn-share:hover {
  background: rgba(255, 255, 255, 0.35);
}

.news-d-1 .news-d-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: max(2.5vw, 24px);
  padding-bottom: max(2.5vw, 24px);
  gap: max(3vw, 28px);
}

.news-d-1 .news-d-content .nd-c-left {
  flex: 1;
  min-width: 0;
  color: #3c3c3c;
  font-size: var(--gw-font-16);
  line-height: 1.8;
}

.news-d-1 .news-d-content .nd-c-left img {
  max-width: 100%;
  height: auto;
}

.news-d-1 .news-d-content .nd-c-right {
  width: 25%;
  min-width: 240px;
  flex-shrink: 0;
}

.news-d-1 .news-d-content .hot-news-title {
  font-size: clamp(1.25rem, 2vw, var(--gw-font-30));
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.news-d-1 .nd-c-right .ar-build-list {
  display: flex;
  flex-direction: column;
}

.news-d-1 .nd-c-right .ar-build-list .ab-l-item {
  display: flex;
  flex-direction: column;
  padding: max(1.5vw, 16px) 0;
  border-bottom: 1px solid #efefef;
  text-decoration: none;
  color: inherit;
  transition: color 0.25s;
}

.news-d-1 .nd-c-right .ar-build-list .ab-l-item:hover {
  color: var(--gw-theme);
}

.news-d-1 .nd-c-right .ar-build-list .ab-l-item .p1 {
  display: flex;
  align-items: center;
  color: #666;
  margin-bottom: 10px;
  font-size: var(--gw-font-14);
}

.news-d-1 .nd-c-right .ar-build-list .ab-l-item .p1 .p1-1 {
  padding-right: 12px;
  border-right: 1px solid #999;
}

.news-d-1 .nd-c-right .ar-build-list .ab-l-item .p1 .p1-2 {
  padding-left: 12px;
}

.news-d-1 .nd-c-right .ar-build-list .ab-l-item .p2 {
  line-height: 1.4;
  color: #333;
  font-size: var(--gw-font-18);
  font-weight: 600;
}

.pagination-detail {
  margin-top: max(3vw, 28px);
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--gw-br-2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: max(1.5vw, 16px);
  font-size: var(--gw-font-16);
  color: #555;
  flex-wrap: wrap;
  gap: 12px;
}

.pagination-detail .nd-page-link {
  flex: 1 1 42%;
  min-width: 180px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.pagination-detail a.nd-page-link:hover {
  color: var(--gw-theme);
}

.pagination-detail .nd-page-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.pagination-detail .nd-page-label {
  display: block;
  font-size: var(--gw-font-12);
  color: #888;
  margin-bottom: 6px;
}

.pagination-detail .nd-page-title {
  font-size: clamp(0.95rem, 1.2vw, var(--gw-font-24));
  font-weight: 700;
  color: #111;
}

/* Related swiper (detail) */
.news-d-2.news-2 {
  background: #fff;
  padding: max(4vw, 40px) 0 max(6vw, 48px);
}

.news-d-2 .news-d-2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: max(2vw, 20px);
}

.news-d-2 .news-d-2-title {
  font-size: clamp(1.25rem, 2.2vw, var(--gw-font-36));
  font-weight: 700;
  color: #000;
}

.news-d-2 .news-d-2-more {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-d-2 .gw-swiper-prev,
.news-d-2 .gw-swiper-next {
  position: static;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gw-theme);
  color: var(--gw-theme);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s;
}

.news-d-2 .gw-swiper-prev::after,
.news-d-2 .gw-swiper-next::after {
  font-size: 14px;
  font-weight: 700;
}

.news-d-2 .gw-swiper-prev:hover,
.news-d-2 .gw-swiper-next:hover {
  background: var(--gw-theme);
  color: #fff;
}

.news-2.news-d-2 .news-2-list {
  display: block;
}

.gw-news-detail-page .news-d-2 .main-news {
  padding: 0;
}

.gw-news-detail-page .news-d-2 .swiper-slide {
  height: auto;
}

.gw-news-detail-page .news-d-2 .news-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--gw-br-2);
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gw-news-detail-page .news-d-2 .news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.11), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.gw-news-detail-page .news-d-2 .news-item-img {
  width: 100%;
  height: 200px;
  position: relative;
}

.gw-news-detail-page .news-d-2 .ni-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gw-news-detail-page .news-d-2 .news-item-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gw-news-detail-page .news-d-2 .news-category {
  display: flex;
  align-items: center;
  color: var(--gw-theme);
  font-size: var(--gw-font-14);
}

.gw-news-detail-page .news-d-2 .news-category::before {
  content: "";
  display: block;
  width: 0.55em;
  height: 0.55em;
  background-color: var(--gw-theme);
  border-radius: 50%;
  margin-right: 0.5em;
  flex-shrink: 0;
}

.gw-news-detail-page .news-d-2 .news-title {
  color: #000;
  font-size: clamp(1rem, 1.2vw, var(--gw-font-24));
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
}

.gw-news-detail-page .news-d-2 .news-date {
  color: #888;
  font-size: var(--gw-font-14);
}

/* Related products block below */
.gw-news-detail-products {
  padding: max(4vw, 40px) 0;
}

.gw-news-detail-products .related-products-section .section-title {
  font-size: var(--gw-font-30);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .gw-news-page .main-news .news-item {
    flex-direction: column;
  }
  .gw-news-page .main-news .news-item-img {
    width: 100%;
    height: 42vw;
    max-height: 360px;
    min-height: 200px;
  }
  .gw-news-page .news-2 .news-2-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: max(2vw, 18px);
  }
  .gw-news-page .news-2 .news-2-list .news-meta .news-title {
    font-size: clamp(1rem, 1.35vw, 1.125rem);
  }
  .news-d-1 .news-d-content {
    flex-direction: column;
  }
  .news-d-1 .news-d-content .nd-c-right {
    width: 100%;
    min-width: 0;
  }
}
/* Homepage / PageBuilder: article grid (Greenway-inspired cards) */
.home-gw-articles {
  --gw-theme: #004ca0;
  --gw-br-2: 12px;
  --gw-font-14: 0.875rem;
}

.home-gw-articles .home-gw-article-card {
  background: #fff;
  border-radius: var(--gw-br-2);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
}

.home-gw-articles .home-gw-article-card:hover {
  transform: scale(0.98);
}

.home-gw-articles .home-gw-article-card .image {
  border-radius: 0;
  margin-bottom: 0;
}

.home-gw-articles .home-gw-article-card .image img {
  border-radius: 0;
}

.home-gw-articles .home-gw-article-card .blog-item-info {
  padding: max(1.25rem, 2vw);
  background: #fff;
}

.home-gw-articles .home-gw-article-card .blog-catalog {
  color: var(--gw-theme);
  font-size: var(--gw-font-14);
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.home-gw-articles .home-gw-article-card .blog-catalog::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--gw-theme);
  flex-shrink: 0;
}

.home-gw-articles .home-gw-article-card .blog-title {
  font-weight: 700;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .gw-news-page .news-2 .news-2-list {
    grid-template-columns: 1fr;
  }
  .gw-news-page .news-2 .news-2-list .news-item-img {
    aspect-ratio: 16/9;
    max-height: none;
    min-height: 180px;
  }
  .gw-news-page .news-2 .news-2-list .news-meta .news-title {
    font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  }
  .gw-news-page .news-2 .news-2-list .news-item-content {
    min-height: clamp(6.25rem, 20vw, 8rem);
    padding-bottom: max(1.75rem, 5vw);
  }
  .gw-news-page .main-news .news-item-content {
    padding: 20px;
  }
  .gw-news-paginator__item {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
body.page-news .page-top-kv {
  position: relative;
  width: 100%;
  margin-top: -2rem;
  margin-bottom: 2.2rem;
}
body.page-news .page-top-kv .sk-img {
  width: 100%;
  height: min(100vh, 760px);
  overflow: hidden;
}
body.page-news .page-top-kv .sk-img img {
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-news .page-top-kv .container {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
}
body.page-news .page-top-kv .skd-mm {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body.page-news .page-top-kv .skd-mm-center {
  font-size: max(3.4375vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
body.page-news .page-top-kv .skd-mm-desc {
  margin-top: 1.1rem;
  max-width: min(72rem, 94vw);
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991.98px) {
  body.page-news .page-top-kv {
    margin-top: 8px;
    margin-bottom: 1.25rem;
  }
  body.page-news .page-top-kv .sk-img {
    height: 54vw;
    min-height: 240px;
    max-height: 420px;
  }
  body.page-news .page-top-kv .skd-mm-center {
    font-size: max(2.1875vw, 34px);
  }
  body.page-news .page-top-kv .skd-mm-desc {
    margin-top: 0.75rem;
    font-size: clamp(0.9rem, 3.2vw, 1.15rem);
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  body.page-news .newest-box {
    padding-right: 50px;
  }
}
body.page-news .newest-box .newest-item {
  background-color: #fff;
  margin-bottom: 20px;
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
body.page-news .newest-box .newest-item .item-img {
  width: 150px;
  flex: 0 0 150px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  body.page-news .newest-box .newest-item .item-img {
    width: 90px;
    flex: 0 0 90px;
    margin-right: 10px;
  }
}
body.page-news .newest-box .newest-item .item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
body.page-news .newest-box .newest-item .item-title a {
  color: #222;
}
body.page-news .newest-box .newest-item .item-title a:hover {
  color: #004ca0;
}
@media (max-width: 768px) {
  body.page-news .newest-box .newest-item .item-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
body.page-news .newest-box .newest-item .item-summary {
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  body.page-news .newest-box .newest-item .item-summary {
    font-size: 15px;
  }
}

.newes-tags {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .newes-tags {
    align-items: flex-start;
  }
}
.newes-tags i {
  color: #666;
  margin-top: 2px;
  flex-shrink: 0;
}
.newes-tags > div {
  gap: 6px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .newes-tags > div {
    gap: 4px;
  }
}
.newes-tags a {
  color: #444;
  margin-right: 10px;
  margin-bottom: 6px;
  display: inline-block;
  padding: 1px 4px;
  border: 1px solid #cad8ff;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.3s;
  background-color: #e5f0fe;
}
@media (max-width: 768px) {
  .newes-tags a {
    margin-right: 6px;
    margin-bottom: 4px;
    font-size: 11px;
    padding: 2px 6px;
  }
}
.newes-tags a:hover {
  color: #fff;
  background-color: #004ca0;
  border-color: #004ca0;
}

.newes-sidebar .search-box {
  margin-bottom: 40px;
}
.newes-sidebar .sidebar-item {
  margin-bottom: 30px;
}
.newes-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}
.newes-sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.newes-sidebar .sidebar-list ul {
  padding-left: 0;
  list-style: none;
}
.newes-sidebar .sidebar-list ul a {
  color: #333;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}
.newes-sidebar .sidebar-list ul a:hover {
  color: #f00;
}

body.page-news-details {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body.page-news-details #appContent {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
body.page-news-details .page-single-shell {
  flex: 1 0 auto;
  display: flex;
  align-items: stretch;
  padding: clamp(0.75rem, 1.6vw, 1.25rem) 0 clamp(1.25rem, 2.8vw, 2rem);
}
body.page-news-details .page-single-shell .container {
  display: flex;
}
body.page-news-details footer#appFooter {
  margin-top: auto;
}
body.page-news-details .newest-box {
  width: 100%;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 6px;
  background: #fff;
}
@media (min-width: 992px) {
  body.page-news-details .newest-box {
    min-height: calc(100dvh - 160px);
  }
}
@media (max-width: 991.98px) {
  body.page-news-details .newest-box {
    min-height: calc(100dvh - 140px);
  }
}
@media (max-width: 768px) {
  body.page-news-details .newest-box {
    padding: 10px;
    margin-bottom: 20px;
  }
}
body.page-news-details .newest-box .newes-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  body.page-news-details .newest-box .newes-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
body.page-news-details .newest-box .newes-top {
  display: flex;
  color: #666;
  margin-bottom: 30px;
}
body.page-news-details .newest-box .newes-top > div {
  margin-right: 10px;
}
@media (min-width: 992px) {
  body.page-news-details .newest-box .newes-top > div {
    margin-right: 40px;
  }
}
body.page-news-details .newest-box .newes-top > div i {
  margin-right: 4px;
  color: #004ca0;
}
@media (min-width: 992px) {
  body.page-news-details .container {
    margin-bottom: 2.5rem;
  }
}
body.page-news-details .news-d-content.news-d-content-full {
  display: block;
}
body.page-news-details .news-d-content.news-d-content-full .nd-c-left {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

.module-swiper .swiper-slide img {
  width: 100%;
}
.module-swiper .swiper-slide video {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.module-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
}
.module-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #004ca0 !important;
}

.product-grid-item {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .product-grid-item {
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .product-grid-item:hover .product-bottom-btns {
    transform: translateY(0) !important;
  }
  .product-grid-item:hover .product-price {
    transform: translateY(100%);
  }
}
.product-grid-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.product-grid-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.product-grid-item .image .product-main-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: box-shadow 0.3s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  display: block;
}
.product-grid-item .image .product-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 2;
}
.product-grid-item .image:has(.product-hover-image):hover .product-main-image {
  opacity: 0.9;
  transform: scale(0.95);
}
.product-grid-item .image:has(.product-hover-image):hover .product-hover-image {
  opacity: 1;
  transform: scale(1);
}
.product-grid-item .image .cancel-favorite {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #b00101;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 3;
}
.product-grid-item .image .cancel-favorite:hover {
  color: #fff;
  background-color: #b00101;
}
.product-grid-item .product-item-info {
  text-align: center;
}
.product-grid-item .product-item-info .product-name {
  padding: 0 5px;
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-grid-item .product-item-info .product-name a {
  color: inherit;
}
.product-grid-item .product-item-info .product-name a:hover {
  text-decoration: underline;
  color: #004ca0;
}
.product-grid-item .product-item-info .product-bottom {
  position: relative;
  overflow: hidden;
}
.product-grid-item .product-item-info .product-bottom-btns {
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.product-grid-item .product-item-info .product-bottom-btns .btn-add-cart {
  font-weight: bold;
  font-size: 16px;
  text-decoration: underline;
  color: #004ca0;
}
.product-grid-item .product-item-info .product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  transition: transform 0.3s;
}
.product-grid-item .product-item-info .product-price .price-new {
  font-size: 1rem;
  font-weight: bold;
  color: #E53E3E;
}
.product-grid-item .product-item-info .product-price .price-old {
  font-size: 0.9rem;
  color: #768088;
  text-decoration: line-through;
  margin-left: 10px;
  margin-right: 10px;
}

.list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
}
.list .image {
  flex: 0 0 200px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.list .product-item-info {
  flex: 0.2;
  padding-left: 20px;
  padding-top: 10px;
  text-align: left;
}
.list .product-item-info .sub-product-title {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list .product-item-info .product-bottom {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list .product-item-info .product-price {
  text-align: left;
  justify-content: flex-start;
}
.list .product-item-info .product-price .price-old {
  margin-left: 0;
}
.list .product-item-info .add-wishlist {
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 100px;
}

.module-product-tab .nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  margin-bottom: 20px;
  margin-top: -6px;
}
@media (min-width: 992px) {
  .module-product-tab .nav-tabs {
    margin-bottom: 40px;
  }
}
.module-product-tab .nav-tabs .nav-link {
  border: none !important;
  color: #7E7E7E;
  border-radius: 50px;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .module-product-tab .nav-tabs .nav-link {
    margin: 0 10px;
    font-size: 14px;
  }
}
.module-product-tab .nav-tabs .nav-link:hover {
  background-color: #FFEBF2;
}
.module-product-tab .nav-tabs .nav-link.active {
  background-color: #FFEBF2;
  color: #004ca0;
}

.blog-item {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .blog-item {
    margin-bottom: 30px;
  }
}
.blog-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: box-shadow 0.3s ease-in-out;
}
.blog-item .image:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.blog-item .image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.blog-item .image:hover img {
  transform: scale(1.02);
}
.blog-item .blog-item-info .blog-catalog {
  font-weight: bold;
  color: #004ca0;
  margin-bottom: 4px;
}
.blog-item .blog-item-info .blog-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .blog-item .blog-item-info .blog-title {
    font-size: 18px;
  }
}
.blog-item .blog-item-info .blog-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-item .blog-item-info .blog-title a:hover {
  color: #004ca0;
}
.blog-item .blog-item-info .author-wrap {
  display: flex;
  align-items: center;
  color: #777;
}
.blog-item .blog-item-info .author-wrap .blog-author {
  margin-right: 20px;
}

body.page-login {
  margin-bottom: 0 !important;
}

.login-register-box {
  max-width: 540px;
  background-color: #F3F3F3;
  margin: 30px auto;
  padding: 16px;
}
@media (min-width: 992px) {
  .login-register-box {
    padding: 36px;
    margin: 70px auto;
  }
}
.login-register-box.iframe {
  margin: 10px 0 0;
}
.login-register-box .login-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.login-register-box .login-sub-title {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 30px;
}
.login-register-box .form-group input {
  border: none;
  height: 44px;
  font-size: 15px;
  border-radius: 0;
}
.login-register-box .btn-submit {
  margin-top: 30px;
}
@media (min-width: 400px) {
  .login-register-box .btn-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.login-register-box .btn-submit .form-submit {
  width: 50%;
  display: block;
}
.login-register-box .btn-submit a {
  color: #222;
  display: block;
  font-weight: bold;
}
.login-register-box .auth-method-switch .btn-outline-primary.active {
  background-color: #004ca0;
  border-color: #004ca0;
  color: #fff !important;
}
.login-register-box .auth-method-switch .btn-outline-primary:not(.active) {
  color: #004ca0;
  background-color: #fff;
}
.login-register-box .auth-method-switch .btn-outline-primary:not(.active):hover {
  background-color: #fff;
  color: #004ca0;
}

.breadcrumb-wrap {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 16px;
  padding: 6px 0;
}
@media (min-width: 768px) {
  .breadcrumb-wrap {
    padding: 8px 0;
    margin-bottom: 30px;
  }
}
.breadcrumb-wrap .breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}
.breadcrumb-wrap .breadcrumb li {
  font-size: 13px;
  text-transform: none;
  display: flex;
  align-items: center;
  line-height: 1.2;
  color: #5f6772;
}
.breadcrumb-wrap .breadcrumb li a {
  text-decoration: none;
  color: #3a4250;
  transition: color 0.2s ease;
}
.breadcrumb-wrap .breadcrumb li a:hover {
  color: #111;
}
.breadcrumb-wrap .breadcrumb li .home-icon {
  margin-right: 4px;
  color: #111;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #c0c7d0;
}
.breadcrumb-wrap .breadcrumb li.active {
  color: #111;
  font-weight: 600;
}

.account-card-box {
  border: 1px solid #ECF0F4;
  padding: 16px;
}
@media (min-width: 992px) {
  .account-card-box {
    min-height: 621px;
  }
}
@media (min-width: 768px) {
  .account-card-box {
    padding: 30px;
  }
}
.account-card-box .account-card-title {
  margin-bottom: 30px;
}
.account-card-box .account-card-title span {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .account-card-box .account-card-title span {
    font-size: 20px;
  }
}
.account-card-box .account-card-sub-title {
  margin-bottom: 16px;
}
.account-card-box .account-card-sub-title span {
  font-size: 16px;
  font-weight: bold;
}

body.page-account .account-info .account-data {
  border-bottom: 1px solid #ECF0F4;
  margin-bottom: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
}
body.page-account .account-info .account-data .account-item-data {
  text-align: center;
}
body.page-account .account-info .account-data .account-item-data .value {
  font-size: 2rem;
  font-weight: bold;
}
body.page-account .account-info .no-order {
  background-color: #f6f6f6;
  font-size: 1rem;
}
body.page-account .account-info .no-order a {
  color: #457C46;
}

.account-sidebar {
  border: 1px solid #e8eef3;
  margin-bottom: 20px;
}
.account-sidebar .account-user {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8eef3;
  margin: 16px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .account-sidebar .account-user {
    margin: 30px;
    padding-bottom: 30px;
  }
}
.account-sidebar .account-user .profile {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8eef3;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
}
.account-sidebar .account-user .account-name .name {
  font-size: 0.9rem;
}
.account-sidebar .account-links {
  list-style: none;
  padding-left: 0;
}
.account-sidebar .account-links li.active a {
  color: #222;
  border-left: 2px solid #004ca0;
}
.account-sidebar .account-links li a {
  color: #7C818B;
  padding: 6px 10px 6px 18px;
  margin: 20px 0;
  border-left: 2px solid transparent;
  display: flex;
  font-weight: bold;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .account-sidebar .account-links li a {
    padding: 6px 10px 6px 30px;
    margin: 26px 0;
  }
}
.account-sidebar .account-links li a:hover {
  color: #222;
}
.account-sidebar .account-links li a i {
  color: #222;
  font-size: 20px;
  margin-right: 20px;
}

.account-table-box th, .account-table-box td {
  padding: 10px 0;
}
.account-table-box th {
  border-bottom: none;
  font-size: 14px;
}
.account-table-box tr:last-child td {
  border-bottom: none;
}

/* Full catalog listing: branded shell, image-led cards, category rail */
body.catalog-list-page {
  /* 与分类侧栏卡片一致 */
  background: #fff;
}
body.catalog-list-page .catalog-page-stage {
  margin-top: -2rem;
}
body.catalog-list-page .catalog-page-stage .page-top-kv {
  position: relative;
  width: 100%;
  margin-bottom: 2.2rem;
}
body.catalog-list-page .catalog-page-stage .page-top-kv .sk-img {
  width: 100%;
  height: min(100vh, 760px);
  overflow: hidden;
}
body.catalog-list-page .catalog-page-stage .page-top-kv .sk-img img {
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.catalog-list-page .catalog-page-stage .page-top-kv .container {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
}
body.catalog-list-page .catalog-page-stage .page-top-kv .skd-mm {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body.catalog-list-page .catalog-page-stage .page-top-kv .skd-mm-center {
  font-size: max(3.4375vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
body.catalog-list-page .catalog-page-stage .page-top-kv .skd-mm-desc {
  margin-top: 1.1rem;
  max-width: min(72rem, 94vw);
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
body.catalog-list-page {
  /* 列表页区块动效：scroll-reveal + inno-scroll-reveal.js */
}
body.catalog-list-page .catalog-list-container {
  min-height: 50vh;
}
body.catalog-list-page .category-nav-sidebar {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.06);
  /* visible：分类项左右滑入时不被裁切（圆角仍由子块背景承担） */
  overflow: visible;
}
body.catalog-list-page .category-nav-sidebar .catalog-nav-sidebar-head {
  padding: 1rem 1.15rem 0.75rem;
  background: #fff;
}
body.catalog-list-page .category-nav-sidebar .catalog-nav-sidebar-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  padding-left: 0.65rem;
  border-left: 3px solid var(--bs-primary, #0d6efd);
}
body.catalog-list-page .category-nav-sidebar .category-link {
  color: #1a1a1a;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
body.catalog-list-page .category-nav-sidebar .category-link:hover {
  color: var(--bs-primary, #0d6efd);
}
body.catalog-list-page .category-nav-sidebar .subcategory-link,
body.catalog-list-page .category-nav-sidebar .subsubcategory-link {
  color: #5c656d;
  font-size: 0.875rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
body.catalog-list-page .category-nav-sidebar .subcategory-link:hover,
body.catalog-list-page .category-nav-sidebar .subsubcategory-link:hover {
  color: #1a1a1a;
  padding-left: 0.15rem;
}
body.catalog-list-page .category-nav-sidebar .category-link.active,
body.catalog-list-page .category-nav-sidebar .subcategory-link.active,
body.catalog-list-page .category-nav-sidebar .subsubcategory-link.active {
  color: var(--bs-primary, #0d6efd) !important;
  font-weight: 600 !important;
}
body.catalog-list-page .category-nav-sidebar .category-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
body.catalog-list-page .category-nav-sidebar .category-toggle i,
body.catalog-list-page .category-nav-sidebar [data-bs-toggle=collapse] i.bi-chevron-down {
  transition: transform 0.2s ease;
  color: #5c656d;
}
body.catalog-list-page .category-nav-sidebar .category-toggle:not(.collapsed) i,
body.catalog-list-page .category-nav-sidebar [data-bs-toggle=collapse]:not(.collapsed) i.bi-chevron-down {
  transform: rotate(180deg);
}
body.catalog-list-page .catalog-product-card {
  background: #fff;
  border-radius: 14px;
  border: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
body.catalog-list-page .catalog-product-card:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
body.catalog-list-page .catalog-product-card-link {
  display: block;
  height: 100%;
}
body.catalog-list-page .catalog-product-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}
body.catalog-list-page {
  /* 图片随比例变化，不被等高卡片拉成正方形区域 */
}
body.catalog-list-page .catalog-product-image {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}
body.catalog-list-page .catalog-product-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
body.catalog-list-page .catalog-product-meta {
  flex: 1 1 auto;
  width: 100%;
  padding: 1rem 1rem 1.2rem;
  text-align: center;
  background: #fff;
}
body.catalog-list-page .catalog-product-name {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.catalog-list-page {
  /* Mobile: open category tree in offcanvas (aligned with header mobile menu) */
}
body.catalog-list-page .catalog-category-filter-btn {
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
}
body.catalog-list-page .catalog-category-filter-btn:active {
  background: #f8f9fa;
}
@media (max-width: 991.98px) {
  body.catalog-list-page .catalog-page-stage {
    margin-top: 0;
  }
  body.catalog-list-page .catalog-page-stage .page-top-kv {
    margin-top: 8px;
    margin-bottom: 1.25rem;
  }
  body.catalog-list-page .catalog-page-stage .page-top-kv .sk-img {
    height: 54vw;
    min-height: 240px;
    max-height: 420px;
  }
  body.catalog-list-page .catalog-page-stage .page-top-kv .skd-mm-center {
    font-size: max(2.1875vw, 34px);
  }
  body.catalog-list-page .catalog-page-stage .page-top-kv .skd-mm-desc {
    margin-top: 0.75rem;
    font-size: clamp(0.9rem, 3.2vw, 1.15rem);
    line-height: 1.5;
  }
}

body.page-categories .top-order-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 26px;
}
body.page-categories .top-order-wrap .right {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  body.page-categories .top-order-wrap .right {
    justify-content: space-between;
    width: 100%;
  }
}
body.page-categories .top-order-wrap .right .order-item {
  display: flex;
  align-items: center;
  border-right: 1px solid #eee;
  padding-right: 10px;
  margin-right: 10px;
}
body.page-categories .top-order-wrap .right .order-item span {
  color: #777;
  margin-right: 8px;
  white-space: nowrap;
}
body.page-categories .top-order-wrap .right .order-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
body.page-categories .top-order-wrap .right .order-item .form-select {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
body.page-categories .top-order-wrap .right .order-item .order-icon {
  color: #333;
  font-size: 20px;
  margin-left: 10px;
  padding: 0 6px;
}
body.page-categories .top-order-wrap .right .order-item .order-icon.active {
  background-color: #eee;
}

.product-grid-item .wishlist-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: none;
}
.product-grid-item .image:hover .wishlist-container {
  display: block;
}
.product-grid-item .add-wishlist {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.product-grid-item .add-wishlist i {
  margin-right: 5px;
}

.filter-sidebar .filter-sidebar-item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .filter-sidebar .filter-sidebar-item {
    margin-bottom: 40px;
  }
}
.filter-sidebar .filter-sidebar-item .title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 14px;
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider {
  position: relative;
  height: 40px;
  margin-bottom: 15px;
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider .slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #ff6b35;
  border-radius: 3px;
  transform: translateY(-50%);
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range] {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transform: translateY(-50%);
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range].slider-min {
  z-index: 2;
}
.filter-sidebar .filter-sidebar-item .price-range .price-slider input[type=range].slider-max {
  z-index: 1;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group {
  flex: 1;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group label {
  display: block;
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 6px;
  font-weight: normal;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.25);
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group input::-moz-placeholder {
  color: #adb5bd;
}
.filter-sidebar .filter-sidebar-item .price-range .price-inputs .price-input-group input::placeholder {
  color: #adb5bd;
}
.filter-sidebar .filter-sidebar-item .price-range .btn {
  width: 100%;
  background-color: #ff6b35;
  border-color: #ff6b35;
  font-size: 14px;
  padding: 10px 16px;
  font-weight: 500;
}
.filter-sidebar .filter-sidebar-item .price-range .btn:hover {
  background-color: #e55a2b;
  border-color: #e55a2b;
}
.filter-sidebar .filter-sidebar-item .price-range .btn:focus {
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.25);
}
.filter-sidebar .filter-sidebar-item #filter-category > .accordion-item > .accordion-title {
  padding: 4px 0;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item {
  border: none;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title > a {
  color: #222;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title .accordion-button {
  width: 30px;
  height: 30px;
  box-shadow: none;
  background-color: transparent !important;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title .accordion-button::after {
  --bs-accordion-btn-icon-width: .8rem;
  opacity: 0.7;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-body {
  padding: 0;
  padding-left: 14px;
}
@media (max-width: 768px) {
  .filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    padding-left: 20px;
    padding-top: 20px;
  }
}

@media (max-width: 992px) {
  body.page-product .breadcrumb-wrap {
    display: none;
  }
}
body.page-product .product-description {
  margin-bottom: 40px;
}
body.page-product .product-description .tab-content > .tab-pane.fade {
  transition: opacity 0.4s ease-in-out;
}
body.page-product .product-description .nav-tabs .nav-link {
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
body.page-product .product-hero-lead {
  margin-top: 14px;
  color: #4a4f57;
  font-size: 15px;
  line-height: 1.9;
  padding: 14px 16px;
  border-left: 3px solid #111;
  background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
}
body.page-product .product-brand-meta {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
body.page-product .product-brand-meta .brand-meta-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}
body.page-product .product-brand-meta .brand-meta-item .title {
  color: #808893;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.page-product .product-brand-meta .brand-meta-item .value,
body.page-product .product-brand-meta .brand-meta-item .value a {
  color: #1f242b;
}
body.page-product .product-brand-highlights {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}
body.page-product .product-brand-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f242b;
  font-weight: 500;
  background: #f4f6f8;
  border-radius: 8px;
  padding: 10px 12px;
}
body.page-product .product-brand-highlights .highlight-item i {
  color: #111;
}
body.page-product .product-brand-cta {
  margin-top: 22px;
}
body.page-product .product-brand-content {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
body.page-product .product-brand-content-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #15191f;
}
body.page-product .product-brand-content-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #15191f;
}
body.page-product .product-brand-content-body {
  color: #3e4650;
  line-height: 1.9;
}
@media (prefers-reduced-motion: reduce) {
  body.page-product .product-description .tab-content > .tab-pane.fade {
    transition: none;
  }
  body.page-product .product-description .nav-tabs .nav-link {
    transition: none;
  }
}
body.page-product .page-product-top {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-left-col {
    padding: 0;
  }
}
body.page-product .page-product-top .product-images {
  display: flex;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images {
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}
@media (max-width: 991px) {
  body.page-product .page-product-top .product-images {
    margin-bottom: 10px;
    flex-direction: column;
  }
}
body.page-product .page-product-top .product-images .sub-product-img {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img {
    width: 100px;
    height: 560px;
    flex: 0 0 100px;
    margin-right: 20px;
  }
  body.page-product .page-product-top .product-images .sub-product-img:hover .swiper .sub-product-btn {
    display: block;
  }
  body.page-product .page-product-top .product-images .sub-product-img::before, body.page-product .page-product-top .product-images .sub-product-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  body.page-product .page-product-top .product-images .sub-product-img::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
  }
  body.page-product .page-product-top .product-images .sub-product-img::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  }
  body.page-product .page-product-top .product-images .sub-product-img:hover::before, body.page-product .page-product-top .product-images .sub-product-img:hover::after {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper {
    height: 100%;
  }
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item img {
  border: 1px solid #eee;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide {
    width: 100px;
    height: 100px;
  }
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item:hover {
    border-color: #004ca0;
  }
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide .thumbnail-item.active {
    border-color: #004ca0;
    background-color: rgba(0, 76, 160, 0.1);
  }
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn {
  display: none;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9;
  font-size: 20px;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div.sub-product-prev {
  top: 0;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div.sub-product-next {
  bottom: 0;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-pagination {
    display: none;
  }
}
body.page-product .page-product-top .product-images .main-product-img {
  cursor: pointer;
}
@media (max-width: 991px) {
  body.page-product .page-product-top .product-images .main-product-img {
    margin-top: 15px;
  }
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide .video-play-overlay {
  cursor: pointer;
  transition: transform 0.3s ease;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .swiper .swiper-slide .video-play-overlay:hover {
  transform: scale(1.1);
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.page-product .page-product-top .product-images .mobile-product-slideshow .mobile-product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #004ca0;
  transform: scale(1.2);
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info {
    padding-left: 20px;
  }
}
body.page-product .page-product-top .product-info .product-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-title {
    font-size: 24px;
  }
}
body.page-product .page-product-top .product-info .product-price {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
body.page-product .page-product-top .product-info .product-price .price {
  font-size: 20px;
  font-weight: bold;
  color: #E53E3E;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-price .price {
    font-size: 26px;
  }
}
body.page-product .page-product-top .product-info .product-price .old-price {
  font-size: 16px;
  color: #777;
  text-decoration: line-through;
}
body.page-product .page-product-top .product-info .stock-wrap > div {
  font-weight: bold;
  font-size: 14px;
}
body.page-product .page-product-top .product-info .stock-wrap > div.in-stock {
  color: #3FC158;
  background-color: #EEF8EE;
}
body.page-product .page-product-top .product-info .stock-wrap > div.out-stock {
  color: #777;
  background-color: #e3e3e3;
}
body.page-product .page-product-top .product-info .sub-product-title {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
  margin-top: 10px;
}
body.page-product .page-product-top .product-info .product-param {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  font-size: 14px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-param {
    margin: 20px 0;
  }
}
body.page-product .page-product-top .product-info .product-param li {
  color: #333;
  line-height: 1.8;
  padding: 2px 0;
}
body.page-product .page-product-top .product-info .product-param li span.title {
  color: #888;
}
body.page-product .page-product-top .product-info .product-variant-box {
  margin-bottom: 20px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant {
  margin-bottom: 6px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px 14px;
  border-radius: 2px;
  gap: 8px;
  min-height: 40px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name .variant-image-container {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name .variant-image-container .variant-value-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name .variant-text {
  font-size: 14px;
  line-height: 1.2;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.disabled {
  color: #999;
  border-color: #ddd;
  border-style: dashed;
  text-decoration: line-through;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.disabled .variant-image-container {
  opacity: 0.5;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.active {
  border-color: #004ca0;
  color: #004ca0;
  border-style: solid;
  box-shadow: 0 2px 4px #004ca0;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name:hover {
  border-color: #004ca0;
  box-shadow: 0 2px 4px #004ca0;
}
body.page-product .page-product-top .product-info .product-info-bottom {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom {
    height: 50px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .quantity-wrap {
    height: 40px;
    margin-bottom: 10px;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
  height: inherit;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
    margin-left: 20px;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
    height: 40px;
    display: flex;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn {
  height: inherit;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn {
    width: 50%;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn.buy-now {
  background-color: #E6E8EB;
  color: #333;
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn.buy-now:hover {
  background-color: #D9DCE1;
}
body.page-product .page-product-top .product-info .add-wishlist {
  font-weight: bold;
  cursor: pointer;
}
body.page-product .page-product-top .product-info .add-wishlist:hover {
  text-decoration: underline;
}
body.page-product .bundle-items-display {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}
body.page-product .bundle-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 10px;
}
body.page-product .bundle-products {
  gap: 10px;
}
body.page-product .bundle-product-item {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px;
  margin: 2px 0;
}
body.page-product .bundle-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  line-height: 1.2;
}
body.page-product .bundle-separator {
  font-weight: bold;
  color: #6c757d;
  font-size: 18px;
}
body.page-product .bundle-total-price {
  color: #dc3545;
  font-size: 16px;
  border-top: 1px solid #dee2e6;
  padding-top: 10px;
}
body.page-product .product-options {
  margin-bottom: 20px;
}
body.page-product .product-options .options-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
body.page-product .product-options .option-group {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  background-color: #f8f9fa;
  margin-bottom: 15px;
}
body.page-product .product-options .option-group.has-error {
  border-color: #E53E3E !important;
  background-color: #fff5f5 !important;
  box-shadow: 0 0 0 0.2rem rgba(229, 62, 62, 0.25) !important;
}
body.page-product .product-options .option-group.has-error .option-label {
  color: #E53E3E !important;
}
body.page-product .product-options .option-group.has-error .option-select {
  border-color: #E53E3E !important;
}
body.page-product .product-options .option-group.has-error .option-radio-item,
body.page-product .product-options .option-group.has-error .option-checkbox-item {
  background-color: #fff !important;
}
body.page-product .product-options .option-group.has-success {
  border-color: #28a745 !important;
  background-color: #f8fff9 !important;
}
body.page-product .product-options .option-group.has-success .option-label::after {
  content: " ✓";
  color: #28a745;
  font-weight: bold;
  margin-left: 5px;
}
body.page-product .product-options .option-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 10px;
  display: block;
}
body.page-product .product-options .option-select {
  width: 100%;
}
body.page-product .product-options .option-select option:disabled {
  color: #6c757d;
  background-color: #f8f9fa;
}
body.page-product .product-options .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 576px) {
  body.page-product .product-options .radio-group {
    gap: 6px;
  }
}
body.page-product .product-options .option-radio-item {
  border: 2px solid #dee2e6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  min-width: 120px;
  text-align: center;
}
@media (max-width: 576px) {
  body.page-product .product-options .option-radio-item {
    min-width: calc(33.333% - 4px);
    padding: 6px;
    font-size: 11px;
  }
}
body.page-product .product-options .option-radio-item:hover {
  border-color: #004ca0;
  box-shadow: 0 2px 4px rgba(233, 30, 99, 0.1);
}
body.page-product .product-options .option-radio-item:has(input:checked) {
  background-color: #e7f3ff;
  border-color: #004ca0;
}
body.page-product .product-options .option-radio-item.selected label {
  color: #004ca0;
}
body.page-product .product-options .option-radio-item.out-of-stock {
  background-color: #f8f9fa !important;
  border-color: #dee2e6 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}
body.page-product .product-options .option-radio-item.out-of-stock:hover {
  border-color: #dee2e6 !important;
  box-shadow: none !important;
}
body.page-product .product-options .option-radio-item.out-of-stock label {
  cursor: not-allowed;
  color: #6c757d;
}
body.page-product .product-options .option-radio-item.out-of-stock .out-of-stock-text {
  color: #E53E3E;
  font-weight: 500;
}
body.page-product .product-options .option-radio-item label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
body.page-product .product-options .option-radio-item .form-check-input {
  display: none;
}
body.page-product .product-options .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 576px) {
  body.page-product .product-options .checkbox-group {
    gap: 6px;
  }
}
body.page-product .product-options .option-checkbox-item {
  border: 2px solid #dee2e6;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  min-width: 120px;
  text-align: center;
}
@media (max-width: 576px) {
  body.page-product .product-options .option-checkbox-item {
    min-width: calc(33.333% - 4px);
    padding: 6px;
    font-size: 11px;
  }
}
body.page-product .product-options .option-checkbox-item:hover {
  border-color: #28a745;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.1);
}
body.page-product .product-options .option-checkbox-item:has(input:checked) {
  background-color: #d4edda;
  border-color: #28a745;
}
body.page-product .product-options .option-checkbox-item.selected label {
  color: #1976d2;
}
body.page-product .product-options .option-checkbox-item.out-of-stock {
  background-color: #f8f9fa !important;
  border-color: #dee2e6 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}
body.page-product .product-options .option-checkbox-item.out-of-stock:hover {
  border-color: #dee2e6 !important;
  box-shadow: none !important;
}
body.page-product .product-options .option-checkbox-item.out-of-stock label {
  cursor: not-allowed;
  color: #6c757d;
}
body.page-product .product-options .option-checkbox-item.out-of-stock .out-of-stock-text {
  color: #E53E3E;
  font-weight: 500;
}
body.page-product .product-options .option-checkbox-item label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
body.page-product .product-options .option-checkbox-item .form-check-input {
  display: none;
}
body.page-product .product-options .option-image img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
body.page-product .product-options .current-selection-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
body.page-product .product-options .current-selection-summary .card {
  border: none;
  background: transparent;
}
body.page-product .product-options .current-selection-summary .card-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 15px;
}
body.page-product .product-options .selected-option-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
body.page-product .product-options .selected-option-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
body.page-product .product-options .selected-option-item .badge {
  font-size: 0.75em;
  padding: 4px 8px;
  border-radius: 6px;
  background-color: #6c757d !important;
  color: white !important;
}
body.page-product .product-options .selected-option-item .option-value {
  color: #495057;
  font-weight: 500;
}
body.page-product .product-options .total-price-display {
  background: white;
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #004ca0;
}
body.page-product .product-options .current-total-price {
  font-size: 1.1em !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
}
body.page-product .product-options .option-description {
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
  border-left: 3px solid #004ca0;
}
body.page-product .product-options .option-description small {
  color: #6c757d;
  font-style: italic;
}
body.page-product .product-options .price-adjustment {
  font-size: 0.9em;
  color: #28a745;
  font-weight: 500;
}
body.page-product .product-options .out-of-stock-text {
  color: #E53E3E;
  font-size: 0.8em;
  font-weight: 500;
  margin-left: 5px;
}
body.page-product .product-options .option-error-message {
  color: #E53E3E;
  font-size: 0.875em;
  margin-top: 8px;
  display: flex;
  align-items: center;
  animation: fadeIn 0.3s ease-in;
}
body.page-product .product-options .option-error-message i {
  margin-right: 6px;
  font-size: 1em;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-cart .products-table .product-item {
  display: flex;
  align-items: flex-start;
}
body.page-cart .products-table .product-name {
  color: #222;
}
body.page-cart .products-table .product-name a {
  color: inherit;
}
body.page-cart .products-table .product-name a:hover {
  text-decoration: underline;
  color: #004ca0;
}
body.page-cart .products-table .td-image {
  width: 100px;
  padding: 0;
}
@media (min-width: 768px) {
  body.page-cart .products-table .td-image {
    width: 70px;
  }
}
body.page-cart .products-table .product-image {
  width: 90px;
  height: 90px;
}
@media (min-width: 768px) {
  body.page-cart .products-table .product-image {
    margin-right: 10px;
    width: 50px;
    height: 50px;
  }
}
body.page-cart .products-table .product-image img {
  max-height: 100%;
}
body.page-cart .products-table .quantity-wrap {
  height: 27px;
  width: 90px;
}
body.page-cart .products-table .quantity-wrap > div {
  font-size: 14px;
}
@media (min-width: 768px) {
  body.page-cart .products-table .quantity-wrap {
    height: 40px;
    width: 120px;
  }
  body.page-cart .products-table .quantity-wrap > div {
    font-size: 18px;
  }
}
body.page-cart .products-table .quantity-wrap input {
  font-size: 14px;
}
@media (max-width: 768px) {
  body.page-cart .products-table tr {
    position: relative;
  }
  body.page-cart .products-table thead, body.page-cart .products-table .td-price, body.page-cart .products-table .td-subtotal {
    display: none;
  }
  body.page-cart .products-table .td-product-check {
    padding-left: 0;
  }
  body.page-cart .products-table .td-product-info {
    width: 100%;
    padding: 20px 0 20px 10px;
  }
  body.page-cart .products-table .td-delete {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  body.page-cart .products-table .mb-price {
    display: none;
  }
}
body.page-cart .cart-data {
  background-color: #F8F9FA;
  padding: 26px;
}
body.page-cart .cart-data .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
body.page-cart .cart-data .cart-data-list {
  list-style: none;
  padding: 0;
}
body.page-cart .cart-data .cart-data-list > li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
body.page-cart .cart-data .cart-data-list > li:last-child {
  border-bottom: none;
}
body.page-cart .cart-data .cart-data-list > li:last-child > span:last-child {
  font-weight: bold;
  color: #E53E3E;
  font-size: 24px;
}

body.page-checkout .layer-login {
  color: red;
}
body.page-checkout .breadcrumb-wrap {
  margin-bottom: 0;
}
body.page-checkout footer {
  margin-top: 0;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-container {
    padding: 0;
    max-width: 100%;
  }
  body.page-checkout .checkout-container > .row {
    margin: 0;
  }
  body.page-checkout .checkout-container > .row > .col-md-5, body.page-checkout .checkout-container > .row .col-md-7 {
    padding: 0;
  }
}
body.page-checkout .title-wrap {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-checkout .title-wrap > .title {
  font-size: 15px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body.page-checkout .title-wrap > .title {
    font-size: 18px;
  }
}
body.page-checkout .checkout-info {
  padding-top: 20px;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-info {
    max-width: 720px;
    margin-left: auto;
    padding: 40px;
  }
}
body.page-checkout .checkout-info .checkout-item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-info .checkout-item {
    margin-bottom: 40px;
  }
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item {
  border: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin-top: -1px;
  cursor: pointer;
  position: relative;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:first-child::before {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:last-child::before {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid #8446e0;
  inset-block-start: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  inset: -1px;
  display: none;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active {
  background-color: #fbefff;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active:before {
  display: block;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active .left i {
  color: #8446e0;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active .left i::before {
  content: "\f517";
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left {
  display: flex;
  align-items: center;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left i {
  font-size: 18px;
  color: #888;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left .select-title {
  font-size: 14px;
  margin-left: 14px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .icon {
  max-width: 200px;
  height: 34px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .icon img {
  max-height: 100%;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-data {
    background-color: #F8F9FA;
    padding: 0 40px;
    border-left: 1px solid #e9edf1;
    height: 100%;
  }
}
@media (max-width: 768px) {
  body.page-checkout .checkout-data {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  body.page-checkout .checkout-data .checkout-data-content {
    padding: 40px 0;
    max-width: 430px;
  }
}
body.page-checkout .checkout-data .checkout-data-content .products-table-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 10px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table-wrap {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table-wrap .products-table-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table td {
  padding-left: 0;
  padding-right: 0;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item {
  display: flex;
  align-items: flex-start;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  position: relative;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #004ca0;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image img {
  max-height: 100%;
}
body.page-checkout .checkout-data .cart-data-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #eee;
}
body.page-checkout .checkout-data .cart-data-list > li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
body.page-checkout .checkout-data .cart-data-list > li:last-child {
  border-bottom: none;
}
body.page-checkout .checkout-data .cart-data-list > li:last-child > span:last-child {
  font-weight: bold;
  color: #E53E3E;
  font-size: 24px;
}

body.page-order .account-card-title {
  margin-bottom: 16px;
}
body.page-order .tabs-plus {
  margin-bottom: 16px;
}
body.page-order .order_return {
  padding-left: 20px !important;
}
body.page-order .table-responsive {
  margin-top: 50px;
}

body.page-order-info .products-table td, body.page-order-info .products-table th {
  padding-left: 0;
  padding-right: 0;
}
body.page-order-info .products-table .product-item {
  display: flex;
  align-items: center;
}
body.page-order-info .products-table .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  position: relative;
}
body.page-order-info .products-table .product-item .product-image .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #004ca0;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-order-info .products-table .product-item .product-image img {
  max-height: 100%;
}

body.page-addresses .address-card {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  margin-bottom: 20px;
}
body.page-addresses .address-card .address-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e9ecef;
}
body.page-addresses .address-card .address-card-header .address-card-title {
  margin: 0;
}
body.page-addresses .address-card .address-card-header .address-card-actions {
  display: flex;
  align-items: center;
}
body.page-addresses .address-card .address-card-header .address-card-actions a {
  margin-left: 10px;
}
body.page-addresses .address-card .address-card-body {
  padding: 15px;
  word-break: break-all;
}
body.page-addresses .address-card .address-card-body p {
  margin: 0;
}

body.page-brands .brand-group {
  width: 100%;
}
body.page-brands .brand-group .btn {
  border: 1px solid #e8e8e8;
}
body.page-brands .brand-group .btn:hover {
  background-color: #f4f4f4;
}
body.page-brands .brands-wrap {
  margin-top: 30px;
}
body.page-brands .brands-wrap .item ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
body.page-brands .brands-wrap .item ul li {
  padding: 0 10px;
  margin-bottom: 20px;
}
body.page-brands .brands-wrap .item ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.page-brands .brands-wrap .item ul li a .img {
  width: 99px;
  border: 1px solid #e8e8e8;
  margin-bottom: 10px;
}

body.page-checkout-success .checkout-success-box {
  border: 1px solid #ECF0F4;
  padding: 20px 10px;
  max-width: 730px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box {
    padding: 30px;
  }
}
body.page-checkout-success .checkout-success-box .order-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
body.page-checkout-success .checkout-success-box .order-success-icon img {
  max-width: 170px;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .order-success-icon img {
    max-width: 200px;
  }
}
body.page-checkout-success .checkout-success-box .checkout-success-table th, body.page-checkout-success .checkout-success-box .checkout-success-table td {
  padding: 10px 0;
}
body.page-checkout-success .checkout-success-box .checkout-success-title {
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .checkout-success-title {
    margin-bottom: 30px;
  }
}
body.page-checkout-success .checkout-success-box .checkout-success-title span {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .checkout-success-title span {
    font-size: 30px;
  }
}

.rate {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
}

.rating > input {
  display: none;
}

.rating > label {
  position: relative;
  width: 1em;
  font-size: 30px;
  font-weight: 300;
  color: #e31052;
  cursor: pointer;
}

.rating > label::before {
  content: "★";
  position: absolute;
  opacity: 0;
}

.rating > label:hover:before,
.rating > label:hover ~ label:before {
  opacity: 1 !important;
}

.rating > input:checked ~ label:before {
  opacity: 1;
}

.rating:hover > input:checked ~ label:before {
  opacity: 0.4;
}

.buttons {
  top: 36px;
  position: relative;
}

.rating-submit {
  border-radius: 8px;
  color: #fff;
  height: auto;
}

.rating-submit:hover {
  color: #fff;
}

.page-wallet .transaction-card-box,
.page-wallet .withdrawal-card-box,
.page-wallet .wallet-card-box {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.page-wallet .transaction-card-title,
.page-wallet .withdrawal-card-title,
.page-wallet .wallet-card-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8eef3;
  padding-top: 5px;
  padding-bottom: 15px;
  min-height: 52px;
}
.page-wallet .transaction-card-title .fw-bold,
.page-wallet .withdrawal-card-title .fw-bold,
.page-wallet .wallet-card-title .fw-bold {
  font-size: 1.1rem;
  font-weight: 600;
}
.page-wallet .transaction-table-box,
.page-wallet .withdrawal-table-box,
.page-wallet .wallet-table-box {
  margin-top: 15px;
}
.page-wallet .transaction-table-box th,
.page-wallet .transaction-table-box td,
.page-wallet .withdrawal-table-box th,
.page-wallet .withdrawal-table-box td,
.page-wallet .wallet-table-box th,
.page-wallet .wallet-table-box td {
  padding: 12px 8px;
  font-size: 0.9rem;
}
.page-wallet .transaction-table-box th,
.page-wallet .withdrawal-table-box th,
.page-wallet .wallet-table-box th {
  background-color: #f8f9fa;
  font-weight: 600;
}
.page-wallet .wallet-balance-item,
.page-wallet .wallet-stats-item {
  text-align: center;
  padding: 15px;
}
.page-wallet .wallet-balance-item .value,
.page-wallet .wallet-stats-item .value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.page-wallet .wallet-balance-item .title,
.page-wallet .wallet-stats-item .title {
  font-size: 0.9rem;
}
.page-wallet .wallet-actions .btn.disabled {
  pointer-events: none;
}
.page-wallet .withdrawal-create-box {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.page-wallet .wallet-balance-overview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 30px;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
  overflow: hidden;
}
.page-wallet .wallet-balance-overview .balance-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-wallet .wallet-balance-overview .balance-header i {
  font-size: 1.2rem;
  margin-right: 10px;
  opacity: 0.9;
}
.page-wallet .wallet-balance-overview .balance-header span {
  font-weight: 600;
  font-size: 1rem;
}
.page-wallet .wallet-balance-overview .balance-content {
  padding: 24px 20px 20px;
}
.page-wallet .wallet-balance-overview .balance-content .balance-main {
  text-align: center;
  margin-bottom: 16px;
}
.page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}
.page-wallet .wallet-balance-overview .balance-content .balance-note {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  opacity: 0.9;
}
.page-wallet .wallet-balance-overview .balance-content .balance-note i {
  margin-right: 8px;
  font-size: 0.9rem;
}
.page-wallet .balance-info-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
}
.page-wallet .balance-item {
  text-align: center;
}
.page-wallet .balance-item .value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.page-wallet .balance-item .label {
  font-size: 0.9rem;
  color: #6c757d;
}
.page-wallet .withdrawal-form .required::after {
  content: " *";
  color: #dc3545;
}
.page-wallet .form-actions {
  padding-top: 20px;
  border-top: 1px solid #e8eef3;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .page-wallet .transaction-card-box,
  .page-wallet .withdrawal-card-box,
  .page-wallet .wallet-card-box {
    padding: 15px;
  }
  .page-wallet .transaction-table-box th,
  .page-wallet .transaction-table-box td,
  .page-wallet .withdrawal-table-box th,
  .page-wallet .withdrawal-table-box td,
  .page-wallet .wallet-table-box th,
  .page-wallet .wallet-table-box td {
    padding: 8px 5px;
    font-size: 0.8rem;
  }
  .page-wallet .wallet-balance-item,
  .page-wallet .wallet-stats-item {
    padding: 10px 5px;
  }
  .page-wallet .wallet-balance-item .value,
  .page-wallet .wallet-stats-item .value {
    font-size: 1.2rem;
  }
  .page-wallet .withdrawal-create-box {
    padding: 15px;
  }
  .page-wallet .balance-item .value {
    font-size: 1.2rem;
  }
  .page-wallet .wallet-balance-overview {
    margin-bottom: 20px;
  }
  .page-wallet .wallet-balance-overview .balance-header {
    padding: 12px 16px;
  }
  .page-wallet .wallet-balance-overview .balance-header i {
    font-size: 1.1rem;
  }
  .page-wallet .wallet-balance-overview .balance-header span {
    font-size: 0.9rem;
  }
  .page-wallet .wallet-balance-overview .balance-content {
    padding: 20px 16px 16px;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main {
    margin-bottom: 12px;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .amount {
    font-size: 2rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-main .available-balance .label {
    font-size: 0.9rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-note {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .page-wallet .wallet-balance-overview .balance-content .balance-note i {
    font-size: 0.85rem;
  }
}

.line {
  width: 50%;
  height: 1px;
  background: #c3c1c1;
}

.word {
  color: #c3c1c1;
}

.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #004ca0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  border: none;
}

/**
 * 面包屑内筛选按钮样式
 * 统一产品、分类、品牌页面的手机版筛选按钮样式
 */
.breadcrumb-filter-btn .btn {
  padding: 0.375rem 0.75rem;
  border: 1px solid #007bff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #007bff;
  background-color: transparent;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
  white-space: nowrap;
}
.breadcrumb-filter-btn .btn:hover, .breadcrumb-filter-btn .btn:focus {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.breadcrumb-filter-btn .btn:active {
  color: #fff;
  background-color: #0056b3;
  border-color: #004085;
}
.breadcrumb-filter-btn .btn i {
  font-size: 0.875rem;
}
.breadcrumb-filter-btn .btn .filter-text {
  font-size: 0.875rem;
}
@media (max-width: 575.98px) {
  .breadcrumb-filter-btn .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8125rem;
  }
  .breadcrumb-filter-btn .btn i {
    font-size: 0.8125rem;
  }
  .breadcrumb-filter-btn .btn .filter-text {
    font-size: 0.8125rem;
  }
}

.breadcrumb-wrap .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.breadcrumb-wrap .container.d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 767.98px) {
  .breadcrumb-wrap .container.d-flex {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.breadcrumb-wrap .container .breadcrumb {
  flex-wrap: wrap;
  margin-bottom: 0;
  flex: 1;
}
@media (max-width: 767.98px) {
  .breadcrumb-wrap .container .breadcrumb {
    margin-right: 0;
    flex: 1;
    min-width: 0;
  }
}
.breadcrumb-wrap .container .breadcrumb li a, .breadcrumb-wrap .container .breadcrumb li span {
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 575.98px) {
  .breadcrumb-wrap .container .breadcrumb li:not(:last-child)::after {
    margin: 0 5px;
  }
}

/* 筛选侧边栏样式 */
.filter-sidebar {
  /* 分类菜单优化样式 */
}
.filter-sidebar .category-item {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}
.filter-sidebar .category-item:hover {
  background-color: #f8f9fa;
}
.filter-sidebar .category-link {
  font-size: 14px;
  transition: color 0.2s ease;
}
.filter-sidebar .category-link:hover {
  color: #004ca0 !important;
}
.filter-sidebar .category-link.active {
  color: #004ca0 !important;
  font-weight: 600;
  border-radius: 4px;
}
.filter-sidebar .category-link i {
  font-size: 12px;
}
.filter-sidebar .category-toggle {
  border: none;
  background: none;
  color: #6c757d;
  padding: 4px 8px;
  transition: all 0.2s ease;
}
.filter-sidebar .category-toggle:hover {
  background-color: #e9ecef;
  color: #004ca0;
}
.filter-sidebar .category-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.filter-sidebar .category-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}
.filter-sidebar .subcategory-item {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}
.filter-sidebar .subcategory-item:hover {
  background-color: #f8f9fa;
}
.filter-sidebar .subcategory-link {
  font-size: 13px;
  transition: color 0.2s ease;
}
.filter-sidebar .subcategory-link:hover {
  color: #004ca0 !important;
}
.filter-sidebar .subcategory-link.active {
  color: #004ca0 !important;
  font-weight: 600;
  border-radius: 4px;
}
.filter-sidebar .subcategory-link i {
  font-size: 10px;
}
.filter-sidebar .subcategory-toggle {
  border: none;
  background: none;
  color: #6c757d;
  padding: 2px 6px;
  transition: all 0.2s ease;
}
.filter-sidebar .subcategory-toggle:hover {
  background-color: #e9ecef;
  color: #004ca0;
}
.filter-sidebar .subcategory-toggle i {
  font-size: 10px;
  transition: transform 0.2s ease;
}
.filter-sidebar .subcategory-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}
.filter-sidebar .subsubcategory-item {
  transition: background-color 0.2s ease;
}
.filter-sidebar .subsubcategory-item:hover {
  background-color: #f8f9fa;
}
.filter-sidebar .subsubcategory-link {
  font-size: 12px;
  transition: color 0.2s ease;
}
.filter-sidebar .subsubcategory-link:hover {
  color: #004ca0 !important;
}
.filter-sidebar .subsubcategory-link.active {
  color: #004ca0 !important;
  font-weight: 600;
  background-color: rgba(0, 76, 160, 0.1);
  border-radius: 4px;
}
.filter-sidebar .subsubcategory-link i {
  font-size: 8px;
}
.filter-sidebar {
  /* 手风琴项目边框移除 */
}
.filter-sidebar .accordion-item {
  border: none !important;
}
.filter-sidebar .accordion-item:last-child {
  border-bottom: none !important;
}
.filter-sidebar {
  /* 双滑块价格区间样式 */
}
.filter-sidebar .dual-range-slider {
  position: relative;
  height: 40px;
  margin: 20px 0;
}
.filter-sidebar .dual-range-slider .slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  transform: translateY(-50%);
}
.filter-sidebar .dual-range-slider .slider-range {
  position: absolute;
  top: 50%;
  height: 6px;
  background: #004ca0;
  border-radius: 3px;
  transform: translateY(-50%);
  left: 0%;
  right: 0%;
}
.filter-sidebar .dual-range-slider .slider-thumb {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #004ca0;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  z-index: 2;
}
.filter-sidebar .dual-range-slider .slider-thumb:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.filter-sidebar .dual-range-slider .slider-thumb:active {
  transform: translate(-50%, -50%) scale(1.2);
}
.filter-sidebar .dual-range-slider .slider-thumb.slider-thumb-min {
  left: 0%;
}
.filter-sidebar .dual-range-slider .slider-thumb.slider-thumb-max {
  left: 100%;
}
.filter-sidebar {
  /* 价格输入区域样式 */
}
.filter-sidebar .price-inputs-container {
  order: -1; /* 将价格输入区域移到滑块上方 */
}
.filter-sidebar {
  /* 筛选项样式 */
}
.filter-sidebar .form-check {
  margin-bottom: 0.5rem;
}
.filter-sidebar .form-check .form-check-input:checked {
  background-color: #004ca0;
  border-color: #004ca0;
}
.filter-sidebar .form-check .form-check-input:focus {
  border-color: rgba(0, 76, 160, 0.5);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 76, 160, 0.25);
}
.filter-sidebar .form-check .form-check-label {
  font-size: 14px;
  color: #495057;
  cursor: pointer;
}
.filter-sidebar .form-check .form-check-label:hover {
  color: #004ca0;
}
.filter-sidebar {
  /* 卡片样式优化 */
}
.filter-sidebar .card {
  border-radius: 8px;
  overflow: hidden;
}
.filter-sidebar .card .card-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem;
}
.filter-sidebar .card .card-header h6 {
  font-size: 16px;
  margin-bottom: 0;
}
.filter-sidebar .card .card-body {
  padding: 1rem;
}
.filter-sidebar {
  /* 清除筛选按钮样式 */
}
.filter-sidebar .clear-filters-btn {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.filter-sidebar .clear-filters-btn:hover {
  background-color: #5a6268;
  border-color: #545b62;
}
.filter-sidebar .clear-filters-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.filter-sidebar {
  /* 响应式样式 */
}
@media (max-width: 767.98px) {
  .filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  .filter-sidebar.show {
    transform: translateX(0);
  }
}

/* 遮罩层样式 */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

/* 筛选切换按钮样式 */
#toggleFilterSidebar {
  background-color: #004ca0;
  border-color: #004ca0;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}
#toggleFilterSidebar:hover {
  background-color: rgb(0, 51.775, 109);
  border-color: rgb(0, 39.6625, 83.5);
}
#toggleFilterSidebar:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 76, 160, 0.5);
}
#toggleFilterSidebar i {
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  #toggleFilterSidebar {
    display: none;
  }
}
