/**
* Template Name: Arsha
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

body.offcanvas-menu:before {
  opacity: 1;
  visibility: visible;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f4841a;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.container {
  max-width: 1280px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #FFFFFF;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo img {
  max-height: 60px;
}

#header .header-switch {
  color: #343434;
  font-size: 16px;
}

#header .header-switch:hover {
  color: #47b2e4;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #343434;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
  color: #343434;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #f4841a;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #343434;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.nav-search {
  position: relative;
  margin-left: 15px;
  padding-left: 15px;
  border-left: #cccccc 1px solid;
}
@media (max-width: 991px) {
  .nav-search {
    top: 17px;
  }
}

.search-btn {
  cursor: pointer;
  color: #343434;
  font-size: 20px;
  transition: color 0.3s;
}

.search-btn:hover {
  color: #47b2e4;
}

/* Search Block Styles */
.search-block {
  position: absolute;
  top: 100%;
  right: 0;
  width: 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px;
  margin-top: 10px;
  z-index: 1000;
}

.search-block::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.search-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.language-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background-color: #f8f9fa;
}

.search-input-wrapper {
  display: flex;
  gap: 8px;
}

#search-field {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

#search-field:focus {
  outline: none;
  border-color: #47b2e4;
}

.search-button {
  padding: 0 15px;
  background: #47b2e4;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-button:hover {
  background: #209dd8;
}

@media (max-width: 768px) {
  .search-block {
      width: 300px;
      right: -100px;
  }
  
  .search-block::before {
      right: 110px;
  }
}

@media (max-width: 480px) {
  .search-block {
      width: 280px;
      right: -120px;
  }
  
  .search-input-wrapper {
      flex-direction: row;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding: 60px 0 0 0;
  /*background: #37517e;*/
}

#hero .container {
  padding-top: 18px;
}
#hero .container-fluid {
  padding-top: 18px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 35px;
  border-radius: 2px;
  margin: 10px 0 0 0;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: .3s;
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  /*color : #209dd8 !important;*/
  background : #209dd8 !important;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero .slider-content-pagination {
  position: absolute;
  bottom: 5px;
  z-index: 3;
}

#hero .swiper-pagination-bullet {
  width: 60px;
  height: 5px;
  border-radius: 0;
  background: #b3e9cf;
}

#hero .my-bullet-active {
  background: #FFA500;
  opacity: 1;
}

#hero .swiper-button-prev {
  left: 90px;
  top: 45%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  line-height: 50px;
  height: 50px;
  position: absolute;
  display: block;
  z-index: 999;
  border-radius: 0;
  cursor: pointer;
}

#hero .swiper-button-next {
  right: 90px;
  top: 45%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) ;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  display: block;
  z-index: 999;
  border-radius: 0;
  cursor: pointer;
}
#hero .swiper-button-prev,
#hero .swiper-button-next {
  font-size: 45px;
  color: #fff;
  line-height: 45px;
  font-weight: 300;
}
#hero .swiper-button-prev:focus,
#hero .swiper-button-next:focus {
  outline: 0;
}
#hero .swiper-button-prev:hover,
#hero .swiper-button-next:hover {
  background: #FFA500 !important;
}
#hero:hover .swiper-button-prev {
  left: 0;
  opacity: 1;
}
#hero:hover .swiper-button-next {
  right: 0;
  opacity: 1;
}

#hero .slider-content {
  width: 100%;
}

#hero .slider-content .content {
  position: absolute;
  padding: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  z-index: 3;
  min-width: 50%;
  max-width: 80%;
  text-align: left;
  background: rgba(0,0,0,.5);
}

#hero .slider-content .content .caption {
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
  #hero {
    /*height: 100vh;*/
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #hero .slider-content .content {
    top: 50%;
    left: 50%;
    width: 95%;
    right: unset;
    transform: translate(-50%,-50%);
  }

  #hero .hero-img img {
    height: 100%;
    object-fit: cover;
  }

  #hero .btn-get-started {
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #f4841a;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #f4841a;
  border-color: #FFFFFF;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Product List
--------------------------------------------------------------*/
.products .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  width: 100%;
}

.products .icon-box .icon {
  margin-bottom: 10px;
}

.products .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.products .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.products .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.products .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.products .icon-box:hover {
  transform: translateY(-10px);
}

.products .icon-box:hover h4 a {
  color: #47b2e4;
}

.products .icon-box .price {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 15px;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border-radius: 6px;
}

.products .icon-box .price .currency {
  color: #666;
  font-size: 14px;
}

.products .icon-box .price .amount {
  color: #e03a3c;
  font-size: 20px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #f4841a;
  border: 2px solid #FFFFFF;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}
#portfolio {
  background-color: #f8f8f8;
}

.portfolio .portfolio-container {
  margin-bottom: 15px;
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  transition: all 1s ease 0s;
  background: #FFFFFF;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #d1d0cf;
  border-radius: 8px;
}

.portfolio-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio .portfolio-item .portfolio-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-item .portfolio-img img {
  position: relative;
  top: 0px;
  transition: all 0.5s;
  border-radius: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio .portfolio-item .portfolio-img:before,
.portfolio .portfolio-item .portfolio-img:after {
  content: "";
  background-color: #FFA500;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 0;
  transition: all 0.4s ease-out 0.1s;
}

.portfolio .portfolio-item:hover .portfolio-img:after {
  opacity: 0;
  transform: scale(0.9,0.7);
  left: 0;
  transition: all 0.3s ease-out 0s;
}

.portfolio .portfolio-item:hover .portfolio-img:before { left: 100% }
.portfolio .portfolio-item:hover .portfolio-img:after {
  opacity: 0.3;
  transform: scale(1);
}

.portfolio .portfolio-item .portfolio-info {
  position: relative;
  transition: all 1s ease 0s;
}

.portfolio .portfolio-item .portfolio-info h4 {
  color: #151515;
  font-size: 16px;
  font-weight: 400;
  word-break: break-word;
  margin: 8px 0 15px 0;
}

.portfolio .portfolio-item:hover .portfolio-info h4 {
  color: #FFA500;
}

.portfolio .portfolio-item .portfolio-info span {
  background: transparent;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #FFA500;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-item .portfolio-btn {
  /*text-align: center;*/
  position: absolute;
  top: 30%;
  opacity: 0;
  transition: all 1s ease 0s;
  width: 100%;
  padding: 0 1em;
}

.portfolio .portfolio-item:hover .portfolio-btn {
  opacity: 1;
  transition: all 1s ease 0s;
}

.portfolio .portfolio-item .portfolio-btn .details-link {
  margin-bottom: 8px;
  padding: 12px 30px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: #FFFFFF;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  border: none;
  word-break: break-all;
  white-space: normal;
  transition:all 0.5s;
  z-index: 2;
}

.portfolio .learn-more {
  text-align: center;
}

.portfolio .learn-more .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #FFA500;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #FFA500;
}

.portfolio .learn-more .btn-learn-more:hover {
  background: #FFA500;
  border-color: #FFFFFF;
  color: #fff;
  text-decoration: none;
}


.portfolio .portfolio-info .price {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 15px;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border-radius: 6px;
}

.portfolio .portfolio-info .price .currency {
  color: #666;
  font-size: 14px;
}

.portfolio .portfolio-info .price .amount {
  color: #e03a3c;
  font-size: 20px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-inner #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}
#portfolio {
  background-color: #f8f8f8;
}

.portfolio-inner .portfolio-container {
  margin-bottom: 15px;
}

.portfolio-inner .portfolio-item {
  position: relative;
  overflow: hidden;
  transition: all 1s ease 0s;
  background: #FFFFFF;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #d1d0cf;
  border-radius: 8px;
}

.portfolio-inner .portfolio-item .portfolio-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.portfolio-inner .portfolio-item .portfolio-img img {
  position: relative;
  top: 0px;
  transition: all 0.5s;
  border-radius: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-inner .portfolio-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-inner .portfolio-item .portfolio-img:before,
.portfolio-inner .portfolio-item .portfolio-img:after {
  content: "";
  background-color: #FFA500;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 0;
  transition: all 0.4s ease-out 0.1s;
}

.portfolio-inner .portfolio-item:hover .portfolio-img:after {
  opacity: 0;
  transform: scale(0.9,0.7);
  left: 0;
  transition: all 0.3s ease-out 0s;
}

.portfolio-inner .portfolio-item:hover .portfolio-img:before { left: 100% }
.portfolio-inner .portfolio-item:hover .portfolio-img:after {
  opacity: 0.3;
  transform: scale(1);
}

.portfolio-inner .portfolio-item .portfolio-info {
  position: relative;
  padding: 10px 0px;
  transition: all 1s ease 0s;
}

.portfolio-inner .portfolio-item .portfolio-info h4 {
  color: #151515;
  font-size: 22px;
  font-weight: 400;
  word-break: break-word;
  margin: 8px 0 15px 0;
}

.portfolio-inner .portfolio-item:hover .portfolio-info h4 {
  color: #FFA500;
}

.portfolio-inner .portfolio-item .portfolio-info span {
  background: transparent;
  color: #222222;
}

.portfolio-inner .portfolio-item .portfolio-info .preview-link,
.portfolio-inner .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio-inner .portfolio-item .portfolio-info .preview-link:hover,
.portfolio-inner .portfolio-item .portfolio-info .details-link:hover {
  color: #FFA500;
}

.portfolio-inner .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio-inner .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

.portfolio-inner .portfolio-item .portfolio-btn {
  /*text-align: center;*/
  position: absolute;
  top: 30%;
  opacity: 0;
  transition: all 1s ease 0s;
  width: 100%;
  padding: 0 1em;
}

.portfolio-inner .portfolio-item:hover .portfolio-btn {
  opacity: 1;
  transition: all 1s ease 0s;
}

.portfolio-inner .portfolio-item .portfolio-btn .details-link {
  margin-bottom: 8px;
  padding: 12px 40px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: #FFFFFF;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  border: none;
  word-break: break-all;
  white-space: normal;
  transition:all 0.5s;
  z-index: 2;
}

.portfolio-inner .learn-more {
  text-align: center;
}

.portfolio-inner .learn-more .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #FFA500;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #FFA500;
}

.portfolio-inner .learn-more .btn-learn-more:hover {
  background: #FFA500;
  border-color: #FFFFFF;
  color: #fff;
  text-decoration: none;
}

.portfolio-inner .wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.portfolio-inner .wish-btn .btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

.portfolio-inner .wish-btn .btn:hover {
  background: transparent;
}

.portfolio-inner .wishlist-icon {
  font-size: 18px;
  color: #666;
}

.portfolio-inner .wishlist-icon.active {
  color: #dc3545;
  fill: #dc3545;
}

.portfolio-inner .product-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}

.portfolio-inner .product-desc {
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-inner .portfolio-img img {
  aspect-ratio: 1;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  max-height: 500px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-info .portfolio-info-label {
  min-width: 120px;
  font-size: 15px;
  font-weight: 700;
}

.portfolio-details .portfolio-info .portfolio-info-value::before {
  content: "=";
  display: inline-block;
  padding: 0 12px;
  color: #26ceba;
}

.portfolio-details .portfolio-info .price-info {
  margin: 10px 0;
}

.portfolio-details .portfolio-info .price-info .price {
  font-size: 18px;
  font-weight: 700;
  color: #f4841a;
  text-decoration: none;
}

.portfolio-details .portfolio-info .price-info .price-old {
  font-size: 12px;
  font-weight: 500;
  color: #83868c;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-button {
  margin: 10px 0;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-description .sku-card {

}

.portfolio-description .sku-card:hover {
  background-color: rgb(13, 110, 253);
  border: none;
  animation-delay: 0.8s;
}

/*--------------------------------------------------------------
# Team Contact List
--------------------------------------------------------------*/

/* 联系人卡片悬浮效果 */
.team .member-card {
  transition: all 0.4s ease;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 1px solid #eee;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.team .member:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}

.team .member-card:hover .member {
  border-color: #47b2e4;
  box-shadow: 0 5px 25px rgba(71, 178, 228, 0.15);
  transform: translateY(-5px);
}

.team .member .member-info {
  padding-left: 25px;
  flex: 1;
}

.team .member h4 {
  font-weight: 600;
  font-size: 18px;
  color: #37517e;
  margin-bottom: 6px;
}

.team .member span {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 8px;
}

.team .member .contact-details {
  margin: 15px 0;
}

.team .member .contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.team .member .contact-detail i {
  font-size: 16px;
  color: #47b2e4;
  width: 24px;
  margin-right: 8px;
}

.team .member .contact-detail a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team .member .contact-detail a:hover {
  color: #47b2e4;
}

.team .member .social {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.team .member .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10%;
  background: #f8f9fa;
  color: #47b2e4;
  transition: all 0.3s ease;
}

.team .member .social a i {
  font-size: 16px;
}

.team .member .social a:hover {
  background: #47b2e4;
  color: #fff;
  transform: translateY(-2px);
}

.team .member .social a + a {
  margin-left: 2px;
}



/* 头像容器和效果 */
.team .pic-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
}

.team .pic {
  width: 100%;
  height: 100%;
  border-radius: 10%;
  overflow: hidden;
  border: 1px solid #f8f9fa;
  transition: all 0.4s ease;
}

.team .member-card:hover .pic {
  border-color: #47b2e4;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(71, 178, 228, 0.2);
}

.team .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.team .member-card:hover .pic img {
  transform: scale(1.1);
}

/* 优化社交图标悬浮效果 */
.team .social-link {
  transition: all 0.3s ease;
}

.team .social-link:hover {
  background: #47b2e4;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(71, 178, 228, 0.2);
}

@media (max-width: 768px) {
  .team .member {
    padding: 15px;
  }
  
  .team .member .pic {
    width: 80px;
    height: 80px;
  }
  
  .team .member .member-info {
    padding-left: 15px;
  }
  
  .team .member h4 {
    font-size: 16px;
  }
  
  .team .member span {
    font-size: 13px;
  }
  
  .team .member .contact-detail {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
  background: #f4841a;
  border-color: #FFFFFF;
  color: #fff;
}

.pricing .featured {
  border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
  background: #f4841a;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #f4841a;
  border-color: #FFFFFF;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #f4841a;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #f4841a;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact-item {
  background: #fff;
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-details {
  color: #444;
}

.contact-detail {
  display: flex;
  align-items: center;
}

.contact-detail i {
  font-size: 1.2rem;
  min-width: 24px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #47b2e4;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #47b2e4;
  color: #fff;
}

.social-link i {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Index Category
--------------------------------------------------------------*/
.category-nav {
  padding: 20px 0;
}

.category-list {
  padding: 0 30px;  /* 给swiper容器添加左右padding，为按钮留出空间 */
}

.category-list .swiper-slide {
  padding: 5px;  /* 减小内边距使项目更紧凑 */
}
.category-nav-item {
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px;
  border-radius: 12px;
  overflow: hidden;
}

.category-nav-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-nav-item .category-nav-icon {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.category-nav-item:hover .category-nav-icon {
  transform: scale(1.05);
}

.category-nav-item:hover h4 {
  color: #47b2e4;
}

.category-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #47b2e4;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.category-nav-item:hover::after {
  width: 80%;
}

.category-nav-item img {
  transition: all 0.3s ease;
}

.category-nav-item:hover img {
  transform: scale(1.1);
}

.category-nav-icon {
  margin-bottom: 8px;  /* 减小底部间距 */
  padding: 5px;  /* 减小内边距 */
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.category-nav-icon img {
  width: 100%;  /* 控制图片大小 */
  height: auto;
  object-fit: contain;
  border-radius: 8px;  /* 图片圆角 */
}

.category-nav-item h4 {
  font-size: 14px;
  margin: 0;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 调整Swiper导航按钮位置 */
.category-list .swiper-button-next,
.category-list .swiper-button-prev {
  color: #666;
  width: 30px;
  height: 30px;
  margin-top: -15px; /* 垂直居中 */
}

.category-list .swiper-button-next:after,
.category-list .swiper-button-prev:after {
  font-size: 16px;
}

.category-list .swiper-button-next {
  right: 0;  /* 按钮位于padding区域内 */
}

.category-list .swiper-button-prev {
  left: 0;  /* 按钮位于padding区域内 */
}

.manufacturer-content {
  width: 100%;
  overflow: hidden;
}

.manufacturer-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.manufacturer-content p {
  margin: 0;
  padding: 0;
  width: 100%;
}

/*--------------------------------------------------------------
# Index Category
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
#breadcrumbs {
  width: 100%;
}

.breadcrumbs {
  margin-top: 72px;
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.breadcrumbs .bg-container {
  width: 100%;
  overflow: hidden;
}

.breadcrumbs .bg-img {
  width: 100%;
  background: #37517e;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin:auto;
  object-fit: cover;
  text-align: center;
  z-index: 1;
}

.breadcrumbs .caption {
  position: relative;
  padding: 10px 0;
  margin: 0 auto;
  color: #fff;
  z-index: 3;
  background: rgba(255,255,255,0.2);
}

.breadcrumbs .caption .ol-width {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #eeeeee;
}

.breadcrumbs .caption .ol-width a {
  color: #eeeeee;
}

.breadcrumbs .caption .ol-width a:hover {
  color: #f4841a;
}

.breadcrumbs .caption .ol-width .ol-gap {
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 18px;
  }
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 18px;
  }

  .breadcrumbs .bg-img {
    width: 100%;
    background: rgba(0,0,0,.4);
    position: absolute;
    margin:auto;
    height: 120px;
    object-fit: cover;
    text-align: center;
    z-index: 1;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

.breadcrumbs-v2 {
  margin-top: 90px;
  background: #37517e;
}

.breadcrumbs-v2 .bread-crumb {
  padding: 10px 0
}

.breadcrumbs-v2 h3 {
  color: #eeeeee;
  padding: 18px 0 18px 0
}

.breadcrumbs-v2 .bread-crumb span {
  margin-left: 10px;
  margin-right: 10px;
}

.breadcrumbs-v2.breadcrumb_cart .bread-crumb{
  padding: 10px 0;
}

.breadcrumbs-v2 .ol-gap {
  margin: 0 5px;
  color: #dddddd;
}

.breadcrumbs-v2 a {
  font-family: Jost;
  font-size: 16px;
  font-weight: 400;
  color: #dddddd
}

.breadcrumbs-v2 a:hover {
  color: #f4841a
}

.breadcrumbs-v2 a i {
  padding: 0 10px;
  color: #cccccc
}

.breadcrumbs-v2 strong {
  font-family: Jost;
  font-size: 16px;
  font-weight: 500;
  color: #f4841a
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f4841a;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-contact .address {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
}

#footer .footer-contact .title {
  font-size: 16px;
  font-weight: 500;
  padding-right: 15px;
  margin-bottom: 15px;
}

#footer .footer-contact .title:after {
  content: ":";
  margin-left: 15px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 20px;
}

#footer .footer-top .footer-links .footer-title {
  color: #111111;
}

#footer .footer-top .footer-links .footer-title:after {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  margin-top: 20px;
  background-color: #111;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f4841a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*--------------------------------------------------------------
# Category
--------------------------------------------------------------*/
#category {
  width: 100%;
  padding: 0 0 60px 0 !important;
}

#category .product-category {
  margin: 1.5rem 0;
}

#category .product-category .category-item {
  position: relative;
  transition: all .5s linear;
  margin-bottom: 15px;
  text-align: center;
}

#category .product-category .category-item .category-img {
  overflow: hidden;
  display: block!important;
  max-height: 450px;
  text-align: center;
}

#category .product-category .category-item .category-img img {
  transition: all .8s linear;
  width: 100%;
  max-width: 100%;
  height: auto;
}

#category .product-category .category-item .content {
  position: absolute;
  bottom: 20px;
  padding: 0 20px;
  z-index: 2;
  visibility: visible;
  transition: all .5s linear;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,.3);
}

#category .product-category .category-item .content:hover {
  background: rgba(255,255,255,0.6);
}

#category .product-category .category-item .content a {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 24px;
  transition: all .3s;
  color: #FFFFFF;
}

#category .product-category .category-item .content a:hover {
  color: #f4841a
}

#category .product-category .category-item .content p {
  font-family: "Jost", sans-serif;
  transition: all .3s;
  color: #EEEEff;
}

#category .product-category .category-item .content p:hover {
  color: #f4841a
}

.category-bg {
  padding: 20px 0;
  background-color: #eeeeee;
  margin: 30px auto
}

.category-bg:after {
  border-bottom: 1px #0d47a1 dot-dash;
}

.category-bg .category-box {
  width: 100%;
  height: 100%;
  min-height: 510px;
  overflow: hidden;
  position: relative;
}

.category-bg .category-box img {
  object-fit: cover;
}

.category-bg .category-box .category-image:before,
.category-bg .category-box .category-image:after {
  content: "";
  background-color: #FFA500;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 0;
  transition: all 0.4s ease-out 0.1s;
}

.category-bg .category-box:hover .category-image:after {
  opacity: 0;
  transform: scale(0.9,0.7);
  left: 0;
  transition: all 0.3s ease-out 0s;
}

.category-bg .category-box:hover .category-image:before { left: 100% }
.category-bg .category-box:hover .category-image:after {
  opacity: 0.3;
  transform: scale(1);
}

.category-bg .category-content {
  position: absolute;
  top: 30px;
  left: 5px;
  color: #FFFFFF;
  z-index: 5;
  max-width: 95%;
}

.category-bg .category-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.category-bg .category-content .category-name {
  padding: 5px 0;
  border-bottom: 2px #EEEEEE solid;
}

.category-bg .category-content .category-desc {
  font-size: 20px;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.news .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 5%;
}

.news .member .pic img {
  transition: ease-in-out 0.3s;
}

.news .member:hover {
  transform: translateY(-10px);
}

.news .member .member-info {
  padding-left: 30px;
}

.news .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  color: #37517e;
  position: relative;
}

/*.news .member h4::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  display: block;*/
/*  width: 50px;*/
/*  height: 1px;*/
/*  background: #cbd6e9;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*}*/

.news .member span {
  display: block;
  font-size: 11px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.news .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.news .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.news .member .news-btn {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.news .member i {
  color: #37517e;
  font-size: 14px;
  margin-right: 10px;
}

.news .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.news .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.news .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.news .member .social a:hover {
  background: #f4841a;
  border-color: #FFFFFF;
}

.news .member .social a:hover i {
  color: #fff;
}

.news .member .social a+a {
  margin-left: 8px;
}

.news .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 1px solid #47b2e4;
}

.news .btn-learn-more:hover {
  background: #f4841a;
  border-color: #FFFFFF;
  color: #fff;
  text-decoration: none;
}

.break-color {
  background: #f3f5fa;
}

.pagination {
  margin: 30px 15px 0 15px;
  padding: 15px 10px 15px 10px;
  border-top: #d4cfc9 1px solid;
}

.pagination .page-item {
  display: inline;
}

.pagination .page-item a {
  border: solid 1px #d7d7d7;
  border-radius: 0.2rem;
  color: #7d7d7d;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  padding: 0.5rem 0.9rem;
}

.pagination .page-item:hover a {
  color: #fdfdfd;
  background-color: #1d1f20;
  border: solid 1px #1d1f20;
}

.pagination .active a {
  color: #fdfdfd;
  background-color: #1d1f20;
  border: solid 1px #1d1f20;
}

.items-list {
  margin: 0 15px;
}

.items-list .item-box {
  border: #d4cfc9 1px solid;
  padding: 18px;
  height: 280px;
}

.items-list .item-box .article-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

.items-list .item-box .article-date {
  font-size: 12px;
  color: #b0b0b0;
  margin-bottom: 5px;
}

.items-list .item-box .article-desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 5px;
}

.items-list .item-box .article-btn {
  border-top: 1px solid #d4cfc9;
  padding-top: 10px;
}

.items-list .item-box .article-img {
  -webkit-box-shadow:0px 3px 3px #c8c8c8 ;
  -moz-box-shadow:0px 3px 3px #c8c8c8 ;
  box-shadow:0px 3px 3px #c8c8c8 ;
}

.items-list .item-box .article-img:hover {
  -webkit-box-shadow:3px 3px 3px #ffe0b2 ;
  -moz-box-shadow:3px 3px 3px #ffe0b2 ;
  box-shadow:3px 3px 3px #ffe0b2 ;
}

/* 文章Posts列表定制 https://www.ahhhhfs.com/  */

.posts-warp {
  position: relative;
}

.post-item {
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
  background-color: #fff;
  border-radius: .3rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.8rem;
}

.post-item:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 1rem 3rem rgba(31,45,61,.13);
  box-shadow: 0 1rem 3rem rgba(31,45,61,.13)
}

.post-item .tips-badge {
  font-size: .6rem
}

.post-item .entry-media {
  display: block;
  position: relative;
  overflow: hidden
}

.post-item .entry-media .media-img {
  border-radius: inherit;
  background-color: rgba(161,161,168,.1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.post-item .entry-media .post-format-icon {
  color: #fff;
  font-size: 1rem;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  padding: .65rem;
  line-height: 1;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: 2px solid transparent
}

.post-item:hover .entry-media .post-format-icon {
  background: rgba(0,0,0,.2);
  border: 2px solid #fff
}

.post-item .entry-desc,.post-item .entry-title {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  -webkit-line-clamp: 1
}

.post-item .entry-title {
  font-size: .95rem;
  font-weight: 600
}

.post-item .entry-desc {
  color: #a1a1a8;
  margin-top: 4px;
  font-size: .75rem;
  line-height: 1.25;
  white-space: normal
}

.post-item .entry-cat-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px
}

.post-item .entry-cat-dot>a {
  color: #a1a1a8;
  font-size: .75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.post-item .entry-cat-dot>a:first-child::before {
  background-color: rgba(33,99,232,.75)
}

.post-item .entry-cat-dot>a:nth-child(2)::before {
  background-color: rgba(247,195,46,.75)
}

.post-item .entry-cat-dot>a:nth-child(3)::before {
  background-color: rgba(12,188,135,.75)
}

.post-item .entry-cat-dot>a:nth-child(4)::before {
  background-color: rgba(79,158,248,.75)
}

.post-item .entry-cat-dot>a::before {
  display: block;
  content: "";
  border-radius: 50%;
  height: 6px;
  width: 6px;
  margin-right: 5px
}

.post-item .entry-cat-dot>a:hover {
  opacity: .75
}

.post-item .entry-cat-dot>a+a {
  margin-left: 6px
}

.post-item .entry-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #a1a1a8;
  font-size: .75rem
}

.post-item .entry-meta a {
  color: #a1a1a8
}

.post-item .entry-meta>span {
  margin-right: 10px
}

.post-item .entry-meta>span:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  margin-right: 0
}

.post-item.item-grid .entry-wrapper {
  padding: 10px
}

.post-item.item-grid .entry-meta {
  margin-top: 8px;
  white-space: nowrap;
  letter-spacing: -.2px
}

.post-item.item-grid .entry-meta>span {
  margin-right: 10px
}

.post-item.item-grid .entry-meta>span:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  margin-right: 0
}

.post-item.item-grid.grid-overlay {
  position: relative;
  overflow: hidden
}

.post-item.item-grid.grid-overlay .entry-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .5rem;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  background-image: -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.85)));
  background-image: linear-gradient(180deg,transparent,rgba(0,0,0,.85))
}

.post-item.item-grid.grid-overlay .entry-wrapper a {
  color: #fff
}

.post-item.item-grid.grid-overlay:hover .entry-wrapper {
  background-color: rgba(0,0,0,.42)
}

.post-item.item-grid.grid-overlay:hover .entry-title {
  display: block
}

.post-item.item-grid.grid-overlay:hover .entry-title a {
  color: #ffa301
}

.post-item.item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  min-width: 0;
  word-wrap: break-word;
  padding: .5rem
}

.post-item.item-list .entry-media {
  border-radius: .25rem;
  width: 320px;
  margin-right: 1rem
}

.post-item.item-list .entry-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 0
}

.post-item.item-list .entry-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.post-item.item-list .entry-title {
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-line-clamp: 2
}

.post-item.item-list .entry-desc {
  -webkit-line-clamp: 2
}

.post-item.item-list .entry-footer {
  margin-top: 8px
}

.sidebar {
  padding: 0 10px;
}

.sidebar .sidebar-title {
  font-size: 22px;
  line-height: 24px;
  color: #001c28;
  padding-bottom: 5px;
  margin-bottom: 25px;
  border-bottom: 1px #666666 solid;
}

.sidebar .article-img {
  height: 64px;
  -webkit-box-shadow:0px 3px 3px #c8c8c8 ;
  -moz-box-shadow:0px 3px 3px #c8c8c8 ;
  box-shadow:0px 3px 3px #c8c8c8 ;
}

.sidebar .article-img:hover {
  -webkit-box-shadow:2px 3px 3px #ffe0b2 ;
  -moz-box-shadow:2px 3px 3px #ffe0b2 ;
  box-shadow:2px 3px 3px #ffe0b2 ;
}

.sidebar .article-list {
  line-height: 32px;
}

.sidebar .article-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.sidebar .article-date {
  font-size: 12px;
  color: #999999;
  margin-bottom: 5px;
}

.sidebar .sidebar-category {
  border-left: 4px solid #1f2430;
  margin-right: 15px;
  font-size: 18px;
  font-weight: 400;
  color: #1f2430;
}

.sidebar .sidebar-category:hover {
  border-left: 4px solid #ff8f40;
  color: #ff8f40;
}

.top-bar {
  margin-top: 15px;
  margin-bottom: 15px;
}

.top-bar .top-bar-title {
  background: #0d47a1;
  color: #d4cfc9;
  border-radius: 4px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}

.top-bar .top-bar-item {
  padding: 12px 0;
  line-height: 24px;
  font-size: 16px;
  font-weight: 800;
  border-bottom: 3px solid #0d47a1;
}

.top-bar .top-bar-item a:link {
  color: #0d47a1;
}

.top-bar .top-bar-item a:visited {
  color: #0d47a1;
}

.top-bar .top-bar-item a:hover {
  color: #ff8f40;
}

.top-bar .top-bar-item:hover {
  border-bottom-color: #ff8f40 ;
}

.widget {
  overflow: hidden;
  margin-top: 20px;
}

.widget .widget-title {
  padding: 10px 15px;
  background-color: #f8f9fa;
  border-left: 3px solid #f4841a;
  border-top: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  position: relative;
  margin-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.widget .widget-title h2 {
  font-family: Jost;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  position: relative;
  display: inline-block;
  margin: 0;
}

.widget .widget-title:after {
  display: none;
}

.widget .widget-content {
  padding: 15px;
  border: 1px solid #e6e6e6;
  border-top: none;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
}

.widget .widget-content .language-select {
  width: 100%;
  height: 40px;
  font-size: 14px;
  border: none;
  border-bottom: 1px #1a1a1a solid;
}

.widget .widget-content .list-category-toggle {
  padding-left: 0;
  margin-bottom: 0;
}

.widget .widget-content .list-category-toggle li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  transition: all 0.3s ease;
}

.widget .widget-content .list-category-toggle li:last-child {
  border-bottom: none;
}

.widget .widget-content .list-category-toggle li:before {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 15px;
  float: left;
  padding-right: 10px;
  line-height: 36px;
  color: #f4841a;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  top: 0;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.widget .widget-content .list-category-toggle li:hover {
  background-color: #f8f9fa;
  padding-left: 5px;
}

.widget .widget-content .list-category-toggle li:hover:before {
  display: block;
  opacity: 1;
  visibility: visible;
}

.widget .widget-content .list-category-toggle li:hover a {
  color: #f4841a;
}

.widget .widget-content .list-category-toggle li a {
  line-height: 36px;
  display: block;
  font-family: Jost;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-transform: capitalize;
  padding: 2px 10px;
  transition: all 0.3s ease;
}

.widget .article-img {
  height: 64px;
  -webkit-box-shadow:0px 3px 3px #c8c8c8 ;
  -moz-box-shadow:0px 3px 3px #c8c8c8 ;
  box-shadow:0px 3px 3px #c8c8c8 ;
}

.widget .article-img:hover {
  -webkit-box-shadow:2px 3px 3px #ffe0b2 ;
  -moz-box-shadow:2px 3px 3px #ffe0b2 ;
  box-shadow:2px 3px 3px #ffe0b2 ;
}


.widget .widget-content a i {
  margin-top: 5px;
  font-size: 15px;
  color: #83868c
}

.widget .widget-content a:hover {
  color: #f4841a
}

.widget .widget-content a:hover i {
  color: #f4841a
}
/*---------------------------------
/ TEST NAVBAR
 */
.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  top: 0;
  width: 100%;
}

.site-navbar .site-logo {
  position: relative;
  left: 0;
  font-size: 24px;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
  color: #007bff;
  display: inline-block;
  padding: 20px 20px;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li > a {
  padding: 20px 20px;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu > li.social > a {
  padding-left: 5px;
  padding-right: 5px;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #007bff;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #000;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active {
  color: #007bff !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 210px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
  background: #eff1f3;
  color: #000;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
  content: "\e315";
  right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .active {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap .social {
  display: inline-block;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap > li.social {
  float: none !important;
  width: auto !important;
}

.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important;
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-wrapper .site-navbar .site-menu-toggle {
  color: #fff;
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #fff;
}

.sticky-wrapper .site-navbar .site-menu > li > a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.sticky-wrapper .site-navbar .site-menu > li > a:hover, .sticky-wrapper .site-navbar .site-menu > li > a.active {
  color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: #fff;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
  color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #007bff;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
  color: #000 !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover, .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
  color: #007bff !important;
}

#certification {}

#certification .certificationList {
}

#certification .swiper-pagination {

}

#certification .certificate-pagination-bullet {
  width: 60px;
  height: 5px;
  border-radius: 0;
  background: #b3e9cf;
}

#certification .certificate-bullet-active {
  background: #FFA500;
  opacity: 1;
}

#certification .swiper-button-prev,
#certification .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease-out;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

#certification .swiper-button-prev:after,
#certification .swiper-button-next:after {
    font-size: 20px;
    font-weight: 700;
}

#certification .swiper-button-prev {
    left: 90px;
}

#certification .swiper-button-next {
    right: 90px;
}

#certification .swiper-button-prev:hover,
#certification .swiper-button-next:hover {
    background: #47b2e4 !important;
    color: #fff;
    transform: scale(1.1);
}

#certification:hover .swiper-button-prev {
    left: 20px;
    opacity: 1;
}

#certification:hover .swiper-button-next {
    right: 20px;
    opacity: 1;
}

/* 添加禁用状态样式 */
#certification .swiper-button-disabled {
    opacity: 0 !important;
    cursor: not-allowed;
}

#certification .certificationList .cert-box {
  text-align: center;
  width: 100%;
  border: #EEEEEE 1px solid;
  padding: 5px;
}

#certification .certificationList .cert-box:hover {
  transition: all 0.3s;
  border: #FFA500 1px solid;
}

#certification .certificationList .cert-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#certification .certificationList .cert-box .cert-content h4 {
  margin-top: 10px;
}

#certification .certificationList .cert-box:hover .cert-content h4 {
  color: #FFA500;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.review-item {
  background-color: #fff;
  transition: all 0.3s ease;
}

.review-item:hover {
  background-color: #f8f9fa;
}

.review-avatar img {
  object-fit: cover;
}

.review-rating {
  color: #ffc107;
  font-size: 14px;
  line-height: 1;
}

.review-content {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

.review-info h6 {
  color: #333;
  font-weight: 600;
}

/* ---------------------
/  Product Detail Style
---------------------- */
#product-detail .product-gallery {
  width: 100%;
}

#product-detail .thumbnail-item {
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 2px;
  transition: all 0.3s ease;
}

#product-detail .thumbnail-item:hover {
  border-color: #f4841a;
}

#product-detail .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#product-detail .main-image {
  border: 1px solid #ddd;
  padding: 5px;
}

#product-detail .main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 修改缩略图容器和列表样式 */
#product-detail .thumbnail-container {
  position: relative;
  height: 400px;
  width: 100px;
  margin-right: 15px;
}

#product-detail .thumbnail-list {
  width: 100%;
  height: 390px;
  overflow: hidden;
  position: relative;
  padding: 5px 0;
  margin: 5px 0;
}

#product-detail .thumbnail-item {
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 2px;
  transition: all 0.3s ease;
  height: 86px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#product-detail .thumbnail-item:last-child {
  margin-bottom: 0;
}

#product-detail .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#product-detail .thumbnail-item:hover {
  border-color: #f4841a;
}

/* 美化滚动按钮 */
#product-detail .thumbnail-nav {
  position: absolute;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(244, 132, 26, 0.8);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}

#product-detail .prev-thumb {
  top: -10px;
}

#product-detail .next-thumb {
  bottom: -10px;
}

#product-detail .thumbnail-nav:hover {
  background: rgba(244, 132, 26, 1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

#product-detail .thumbnail-nav:disabled {
  background: rgba(204, 204, 204, 0.8);
  cursor: not-allowed;
}

#product-detail .thumbnail-nav i {
  font-size: 18px;
}

.product-content img {
  max-width: 100%;
  height: auto;
}

.product-attrs {
  font-size: 0.875rem;
}

.variant-item:hover {
  border-color: #0d6efd !important;
  cursor: pointer;
}

.action-buttons .btn {
  padding: 0.5rem;
  font-size: 0.875rem;
}

/* 浮动按钮和面板样式 */
.floating-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #47b2e4;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.float-btn:hover {
  background: #209dd8;
}

.float-btn span {
  position: absolute;
  right: 60px;
  background: #47b2e4;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.float-btn:hover span {
  opacity: 1;
  visibility: visible;
}

/* 浮动面板样式 */
.float-panel {
  display: none;
  position: absolute;
  right: 60px;
  top: 0;
  width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.panel-header {
  padding: 15px;
  background: #47b2e4;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header h5 {
  margin: 0;
  font-size: 16px;
}

.close-panel {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
}

.panel-body {
  padding: 15px;
  max-height: 400px;
  overflow-y: auto;
}

/* 愿望单商品样式 */
@media (max-width: 768px) {
  .product-details-grid {
      grid-template-columns: repeat(2, 1fr) !important;
  }
}
.wishlist-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.wishlist-item h6 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wishlist-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
}

.wishlist-item-info {
  flex: 1;
}

.wishlist-item-info h6 {
  margin: 0 0 5px 0;
  color: #37517e;
  font-size: 14px;
}

.wishlist-remove {
  color: #dc3545;
  cursor: pointer;
  padding: 5px;
}