@charset "UTF-8";
:root {
  --header-height: 8.4375rem;
  --page-aside: calc((100% - 1435px) / 2);
  --color-primary: #fe001d;
  --color-text: #2c2c2c;
}

@media screen and (max-width: 1920px) {
  :root {
    --page-aside: 15.1563rem;
  }
}
@media screen and (max-width: 992px) {
  :root {
    --header-height: 100px;
  }
}
.container {
  max-width: 1435px !important;
  width: calc(100% - 30.3125rem) !important;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 992px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
  }
}

.overflow-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.img100 img {
  display: block;
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-bold {
  font-weight: bold;
}

.text-white {
  color: #fff !important;
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pos-x-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* flex布局 */
.flex {
  display: flex;
}

.flex-center, .product-1 .left .main-title, .index-product .list .item i, .index-banner .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 0;
}

/* 定位 */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.hidden {
  display: none !important;
}

.mt-1 {
  margin-top: 2rem;
}

@media screen and (max-width: 992px) {
  .lg-hidden {
    display: none !important;
  }
  .lg-block {
    display: block !important;
  }
  .lg-flex {
    display: flex !important;
  }
  .lg-flex-wrap {
    flex-wrap: wrap !important;
  }
  .lg-flex-column {
    flex-direction: column !important;
  }
  .lg-justify-center {
    justify-content: center !important;
  }
  .lg-justify-end {
    justify-content: flex-end !important;
  }
  .lg-justify-between {
    justify-content: space-between !important;
  }
  .lg-justify-around {
    justify-content: space-around !important;
  }
  .lg-items-start {
    align-items: flex-start !important;
  }
  .lg-items-center {
    align-items: center !important;
  }
  .lg-items-end {
    align-items: flex-end !important;
  }
  .lg-w-full {
    width: 100% !important;
  }
  .lg-h-full {
    height: 100% !important;
  }
  .lg-mt-1 {
    margin-top: 2rem;
  }
  .lg-mt-2 {
    margin-top: 2.5rem !important;
  }
}
@media screen and (max-width: 768px) {
  .xs-flex-wrap {
    flex-wrap: wrap !important;
  }
  .xs-block {
    display: block !important;
  }
  .xs-hidden {
    display: none !important;
  }
  .xs-flex-col {
    flex-direction: column !important;
  }
  .xs-w-full {
    width: 100%;
  }
}
pre {
  white-space: normal;
}

/**
 * grid布局
 * @param {number} $cols   列数
 * @param {number} $colGip 列间隔
 * @param {number} $rowGip 行间隔
 * @param {list}   $mobile 断点配置列表(默认空)
    * @param {number} $breakpoint 断点值
    * @param {number} $cols       列数
    * @param {number} $colGap     行列间隔
*/
/** 
* font-size
* @param $min-size 最小字号
* @param $normal-size 常规字号
* @param $max-size 最大字号
 */
/**
 * 默认过渡动画
 * @param {string} $property 过渡属性 (默认 all)
 * @param {time}   $time     过渡时间 (默认 .5s)
 * @param {string} $ease     缓动函数 (默认 ease-in-out)
 */
.mediaList {
  --gap-w: 1.875rem;
}
.mediaList li i {
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.mediaList li:hover i {
  color: var(--color-primary);
}
.mediaList li:not(:last-child) {
  margin-right: var(--gap-w);
}

@font-face {
  font-family: AkzidenzGroteskBQ-Bold;
  src: url(../fonts/AKZIDENZGROTESK-BOLD.OTF);
}
@font-face {
  font-family: AkzidenzGroteskBQ-Regular;
  src: url(../fonts/AKZIDENZGROTESK-REGULAR.OTF);
}
@font-face {
  font-family: AMontserrat-Bold;
  src: url(../fonts/MONTSERRAT-BOLD.OTF);
}
@font-face {
  font-family: Montserrat-Regular;
  src: url(../fonts/MONTSERRAT-REGULAR.TTF);
}
.font-bold, .sustainable-solutions .section-title, .sustainable-matters .section-title, .sustainable-pcr .right .section-title, .banner .text h1, .product-2 .right .title, .product-1 .right .title-box .main-title span, .product-1 .left .main-title, .about-3-box .title, .about-3 .tip, .about .row .text-box ul li .li-title, .index-banner .swiper .swiper-slide .text span, .index-banner .swiper .swiper-slide .text h2, .banner h1, .page-title, .greet span {
  font-family: AkzidenzGroteskBQ-Bold;
}

.font-regular, .product-2 .right .title2, .about-2 .row .text-box .desc *, .about-2 .row .text-box .desc, .m-nav .mNavList-box .m-navList .one-title a, header .search-box input, header .nav li.one-title a {
  font-family: AkzidenzGroteskBQ-Regular;
}

.font-bold-m, .index-service .adv .text > div, .index-service .list .item .text .title, .index-product .list .item .title, .index-about .text p, footer .footer-content .title, footer .footer-content .footer-nav li a:first-child {
  font-family: AMontserrat-Bold;
}

.font-regular-m, .index-service .adv .text p, .index-service .list .item .text .li-desc, footer .footer-content .wayList li p, footer .footer-content .footer-nav li a, footer .footer-message .btn {
  font-family: Montserrat-Regular;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 9999;
}
header .header-sec1 {
  background: #151515;
  height: 2.5rem;
}
header .header-sec1 .left p {
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
}
header .header-sec1 .left ul {
  margin-left: 1rem;
}
header .header-sec1 .left ul li i {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: var(--color-primary);
  margin-right: 0.625rem;
}
header .header-sec1 .left ul li p {
  opacity: 1;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
}
header .header-sec1 .left ul li:not(:last-child) {
  margin-right: 0.625rem;
}
@media screen and (max-width: 992px) {
  header .header-sec1 {
    height: 40px;
  }
}
header .header-sec2 {
  background: #000;
  height: 5.9375rem;
  position: relative;
}
@media screen and (max-width: 992px) {
  header .header-sec2 {
    height: 60px;
  }
}
header .logo {
  height: 80%;
}
header .logo img {
  display: block;
  height: 100%;
  width: auto;
}
@media screen and (max-width: 992px) {
  header .logo {
    height: 70%;
  }
}
header .header-btn {
  padding: 1.0625rem 1.25rem;
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
  background: var(--color-primary);
  border-radius: 0.625rem;
  color: #fff;
}
header .header-search {
  display: none;
  margin-right: 2.1875rem;
  position: relative;
}
header .header-search i {
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
  color: var(--color-primary);
  cursor: pointer;
}
header .menu {
  font-size: 20px;
  color: #fff;
}
header .nav li.one-title {
  position: relative;
  height: 5.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
header .nav li.one-title a {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: #fff;
  opacity: 0.7;
  transition: all 0.5s ease-in-out;
}
header .nav li.one-title .subList {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -10%);
  background: #fff;
  padding: 0.625rem 1.5625rem;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  pointer-events: none;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header .nav li.one-title .subList a {
  display: block;
  padding: 0.625rem 0;
  color: var(--color-black75);
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  white-space: nowrap;
  transition: all 0.5s ease-in-out;
}
header .nav li.one-title .subList a:hover {
  color: var(--color-primary);
}
header .nav li.one-title:hover a {
  opacity: 1;
}
header .nav li.one-title:hover .subList {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: all;
}
header .nav li.one-title.active a {
  opacity: 1;
}
header .nav li.one-title:not(:last-child) {
  margin-right: 3.125rem;
}
header .search-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
header .search-box input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: clamp(14px, 1.5rem, 1.25vw);
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
header .search-box i {
  color: #fff;
  cursor: pointer;
  font-size: clamp(16px, 1.5rem, 1.25vw);
}
header .search-box.active {
  opacity: 1;
  z-index: 20;
}

footer {
  background: #f7f7f7;
  padding-top: 6.25rem;
}
footer .footer-message {
  padding-bottom: 4.375rem;
  border-bottom: 1px solid rgba(4, 4, 4, 0.12);
}
footer .footer-message input {
  width: 40.3125rem;
  height: 5.3125rem;
  background: #fff;
  padding: 0 2.25rem;
  color: #000;
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  margin-right: 1.25rem;
  transition: all 0.5s ease-in-out;
}
footer .footer-message input::-moz-placeholder {
  color: #000;
  opacity: 0.43;
}
footer .footer-message input::placeholder {
  color: #000;
  opacity: 0.43;
}
footer .footer-message input:focus {
  box-shadow: 0 0 8px 3px rgba(254, 0, 29, 0.3);
}
footer .footer-message .btn {
  font-size: clamp(12px, 1.125rem, 0.9375vw);
  padding: 2rem 1.5625rem;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
}
footer .footer-message .btn i {
  font-size: 14px;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 768px) {
  footer .footer-message input {
    width: 100%;
  }
  footer .footer-message .btn {
    margin-top: 15px;
    justify-content: center;
  }
}
footer .footer-content {
  margin-top: 4.375rem;
}
footer .footer-content .left {
  width: 21.625rem;
}
footer .footer-content .footer-nav {
  width: 50%;
}
footer .footer-content .footer-nav li a {
  display: block;
  color: #000;
  opacity: 0.85;
  font-size: clamp(12px, 1rem, 0.8333333333vw);
  transition: all 0.5s ease-in-out;
}
footer .footer-content .footer-nav li a:first-child {
  margin-bottom: 1.875rem;
  opacity: 1;
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
}
footer .footer-content .footer-nav li a:not(:first-child):not(:last-child) {
  margin-bottom: 0.75rem;
}
footer .footer-content .footer-nav li a:not(:first-child):hover {
  color: var(--color-primary);
}
footer .footer-content .footer-nav li:not(:last-child) {
  margin-right: 3.125rem;
}
footer .footer-content .title {
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
}
footer .footer-content .desc {
  margin-top: 1.5625rem;
  font-size: clamp(12px, 1.125rem, 0.9375vw);
  color: #000;
  opacity: 0.72;
}
footer .footer-content .wayList {
  margin-top: 2.8125rem;
}
footer .footer-content .wayList li i {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: var(--color-primary);
  margin-right: 0.625rem;
}
footer .footer-content .wayList li p {
  opacity: 1;
  color: var(--color-primary);
  font-size: clamp(14px, 1.125rem, 0.9375vw);
}
footer .footer-content .wayList li:not(:last-child) {
  margin-bottom: 1.25rem;
}
footer .footer-content .mediaList {
  margin-top: 2.5rem;
}
footer .footer-content .mediaList li a i {
  color: var(--color-primary);
}
footer .footer-bq {
  padding: 1.875rem 0;
}
footer .footer-bq p,
footer .footer-bq a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.4;
}

* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

main {
  margin-top: var(--header-height);
}

.m-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all 0.5s ease;
  display: flex;
}
.m-nav .mNavList-box {
  width: 280px;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
  transform: translateX(-280px);
  transition: transform 0.5s ease-in-out;
  flex-shrink: 0;
}
.m-nav .mNavList-box .m-nav-btn {
  height: 60px;
  border-bottom: 1px solid #eee;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 20px;
}
.m-nav .mNavList-box .m-nav-btn i {
  font-size: 20px;
}
.m-nav .mNavList-box .m-navList {
  --li-height: 40px;
}
.m-nav .mNavList-box .m-navList .one-title {
  border-bottom: 1px solid #eee;
}
.m-nav .mNavList-box .m-navList .one-title a {
  height: var(--li-height);
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-size: 14px;
}
.m-nav .mNavList-box .m-navList .one-title.active h2 a,
.m-nav .mNavList-box .m-navList .one-title.active h2 i {
  color: var(--text-color);
}
.m-nav .mNavList-box .m-navList .one-title.active .subList {
  display: block;
}
.m-nav .mNavList-box .m-navList .subList {
  display: none;
}
.m-nav .mNavList-box .m-navList .subList .two-title {
  border-bottom: 1px solid #eee;
}
.m-nav .mNavList-box .m-navList .subList .two-title h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--li-height);
  padding: 0 20px 0 30px;
  font-weight: normal;
}
.m-nav .mNavList-box .m-navList .subList .two-title h3 a {
  color: #000;
}
.m-nav .mNavList-box .m-navList .subList .two-title h3 i {
  margin-right: 5px;
}
.m-nav .mNavList-box .m-navList .subList .two-title:first-child {
  border-top: 1px solid #eee;
}
.m-nav .mNavList-box .m-navList .subList2 {
  display: none;
}
.m-nav .mNavList-box .m-navList .subList2 h4 {
  border-bottom: 1px solid #eee;
  height: var(--li-height);
  padding: 0 20px 0 40px;
}
.m-nav .mNavList-box .m-navList .subList2 h4 a {
  line-height: var(--li-height);
  display: block;
  width: 100%;
  color: #000;
}
.m-nav .mNavList-box .m-navList .subList2 h4:first-child {
  border-top: 1px solid #eee;
}
.m-nav .mNavList-box .m-navList i {
  transition: transform 0.5s ease-in-out;
}
.m-nav .mNavList-box .m-navList i.aniRote {
  transform: rotate(180deg);
}
.m-nav .m-bg {
  flex: 1;
  height: 100%;
}
.m-nav.active {
  opacity: 1;
  z-index: 100000;
  pointer-events: auto;
}
.m-nav.active .mNavList-box {
  transform: translateX(0);
}

.greet span {
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  border-bottom: 2px solid var(--color-text);
  color: var(--color-text);
  opacity: 0.6;
}

.page-title {
  font-size: clamp(35px, 4.375rem, 3.6458333333vw);
  color: var(--color-text);
}
.page-title .small {
  font-size: clamp(35px, 3.125rem, 2.6041666667vw);
}

.banner {
  width: 100%;
  height: 36.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner h1 {
  font-size: clamp(30px, 3.75rem, 3.125vw);
  color: #fff;
}
.banner .text {
  width: 100%;
}
.banner .breadCrumbs {
  display: flex;
  margin-top: 0.9375rem;
}
.banner .breadCrumbs a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(12px, 1rem, 0.8333333333vw);
}
.banner .breadCrumbs a i {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  margin-right: 0.3125rem;
}
@media screen and (max-width: 992px) {
  .banner {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    height: 220px;
  }
}

.index-banner .swiper {
  height: 51.5625rem;
}
.index-banner .swiper .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-banner .swiper .swiper-slide .text {
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(-20%);
}
.index-banner .swiper .swiper-slide .text h2 {
  font-size: clamp(30px, 4.8125rem, 4.0104166667vw);
  color: #fff;
}
.index-banner .swiper .swiper-slide .text h2 span {
  color: var(--color-primary);
}
.index-banner .swiper .swiper-slide .text span {
  font-size: clamp(35px, 6.4375rem, 5.3645833333vw);
}
@media screen and (max-width: 992px) {
  .index-banner .swiper {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .index-banner .swiper {
    height: 300px;
  }
}
.index-banner .swiper-pagination {
  bottom: 5.625rem;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 55px;
  height: 6px;
  background: #f6f6f6;
  opacity: 0.77;
  border-radius: 3px;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}
@media screen and (max-width: 992px) {
  .index-banner .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
  }
}
.index-about {
  padding: 8.4375rem 0;
}
.index-about .left {
  width: 43%;
}
.index-about .right {
  width: 41%;
}
.index-about .right img {
  aspect-ratio: 590/740;
  display: block;
  width: 100%;
  border-radius: 20px;
}
.index-about .page-title {
  margin-top: 1.25rem;
}
.index-about .desc {
  margin-top: 2.1875rem;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  color: #000;
  opacity: 0.66;
  line-height: 1.8;
}
.index-about ul {
  margin-top: 4.0625rem;
}
.index-about ul li:not(:last-child) {
  margin-bottom: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.index-about ul i {
  font-size: clamp(30px, 4.0625rem, 3.3854166667vw);
  color: var(--color-primary);
  margin-right: 1.875rem;
}
.index-about ul .title {
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
  font-weight: bold;
}
.index-about ul .li-desc {
  margin-top: 1.25rem;
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
  color: #000;
  opacity: 0.62;
}
.index-about .adv {
  margin-top: 4.375rem;
}
.index-about .text p {
  font-size: clamp(12px, 1.0625rem, 0.8854166667vw);
  color: var(--color-primary);
}
.index-about .text > div {
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
  color: #000;
}
.index-about .btn {
  padding: 1.25rem 1.375rem;
  font-size: clamp(16px, 1.5rem, 1.25vw);
  color: #fff;
  background: var(--color-primary);
  border-radius: 10px;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .index-about {
    padding: 5rem 0;
  }
  .index-about .right {
    margin-top: 2.5rem;
  }
}
.index-product {
  background: #f7f7f7;
  padding: 8.125rem 0;
}
.index-product .page-title {
  margin-top: 0.625rem;
}
.index-product .desc {
  font-size: clamp(16px, 1.25rem, 1.0416666667vw);
  color: #000;
  opacity: 0.74;
  margin: 2.5rem 0 4.375rem;
}
.index-product .list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.0625rem 10px;
}
.index-product .list > * {
  width: calc((100% - 40px) / 5);
}
.index-product .list > *:nth-child(-n+4) {
  width: calc((100% - 30px) / 4);
}
.index-product .list .item {
  position: relative;
  background: #fff;
  height: 30.625rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-product .list .item:nth-child(-n+4) {
  height: 38.125rem;
}
.index-product .list .item:nth-child(-n+4) .title {
  padding: 0 0.9375rem;
}
.index-product .list .item .title {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  padding: 0 1.875rem;
  color: #fffcf1;
  font-size: clamp(14px, 1.25rem, 1.0416666667vw);
}
.index-product .list .item i {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #000;
  border: 2px solid #fff;
  color: #fff;
  font-size: clamp(12px, 1rem, 0.8333333333vw);
  transition: all 0.5s ease-in-out;
}
.index-product .list .item:hover i {
  background: var(--color-primary);
}
@media screen and (max-width: 992px) {
  .index-product .list {
    gap: 3.125rem 10px;
  }
  .index-product .list > * {
    width: calc((100% - 20px) / 3) !important;
    height: 300px !important;
  }
}
@media screen and (max-width: 768px) {
  .index-product .list > * {
    width: calc((100% - 10px) / 2) !important;
    height: 300px !important;
  }
}
.index-service {
  padding: 9.375rem 0 5.625rem;
}
.index-service .page-title {
  margin-top: 0.625rem;
}
.index-service .desc {
  font-size: clamp(16px, 1.25rem, 1.0416666667vw);
  color: #000;
  opacity: 0.74;
  margin: 2.5rem 0 4.375rem;
}
.index-service .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 4.375rem 3.4375rem;
}
@media (max-width: 992px) {
  .index-service .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}
@media (max-width: 768px) {
  .index-service .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
}
.index-service .list .item {
  position: relative;
}
.index-service .list .item .img-box {
  padding-top: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-service .list .item .text {
  background: #fff;
  width: 89%;
  position: absolute;
  bottom: -2.5rem;
  padding: 2.5rem 0.625rem 2.5rem 1.25rem;
  transition: all 0.5s ease-in-out;
}
.index-service .list .item .text .title {
  font-size: clamp(16px, 1.75rem, 1.4583333333vw);
  color: #000;
}
.index-service .list .item .text .li-desc {
  margin-top: 0.625rem;
  font-size: clamp(12p, 1.125rem, 0.9375vw);
  color: #000;
  opacity: 0.82;
}
.index-service .list .item:hover .text {
  background: var(--color-primary);
}
.index-service .list .item:hover .text .title,
.index-service .list .item:hover .text .li-desc {
  color: #fff;
}
.index-service .list .item:hover .text .li-desc {
  -webkit-line-clamp: 50;
}
@keyframes vibration {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(3deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(-3deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.index-service .list .item .btn {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.25rem 0.75rem;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  animation: vibration 0.3s linear infinite;
  box-shadow: 0 5px 15px rgba(254, 0, 29, 0.6);
}
.index-service .list .item .btn:hover {
  animation: none;
}
.index-service .adv {
  margin-top: 5.9375rem;
}
.index-service .adv .text > div {
  font-size: clamp(14px, 1.5rem, 1.25vw);
}
.index-service .adv .text p {
  font-size: clamp(12px, 1.25rem, 1.0416666667vw);
  margin-top: 0.9375rem;
}
.index-service .adv .btn {
  font-size: clamp(12px, 1rem, 0.8333333333vw);
  padding: 1.5625rem 0.75rem;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .index-service .adv .btn {
    margin-top: 20px;
  }
}

.about .row .img-box {
  width: 50%;
}
.about .row .img-box img {
  display: block;
  width: 100%;
  border-top-right-radius: 18.75rem;
}
.about .row .text-box {
  width: 50%;
  padding: 0 2.5rem 0 4.375rem;
  display: flex;
  align-items: center;
}
.about .row .text-box ul li:not(:last-child) {
  margin-bottom: 3.75rem;
}
.about .row .text-box ul li .li-title {
  font-size: clamp(16px, 1.625rem, 1.3541666667vw);
  color: rgba(0, 0, 0, 0.79);
  margin: 1.875rem 0;
  transition: all 0.5s ease-in-out;
}
.about .row .text-box ul li .li-desc {
  font-size: clamp(12px, 1rem, 0.8333333333vw);
  color: rgba(0, 0, 0, 0.83);
  transition: all 0.5s ease-in-out;
}
.about .row .text-box ul li i {
  font-size: clamp(24px, 2.8125rem, 2.34375vw);
  color: rgba(8, 8, 8, 0.74);
  transition: all 0.5s ease-in-out;
}
.about .row .text-box ul li:hover .li-title,
.about .row .text-box ul li:hover .li-desc,
.about .row .text-box ul li:hover i {
  color: var(--color-primary);
}
@media screen and (max-width: 992px) {
  .about .row .text-box {
    padding: 2.5rem 0 !important;
  }
  .about .row .text-box ul li .li-title {
    margin: 1.25rem 0;
  }
}
.about-1 {
  background: #f5f5f5;
  padding-top: 6.875rem;
}
.about-1 .page-title {
  margin-top: 1.5rem;
}
.about-1 .desc {
  margin-top: 2.5rem;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  color: #000;
  opacity: 0.75;
}
.about-1 .row {
  margin-top: 4.375rem;
}
.about-2 .row {
  flex-direction: row-reverse;
}
.about-2 .row .img-box img {
  border-top-right-radius: 0;
  border-bottom-left-radius: 200px;
}
.about-2 .row .text-box {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4.6875rem;
}
.about-2 .row .text-box .page-title {
  margin: 1.25rem 0 2.5rem;
}
.about-2 .row .text-box .desc {
  line-height: 1.25;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  color: #000;
  opacity: 0.5;
}
.about-2 .row .text-box .desc * {
  line-height: 1.25;
}
.about-3 {
  margin-top: 8.125rem;
}
.about-3 .page-title {
  margin-top: 1.25rem;
}
.about-3 .tip {
  font-size: clamp(16px, 1.375rem, 1.1458333333vw);
  color: #000;
  margin: 1.25rem 0;
}
.about-3 .desc {
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  color: #000;
  opacity: 0.85;
}
.about-3-box {
  min-height: 38rem;
  margin-top: 5rem;
}
.about-3-box i {
  font-size: clamp(24px, 2.8125rem, 2.34375vw);
  color: #fff;
}
.about-3-box .title {
  font-size: clamp(20px, 2.1875rem, 1.8229166667vw);
  margin: 2.1875rem 0 4.375rem;
}
.about-3-box .text {
  width: 100%;
}
.about-3-box ul {
  width: 100%;
}
.about-3-box ul li {
  font-size: clamp(12px, 1rem, 0.8333333333vw);
  width: 50%;
  display: flex;
  align-items: center;
}
.about-3-box ul li::before {
  content: "";
  display: block;
  width: 7px;
  height: 8px;
  background: var(--color-primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-right: 5px;
  flex-shrink: 0;
}
.about-3-box .left {
  width: 50%;
  padding-left: var(--page-aside);
  color: #fff;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-3-box .left ul {
  display: flex;
  flex-wrap: wrap;
}
.about-3-box .left ul li:not(:nth-last-child(-n+2)) {
  margin-bottom: 1.5625rem;
}
.about-3-box .right {
  padding-right: var(--page-aside);
  color: #fff;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
}
.about-3-box .right .text {
  padding-left: 11.25rem;
}
.about-3-box .right ul li {
  white-space: nowrap;
}
.about-3-box .right ul li::before {
  background: #fff;
}
.about-3-box .right ul li:not(:last-child) {
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 992px) {
  .about-3-box .left,
  .about-3-box .right {
    padding: 2.5rem 15px !important;
  }
  .about-3-box .right .text {
    padding-left: 0;
  }
}

.product-1 {
  padding: 7.5rem 0;
  background: rgba(2, 15, 44, 0.08);
}
.product-1 .container {
  gap: 3.125rem;
}
.product-1 .left {
  width: 20rem;
}
.product-1 .left .main-title {
  height: 5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 1.25rem 1.25rem 0px 0px;
  font-size: clamp(20px, 2.1875rem, 1.8229166667vw);
}
.product-1 .productNavList {
  padding: 0 1.5625rem;
  background: #fff;
}
.product-1 .productNavList .oneNav-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(31, 47, 83, 0.15);
  cursor: pointer;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
}
.product-1 .productNavList .oneNav-title p {
  flex: 1;
}
.product-1 .productNavList .oneNav-title i {
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: all 0.3s;
}
.product-1 .productNavList .oneNav-title i.active {
  transform: rotate(180deg);
}
.product-1 .productNavList .subNav {
  padding-left: 0.9375rem;
  display: none;
}
.product-1 .productNavList .subNav .twoNav-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(31, 47, 83, 0.15);
  font-size: clamp(12px, 0.875rem, 0.7291666667vw);
  cursor: pointer;
}
.product-1 .productNavList .subNav .twoNav-title p {
  flex: 1;
}
.product-1 .productNavList .subNav .twoNav-title i {
  flex-shrink: 0;
  font-size: 1.125rem;
  transition: all 0.3s;
  transition: all 0.5s ease-in-out;
}
.product-1 .productNavList .subNav .twoNav-title i.active {
  transform: rotate(180deg);
}
.product-1 .productNavList .subNav2 {
  padding: 1.25rem 0;
  display: none;
}
.product-1 .productNavList .subNav2 .item {
  display: flex;
  align-items: center;
  color: #222222;
  font-size: clamp(12px, 1rem, 0.8333333333vw);
}
.product-1 .productNavList .subNav2 .item .cir {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 0.9375rem;
  flex-shrink: 0;
}
.product-1 .productNavList .subNav2 .item:not(:last-child) {
  margin-bottom: 1.875rem;
}
.product-1 .productNavList .subNav2 .item:hover {
  color: var(--color-primary);
}
.product-1 .productNavList .subNav2 .item.active {
  color: var(--color-primary);
  font-weight: bold;
}
.product-1 .productNavList .oneNav.active .oneNav-title > i {
  transform: rotate(180deg);
}
.product-1 .productNavList .oneNav.active > .subNav,
.product-1 .productNavList .oneNav.active > .subNav2 {
  display: block;
}
.product-1 .productNavList .oneNav.active .twoNav.active .twoNav-title i {
  transform: rotate(180deg);
}
.product-1 .productNavList .oneNav.active .twoNav.active .subNav2 {
  display: block;
}
.product-1 .right {
  flex: 1;
}
.product-1 .right .title-box .main-title {
  padding-left: 1.25rem;
  position: relative;
}
.product-1 .right .title-box .main-title span {
  line-height: 1;
  font-size: clamp(18px, 1.875rem, 1.5625vw);
}
.product-1 .right .title-box .main-title span:first-child {
  flex-shrink: 0;
}
.product-1 .right .title-box .main-title::after {
  content: "";
  width: 0.375rem;
  height: 1.875rem;
  background: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
}
.product-1 .right .productSearch {
  position: relative;
}
.product-1 .right .productSearch input {
  width: 18.75rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  border: 0;
  outline: 0;
  padding: 0 6.875rem 0 2.3125rem;
}
.product-1 .right .productSearch input::-moz-placeholder {
  color: #777777;
}
.product-1 .right .productSearch input::placeholder {
  color: #777777;
}
.product-1 .right .productSearch .iconfont {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #fff;
  width: 6.25rem;
  height: 100%;
  border-radius: 1.75rem;
  background: var(--color-primary);
  text-align: center;
  line-height: 3.5rem;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .product-1 .right .productSearch {
    margin-top: 20px;
  }
}
.product-1 .right .productList {
  margin-top: 2.8125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 2.25rem 2.25rem;
}
@media (max-width: 992px) {
  .product-1 .right .productList {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 640px) {
  .product-1 .right .productList {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.product-1 .right .productList li {
  background: #fff;
  width: 100%;
}
.product-1 .right .productList li a {
  display: block;
  width: 100%;
}
.product-1 .right .productList li .img-box {
  height: 14.375rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.product-1 .right .productList li .img-box img {
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 80%;
}
.product-1 .right .productList li .title-box {
  position: relative;
  color: #333333;
  text-align: center;
  height: 4.375rem;
  line-height: 4.375rem;
  padding: 0 2.0625rem;
}
.product-1 .right .productList li .title-box span {
  position: relative;
  z-index: 2;
}
.product-1 .right .productList li .title-box::after {
  content: "";
  width: 18.75rem;
  height: 1px;
  background: rgba(254, 0, 29, 0.1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.product-1 .right .productList li .title-box:before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-primary);
  transition: width 0.3s ease-in-out;
  z-index: 1;
}
.product-1 .right .productList li:hover .title-box {
  color: #fff;
}
.product-1 .right .productList li:hover .title-box:before {
  width: 100%;
}
.product-2 {
  padding: 7.5rem 0;
  background: rgba(2, 15, 44, 0.08);
}
.product-2 .left {
  width: 41%;
}
.product-2 .left .left-box {
  width: 100%;
  height: 26.375rem;
  background: #fff;
  border-radius: 1.25rem;
  position: relative;
}
.product-2 .left .left-box .xqSwiper1 {
  height: 100%;
}
.product-2 .left .left-box .swiper-slide {
  display: flex;
}
.product-2 .left .left-box img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
}
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-next,
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-prev {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  border: 1px solid #9f9f9f;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-next .iconfont,
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-prev .iconfont {
  color: #9f9f9f;
  font-size: 1.5rem;
}
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-next:hover,
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-prev:hover {
  background: var(--color-primary);
}
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-next:hover .iconfont,
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-prev:hover .iconfont {
  color: #fff !important;
}
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-next::after,
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-prev::after {
  content: none;
}
.product-2 .left .left-box .swiperBtnStyleCir .swiper-button-prev {
  margin-right: 2.1875rem;
}
.product-2 .left .xqSwiper1-2 {
  margin-top: 1.25rem;
  height: 8.4375rem;
}
.product-2 .left .xqSwiper1-2 .swiper-slide {
  background: #fff;
  display: flex;
  cursor: pointer;
}
.product-2 .left .xqSwiper1-2 .swiper-slide img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
}
.product-2 .left .xqSwiper1-2 .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--color-primary);
}
.product-2 .right {
  width: 45%;
}
.product-2 .right .title {
  font-size: clamp(20px, 2.5rem, 2.0833333333vw);
  color: #000;
}
.product-2 .right .title2 {
  font-size: clamp(16px, 1.875rem, 1.5625vw);
  margin: 2.375rem 0 1.5625rem;
}
.product-2 .right .content {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: #000;
  line-height: 1.4;
}
.product-2 .right .content * {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: #000;
  line-height: 1.4;
}
.product-2 .right .telBtn {
  border: 1px solid var(--color-primary);
  width: 12.5rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  border-radius: 1.875rem;
  font-size: 1.125rem;
  margin-top: 1.875rem;
  transition: all 0.5s ease-in-out;
}
.product-2 .right .telBtn i {
  font-size: 1.125rem;
  margin-right: 0.625rem;
}
.product-2 .right .telBtn:hover {
  background: var(--color-primary);
  color: #fff;
}
@media screen and (max-width: 992px) {
  .product-2 .left {
    order: 2;
    margin-top: 2.5rem;
  }
}

.page {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  --itemBorder: 40px;
}
.page .page-item .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--itemBorder);
  height: var(--itemBorder);
  font-size: 16px;
  color: #000;
  transition: all 0.5s ease-in-out;
  padding: 0;
  background: #fff;
  border-radius: 5px;
}
.page .page-item.active .page-link {
  background: var(--color-primary);
  color: #fff;
}
.page .page-item:hover .page-link {
  background: var(--color-primary);
  color: #fff;
}
.page .page-item:not(:last-child) {
  margin-right: 20px;
}

.sustainable-page .banner .text {
  width: 100%;
  text-align: left;
}

.banner .text {
  width: 100%;
  text-align: left;
}
.banner .text h1 {
  font-size: clamp(30px, 3.75rem, 3.125vw);
  color: #fff;
  margin-bottom: 1rem;
}
.banner .text .breadCrumbs a {
  color: rgba(255, 255, 255, 0.8);
}
.banner .text .breadCrumbs a:last-child {
  color: #fff;
}

.sustainable-intro {
  padding: 6.25rem 0;
  background: #f7f7f7;
}
.sustainable-intro .intro-box {
  max-width: 60rem;
  margin: 0 auto;
}
.sustainable-intro .greet {
  margin-bottom: 1.5rem;
}
.sustainable-intro .page-title {
  margin-bottom: 2rem;
  font-size: clamp(24px, 2.5rem, 2.0833333333vw);
}
.sustainable-intro .desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.8;
}
.sustainable-intro .desc strong {
  color: var(--color-primary);
  font-weight: bold;
}

.sustainable-pcr {
  padding: 6.25rem 0;
}
.sustainable-pcr .left {
  width: 45%;
}
.sustainable-pcr .left .img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.sustainable-pcr .left .img-box img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}
.sustainable-pcr .left .img-box:hover img {
  transform: scale(1.05);
}
.sustainable-pcr .right {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sustainable-pcr .right .section-title {
  font-size: clamp(24px, 2.5rem, 2.0833333333vw);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.sustainable-pcr .right .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-text);
}
.sustainable-pcr .right .content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.sustainable-pcr .right .content p {
  margin-bottom: 1rem;
}
.sustainable-pcr .right .check-list {
  margin-top: 1rem;
}
.sustainable-pcr .right .check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
}
.sustainable-pcr .right .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}
@media (max-width: 992px) {
  .sustainable-pcr .left,
  .sustainable-pcr .right {
    width: 100%;
  }
  .sustainable-pcr .right {
    margin-top: 3rem;
  }
}

.sustainable-matters {
  padding: 6.25rem 0;
  background: #151515;
  color: #fff;
  background-blend-mode: overlay;
  background-size: cover;
  background-attachment: fixed;
}
.sustainable-matters .content-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 4rem;
  border-radius: 1rem;
  backdrop-filter: blur(5px);
}
.sustainable-matters .section-title {
  font-size: clamp(24px, 2.5rem, 2.0833333333vw);
  color: #fff;
  margin-bottom: 2rem;
}
.sustainable-matters .desc {
  max-width: 50rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
}
.sustainable-matters .desc p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.sustainable-solutions {
  padding: 6.25rem 0;
}
.sustainable-solutions .section-title {
  font-size: clamp(24px, 2.5rem, 2.0833333333vw);
  margin-bottom: 1.5rem;
}
.sustainable-solutions .desc {
  max-width: 40rem;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  opacity: 0.7;
}
.sustainable-solutions .solution-list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.sustainable-solutions .solution-list .item {
  flex: 1;
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.sustainable-solutions .solution-list .item:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(254, 0, 29, 0.1);
}
.sustainable-solutions .solution-list .item .icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sustainable-solutions .solution-list .item .icon i {
  font-size: 3.5rem;
}
.sustainable-solutions .solution-list .item .title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.sustainable-solutions .solution-list .item .text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}
@media (max-width: 768px) {
  .sustainable-solutions .solution-list {
    flex-direction: column;
  }
}
.sustainable-solutions .bottom-text {
  margin-top: 4rem;
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.sustainable-footer {
  padding: 6.25rem 0;
  background: #f7f7f7;
}
.sustainable-footer .item {
  width: 48%;
  padding: 3rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.sustainable-footer .item .section-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}
.sustainable-footer .item .content {
  line-height: 1.8;
  color: #333;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .sustainable-footer .item {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.product-detail-hero {
  padding: 5rem 0;
  background: #f2f2f2;
}
.product-detail-hero .left {
  width: 41%;
  position: relative;
  z-index: 20;
}
.product-detail-hero .left .left-box {
  width: 100%;
  height: 26.375rem;
  background: #fff;
  border-radius: 1.25rem;
  position: relative;
}
.product-detail-hero .left .left-box .xqSwiper1 {
  height: 100%;
}
.product-detail-hero .left .left-box .swiper-slide {
  display: flex;
}
.product-detail-hero .left .left-box .swiper-slide img {
  display: block;
  margin: auto;
}
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-next,
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-prev {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  border: 1px solid #9f9f9f;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-next .iconfont,
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-prev .iconfont {
  color: #9f9f9f;
  font-size: 1.5rem;
}
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-next:hover,
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-prev:hover {
  background: var(--color-primary);
}
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-next:hover .iconfont,
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-prev:hover .iconfont {
  color: #fff !important;
}
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-next::after,
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-prev::after {
  content: none;
}
.product-detail-hero .left .left-box .swiperBtnStyleCir .swiper-button-prev {
  margin-right: 2.1875rem;
}
.product-detail-hero .left .xqSwiper1-2 {
  margin-top: 1.25rem;
  height: 8.4375rem;
}
.product-detail-hero .left .xqSwiper1-2 .swiper-slide {
  background: #fff;
  display: flex;
  cursor: pointer;
}
.product-detail-hero .left .xqSwiper1-2 .swiper-slide img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
}
.product-detail-hero .left .xqSwiper1-2 .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--color-primary);
}
.product-detail-hero .text-box {
  width: 53%;
  padding-right: 0;
  margin: 0;
}
.product-detail-hero .text-box .greet {
  margin-bottom: 0.5rem;
  justify-content: center;
}
.product-detail-hero .text-box .page-title {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  line-height: 1.1;
  font-size: clamp(24px, 2.1875rem, 1.8229166667vw);
  text-align: center;
}
.product-detail-hero .text-box .product-meta {
  display: none;
}
.product-detail-hero .text-box .content-wrapper {
  margin-bottom: 3rem;
}
.product-detail-hero .text-box .content-wrapper .section-subtitle {
  font-size: clamp(16px, 1.125rem, 0.9375vw);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.product-detail-hero .text-box .content-wrapper .desc {
  font-size: clamp(14px, 1.05rem, 0.875vw);
  color: var(--color-text);
  opacity: 0.85;
  line-height: 1.8;
}
.product-detail-hero .text-box .content-wrapper .desc p {
  margin-bottom: 1rem;
}
.product-detail-hero .text-box .features-list {
  margin-bottom: 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}
.product-detail-hero .text-box .features-list li {
  margin-bottom: 0.8rem;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  color: #333;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.product-detail-hero .text-box .features-list li:last-child {
  margin-bottom: 0;
}
.product-detail-hero .text-box .features-list li i {
  color: var(--color-primary);
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.product-detail-hero .text-box .features-list li i {
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .product-detail-hero .text-box .features-list li {
    display: block;
  }
  .product-detail-hero .text-box .features-list li i {
    float: left;
    margin-right: 0.5rem;
  }
  .product-detail-hero .text-box .features-list li strong {
    display: block;
    display: inline;
  }
  .product-detail-hero .text-box .features-list li strong::after {
    content: "\a";
    white-space: pre;
    display: block;
    height: 0;
  }
  .product-detail-hero .text-box .features-list li {
    display: block;
    position: relative;
    padding-left: 1.8rem;
  }
  .product-detail-hero .text-box .features-list li i {
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 0;
  }
  .product-detail-hero .text-box .features-list li strong {
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .product-detail-hero .text-box .features-list {
    padding: 1.5rem;
  }
}
.product-detail-hero .text-box .features-list.cirStyle li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.product-detail-hero .text-box .action-btns {
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
.product-detail-hero .text-box .action-btns .btn {
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  min-width: 160px;
  font-size: clamp(16px, 1.125rem, 0.9375vw);
}
.product-detail-hero .text-box .action-btns .btn.primary-btn {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
  box-shadow: 0 4px 15px rgba(254, 0, 29, 0.3);
}
.product-detail-hero .text-box .action-btns .btn.primary-btn:hover {
  background: rgb(228.5, 0, 26.0885826772);
  transform: translateY(-2px);
}
.product-detail-hero .text-box .action-btns .btn.outline-btn {
  background: transparent;
  color: var(--color-text);
  border: 1px solid #ccc;
}
.product-detail-hero .text-box .action-btns .btn.outline-btn:hover {
  border-color: var(--color-text);
  background: #151515;
  color: #fff;
}
.product-detail-hero .img-box {
  display: none;
}
@media screen and (max-width: 992px) {
  .product-detail-hero .text-box {
    margin-bottom: 3rem;
  }
}

.why-choose-us {
  padding: 6rem 0;
  background-color: #fcfcfc;
}
.why-choose-us .page-title {
  margin-bottom: 4rem;
}
.why-choose-us .wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-choose-us .wcu-grid .wcu-item {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
  height: 100%;
}
.why-choose-us .wcu-grid .wcu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(254, 0, 29, 0.1);
}
.why-choose-us .wcu-grid .wcu-item:hover .icon-box {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
}
.why-choose-us .wcu-grid .wcu-item .icon-box {
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(254, 0, 29, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}
.why-choose-us .wcu-grid .wcu-item .icon-box i {
  font-size: clamp(24px, 2rem, 1.6666666667vw);
}
.why-choose-us .wcu-grid .wcu-item h3 {
  font-size: clamp(18px, 1.25rem, 1.0416666667vw);
  font-weight: bold;
  margin-bottom: 0.8rem;
  color: #333;
}
.why-choose-us .wcu-grid .wcu-item p {
  font-size: clamp(14px, 0.9375rem, 0.78125vw);
  color: #666;
  line-height: 1.6;
}
@media screen and (max-width: 1200px) {
  .why-choose-us .wcu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .why-choose-us .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .why-choose-us .wcu-grid {
    grid-template-columns: 1fr;
  }
}

.product-gallery {
  padding: 5rem 0 8rem;
  background: #f7f7f7;
}
.product-gallery .desc {
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
}
.product-gallery .masonry-grid {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.product-gallery .masonry-grid .grid-item {
  background-color: #fff;
  border-radius: 15px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 1.5rem;
  height: 20rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.product-gallery .masonry-grid .grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.product-gallery .masonry-grid .grid-item:nth-child(odd) {
  height: 25rem;
}
.product-gallery .masonry-grid .grid-item:nth-child(3n) {
  height: 18rem;
}
.product-gallery .masonry-grid .grid-item:nth-child(7n) {
  height: 30rem;
}
@media screen and (max-width: 992px) {
  .product-gallery .masonry-grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 768px) {
  .product-gallery .masonry-grid {
    -moz-column-count: 1;
         column-count: 1;
  }
  .product-gallery .masonry-grid .grid-item {
    height: 18rem !important;
  }
}

.marketing-banner {
  background: var(--color-primary);
  padding: 4rem 0;
  color: #fff;
}
.marketing-banner .text .title {
  font-size: clamp(24px, 2rem, 1.6666666667vw);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.marketing-banner .text p {
  opacity: 0.9;
  font-size: clamp(16px, 1.125rem, 0.9375vw);
}
.marketing-banner .stats {
  gap: 3rem;
}
.marketing-banner .stats .stat-item {
  text-align: center;
}
.marketing-banner .stats .stat-item .num {
  font-size: clamp(30px, 2.5rem, 2.0833333333vw);
  font-weight: bold;
}
.marketing-banner .stats .stat-item .label {
  font-size: clamp(12px, 0.875rem, 0.7291666667vw);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.marketing-banner .btn.white-btn {
  background: #fff;
  color: var(--color-primary);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
  font-size: clamp(16px, 1.125rem, 0.9375vw);
}
.marketing-banner .btn.white-btn:hover {
  background: #151515;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .marketing-banner .text,
  .marketing-banner .stats {
    margin-bottom: 2rem;
    text-align: center;
  }
}

/* Product Categories Page Styles - Added by AI */
.cat-banner {
  padding: 4rem 0;
  background-color: #f7f7f7;
  text-align: center;
  margin-bottom: 2rem;
}
.cat-banner h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.cat-banner p {
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.category-section {
  padding-bottom: 4rem;
}

/* Masonry Layout for proportional images */
.category-grid {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 30px;
       column-gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .category-grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 576px) {
  .category-grid {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.cat-item {
  display: block;
  position: relative;
  margin-bottom: 30px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.cat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.cat-item:hover img {
  transform: scale(1.03);
}
.cat-item:hover .cat-content {
  transform: translateY(0);
}
.cat-item:hover .explore-btn i {
  transform: translateX(3px);
}
.cat-item img {
  width: 100%;
  height: auto;
  /* Keep original aspect ratio */
  display: block;
  transition: transform 0.5s ease;
}
.cat-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  padding: 2rem 1.2rem 1.2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.cat-item .cat-content {
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.cat-item .cat-content h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 576px) {
  .cat-item .cat-content {
    transform: translateY(0);
  }
}
.cat-item .explore-btn {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  color: var(--color-primary);
  background: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  margin-top: 0.4rem;
  width: -moz-fit-content;
  width: fit-content;
}
.cat-item .explore-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* ========================================
   Shipping Page Styles
   ======================================== */
.shipping-page .shipping-banner {
  height: 400px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.shipping-page .shipping-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.shipping-page .shipping-banner .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.shipping-page .shipping-banner .text {
  color: #fff;
}
.shipping-page .shipping-banner .text h1 {
  font-size: clamp(36px, 4rem, 3.3333333333vw);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.shipping-page .shipping-banner .text .breadCrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
}
.shipping-page .shipping-banner .text .breadCrumbs a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}
.shipping-page .shipping-banner .text .breadCrumbs a:hover {
  color: var(--color-primary);
}
.shipping-page .shipping-banner .text .breadCrumbs span {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .shipping-page .shipping-banner {
    height: 300px;
  }
  .shipping-page .shipping-banner .text h1 {
    font-size: clamp(28px, 2.5rem, 2.0833333333vw);
  }
}
.shipping-page .shipping-intro {
  padding: 5rem 0;
}
.shipping-page .shipping-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
}
.shipping-page .shipping-intro .intro-text {
  font-size: clamp(18px, 1.5rem, 1.25vw);
  color: #666;
  line-height: 1.8;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .shipping-page .shipping-intro {
    padding: 3rem 0;
  }
  .shipping-page .shipping-intro .intro-text {
    font-size: clamp(16px, 1.125rem, 0.9375vw);
  }
}
.shipping-page .shipping-features {
  padding: 4rem 0;
  background: #f8f9fa;
}
.shipping-page .shipping-features .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.shipping-page .shipping-features .feature-item {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.shipping-page .shipping-features .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.shipping-page .shipping-features .feature-item:hover .feature-icon {
  background: var(--color-primary);
}
.shipping-page .shipping-features .feature-item:hover .feature-icon i {
  color: #fff;
}
.shipping-page .shipping-features .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(254, 0, 29, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease-in-out;
}
.shipping-page .shipping-features .feature-item .feature-icon i {
  font-size: clamp(32px, 2.5rem, 2.0833333333vw);
  color: var(--color-primary);
  transition: all 0.5s ease-in-out;
}
.shipping-page .shipping-features .feature-item h3 {
  font-size: clamp(18px, 1.25rem, 1.0416666667vw);
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.shipping-page .shipping-features .feature-item p {
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  color: #666;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .shipping-page .shipping-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .shipping-page .shipping-features {
    padding: 3rem 0;
  }
  .shipping-page .shipping-features .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .shipping-page .shipping-features .feature-item {
    padding: 2rem 1.5rem;
  }
}
.shipping-page .shipping-partners {
  padding: 5rem 0;
}
.shipping-page .shipping-partners .partners-header {
  margin-bottom: 3rem;
}
.shipping-page .shipping-partners .partners-content {
  gap: 4rem;
  align-items: stretch;
}
.shipping-page .shipping-partners .partners-text {
  flex: 1;
}
.shipping-page .shipping-partners .partners-text p {
  font-size: clamp(16px, 1.125rem, 0.9375vw);
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.shipping-page .shipping-partners .partners-text .partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shipping-page .shipping-partners .partners-text .partners-list li {
  margin-bottom: 1rem;
  gap: 0.75rem;
}
.shipping-page .shipping-partners .partners-text .partners-list li i {
  color: var(--color-primary);
  font-size: clamp(18px, 1.25rem, 1.0416666667vw);
}
.shipping-page .shipping-partners .partners-text .partners-list li span {
  font-size: clamp(16px, 1.125rem, 0.9375vw);
  color: var(--color-text);
  font-weight: 500;
}
.shipping-page .shipping-partners .partners-image {
  flex: 1;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.shipping-page .shipping-partners .partners-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.5s ease-in-out;
}
.shipping-page .shipping-partners .partners-image img:hover {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .shipping-page .shipping-partners .partners-content {
    flex-direction: column;
  }
  .shipping-page .shipping-partners .partners-image {
    max-width: 100%;
    order: -1;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .shipping-page .shipping-partners {
    padding: 3rem 0;
  }
}
.shipping-page .shipping-cta {
  padding: 5rem 0;
}
.shipping-page .shipping-cta .cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, #c40017 100%);
  border-radius: 16px;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.shipping-page .shipping-cta .cta-content h2 {
  font-size: clamp(28px, 2.5rem, 2.0833333333vw);
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}
.shipping-page .shipping-cta .cta-content p {
  font-size: clamp(16px, 1.125rem, 0.9375vw);
  color: rgba(255, 255, 255, 0.9);
}
.shipping-page .shipping-cta .cta-btn {
  background: #fff;
  color: var(--color-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.5s ease-in-out;
}
.shipping-page .shipping-cta .cta-btn:hover {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .shipping-page .shipping-cta .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
}
@media (max-width: 768px) {
  .shipping-page .shipping-cta {
    padding: 3rem 0;
  }
  .shipping-page .shipping-cta .cta-content h2 {
    font-size: clamp(24px, 1.75rem, 1.4583333333vw);
  }
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-page .contact-banner {
  height: 400px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-page .contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.contact-page .contact-banner .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-page .contact-banner .text {
  color: #fff;
}
.contact-page .contact-banner .text h1 {
  font-size: clamp(36px, 4rem, 3.3333333333vw);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.contact-page .contact-banner .text .breadCrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
}
.contact-page .contact-banner .text .breadCrumbs a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}
.contact-page .contact-banner .text .breadCrumbs a:hover {
  color: var(--color-primary);
}
.contact-page .contact-banner .text .breadCrumbs span {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .contact-page .contact-banner {
    height: 300px;
  }
  .contact-page .contact-banner .text h1 {
    font-size: clamp(28px, 2.5rem, 2.0833333333vw);
  }
}
.contact-page .contact-intro {
  padding: 5rem 0;
}
.contact-page .contact-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-page .contact-intro .intro-text {
  font-size: clamp(18px, 1.5rem, 1.25vw);
  color: #666;
  line-height: 1.8;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .contact-page .contact-intro {
    padding: 3rem 0;
  }
  .contact-page .contact-intro .intro-text {
    font-size: clamp(16px, 1.125rem, 0.9375vw);
  }
}
.contact-page .contact-main {
  padding: 0 0 5rem;
}
.contact-page .contact-main .contact-wrapper {
  gap: 4rem;
  align-items: stretch;
}
.contact-page .contact-main .contact-form {
  flex: 1;
}
.contact-page .contact-main .contact-form form {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.contact-page .contact-main .contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-page .contact-main .contact-form .form-group label {
  display: block;
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}
.contact-page .contact-main .contact-form .form-group label .required {
  color: var(--color-primary);
}
.contact-page .contact-main .contact-form .form-group input,
.contact-page .contact-main .contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: clamp(15px, 1rem, 0.8333333333vw);
  color: var(--color-text);
  transition: all 0.5s ease-in-out;
  background: #fafafa;
}
.contact-page .contact-main .contact-form .form-group input:focus,
.contact-page .contact-main .contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(254, 0, 29, 0.1);
}
.contact-page .contact-main .contact-form .form-group input::-moz-placeholder, .contact-page .contact-main .contact-form .form-group textarea::-moz-placeholder {
  color: #999;
}
.contact-page .contact-main .contact-form .form-group input::placeholder,
.contact-page .contact-main .contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-page .contact-main .contact-form .form-group textarea {
  resize: none;
  min-height: 80px;
}
.contact-page .contact-main .contact-form .submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: clamp(16px, 1.125rem, 0.9375vw);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.5s ease-in-out;
}
.contact-page .contact-main .contact-form .submit-btn i {
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  transition: transform 0.3s ease;
}
.contact-page .contact-main .contact-form .submit-btn:hover {
  background: var(--color-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-page .contact-main .contact-form .submit-btn:hover i {
  transform: translateX(5px);
}
.contact-page .contact-main .contact-info {
  flex: 1;
}
.contact-page .contact-main .contact-info .info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease-in-out;
}
.contact-page .contact-main .contact-info .info-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.contact-page .contact-main .contact-info .info-card:hover .info-icon {
  background: var(--color-primary);
}
.contact-page .contact-main .contact-info .info-card:hover .info-icon i {
  color: #fff;
}
.contact-page .contact-main .contact-info .info-card .info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(254, 0, 29, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s ease-in-out;
}
.contact-page .contact-main .contact-info .info-card .info-icon i {
  font-size: clamp(22px, 1.5rem, 1.25vw);
  color: var(--color-primary);
  transition: all 0.5s ease-in-out;
}
.contact-page .contact-main .contact-info .info-card .info-content h3 {
  font-size: clamp(16px, 1.125rem, 0.9375vw);
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}
.contact-page .contact-main .contact-info .info-card .info-content p {
  font-size: clamp(14px, 1rem, 0.8333333333vw);
  color: #666;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .contact-page .contact-main .contact-wrapper {
    flex-direction: column-reverse;
  }
  .contact-page .contact-main .contact-form form {
    padding: 2rem;
  }
  .contact-page .contact-main .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-page .contact-main .contact-info .info-card {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .contact-page .contact-main .contact-info {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-map {
  padding: 0 0 5rem;
}
.contact-page .contact-map .map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.contact-page .contact-map .map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.contact-page .contact-map .map-placeholder i {
  font-size: clamp(48px, 3.5rem, 2.9166666667vw);
  color: #ccc;
}
.contact-page .contact-map .map-placeholder p {
  font-size: clamp(16px, 1.125rem, 0.9375vw);
  color: #999;
}
@media (max-width: 768px) {
  .contact-page .contact-map .map-placeholder {
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */