.module-section {
  padding: 80px 0;
}

.module-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.module-content a{
  color: blue;
  text-decoration: none;
}

.module-content a:hover{
  text-decoration: underline;
}

.module-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.module-title.left-align {
  text-align: left;
  width: 100%;
}

.module-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 25px;
}

.module-subtitle.left-align {
  text-align: left;
  max-width: 100%;
}

/* .category-page {
  padding-top: 80px;
} */

/* ==============================
   Hero 响应式
============================== */
.category-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.category-hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.category-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
}

.category-hero-content {
  max-width: 100%;
  padding: 0 25px;
  color: #fff;
  margin: 0 auto;
}

.category-hero h1 {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.category-hero p {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.category-hero-btns {
  display: flex;
  gap: 16px;
}

/* ==============================
   按钮通用
============================== */
.btn-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn {
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  font-size: 15px;
}

.btn-primary {
  background: var(--secondary-color);
  color: #fff;
  margin-top: 15px;
  border: 1px solid var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary i {
  margin-left: 5px;
}

.btn-primary:hover {
  background: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* ==============================
   Supply Wholesale 响应式
============================== */
.supply-wholesale-row {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 0;
}

.supply-wholesale-info {
  flex: 1;
}

.supply-wholesale-info p {
  margin-top: 15px;
}

.supply-wholesale-info p a{
    color: #63ab45;
}



.supply-wholesale-image {
  width: 500px;
  max-height: 380px;
}

.supply-wholesale-image img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  border-radius: 10px;
}

/* ==============================
   Introduction
============================== */
.introduction-section {
  background-color: #63ab45 ;
}

.introduction-section .module-title {
  color: #fff;
  border-left: 5px solid #fff;
}

.intro-content {
  color: #fff;
  text-align: left;
}

.intro-content p {
  margin-bottom: 16px;
}

/* ==============================
   产品网格
============================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
  border-radius: 5px;
  border: 1px solid #eee;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: black;
}

.product-card:hover{
  text-decoration: none;
}

.product-img-wrapper {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.05);
}

.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}

.product-name {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  min-height: calc(1.4em * 2);
  margin-bottom: 5px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-name:hover {
  cursor: pointer;
  text-decoration: underline;
}

.product-desc {
  color: #555;
  text-align: left;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-rfq {
  display: inline-block;
  margin-top: auto;
  color: var(--secondary-color);
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  width: 85%;
  text-align: center;
  transition: all 0.3s ease;
  align-self: center;
  text-decoration: none !important;
}

.product-rfq:hover {
  background: var(--secondary-color);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.section-title-left {
  text-align: left !important;
  position: relative;
  padding-left: 18px;
}

.section-title-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 24px;
  background: var(--secondary-color);
  border-radius: 3px;
}

/* ==============================
   CTA Banner
============================== */
.cta-banner {
  color: #fff;
  background-color: #ff9933;
  padding: 50px 0;
}

.cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.cta-left {
  max-width: 1000px;
}

.cta-left h2 {
  margin-bottom: 12px;
}


.btn-cta {
  background: #fff;
  color: var(--secondary-color);
  white-space: nowrap;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--secondary-color);
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
}

/* ==============================
   FAQ
============================== */
.faq-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.faq-icon {
  font-size: 20px;
  color: var(--secondary-color);
  padding-top: 4px;
}

.faq-content .faq-question {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
}

.faq-content p {
}

/* ==============================
   Related Products
============================== */
.related-products {
  background: #f7f7f7;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-item {
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.related-item .related-item-name {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 500;
  color: black;
}

.related-item .related-item-name:hover{
  text-decoration: underline;
  color: blue;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-gray {
  background-color: #f7f7f7 !important;
}

/* ==============================
   Features Grid
============================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  padding: 25px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;

}

.feature-icon {
  margin-bottom: 10px;
}

.feature-icon i {
    
  font-size: 32px;
  color: #63ab45;
}

.feature-content .feature-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  color: #000;
  text-align: center;
}

.feature-content p {
  text-align: center;

  font-size: 15px;
}

/* ==============================
   Classic Products
============================== */
.classic-product-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 50px;
  padding: 15px;
}

.classic-product-item.reverse {
  flex-direction: row-reverse;
}

.classic-info {
  flex: 1;
}

.classic-info .module-title {
  font-size: 26px;
}

.classic-info-desc {
  margin-top: 15px;
}

.classic-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  max-height: 360px;
}

.classic-img img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  border-radius: 10px;
}

/* ==============================
   Custom Section
============================== */
.custom-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 0;
}

.custom-section p {
  margin-bottom: 15px;
}

/* ==============================
   Applications
============================== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.app-item {
  display: flex;
  gap: 15px;
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  align-items: center;
}

.app-item img {
  width: 250px;
  height: 150px;
  object-fit: contain;
  border-radius: 6px;
  object-fit:cover;
}

.app-info {
  flex: 1;
  margin-left: 15px;
;
}

.app-info .app-info-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.app-desc {
  margin: 10px 0 18px;
}

/* ==============================
   Reviews
============================== */
.reviews-section{
    background-color: #f3f7f6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  font-style: italic;
    border-top: 4px solid #63ab45;
}

.review-item .review-nickname {
  font-weight: 600;
  margin-top: 10px;
}

.stars {
  color: #ffba00;
  margin-bottom: 10px;
  font-size: 18px;
}

/* ==============================
   Guide + Form
============================== */
.guide-form-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.guide-text-col {
  flex: 1;
}

.guide-text-col .guide-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
  font-weight: 600;
}

.guide-text-col p {
  font-size: 16px;
  margin-bottom: 16px;
}

.guide-form-col {
  flex: 1;
}

.custom-inquiry-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-inquiry-form .form-title {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  color: #000;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.form-btn-container {
  width: 100%;
  text-align: center;
}

/* ==============================================
   响应式断点
================================================= */
@media (max-width: 992px) {
  .supply-wholesale-row,
  .classic-product-item,
  .classic-product-item.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .supply-wholesale-image,
  .classic-img {
    width: 100%;
  }

  .guide-form-row {
    flex-direction: column;
    gap: 35px;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-item{
    flex-direction: column;
  }

  .app-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
  }

  .reviews-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .category-hero {
    height: auto;
    min-height: 400px;
    padding: 60px 0;
  }

  .category-hero h1 {
    font-size: 24px;
  }

  .module-title {
    font-size: 24px;
  }

  .classic-info .module-title {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 480px) {
  .module-section {
    padding: 40px 0;
  }

  .category-hero h1 {
    font-size: 22px;
  }

  .category-hero p {
    font-size: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .related-grid {
    grid-template-columns: repeat(1, 1fr);
  }
   /*product*/
   .category-page .banner_overlay .section-banner-title{
   font-size: 36px !important;
   }
    .section-title h2{
   font-size: 32px;
    }
}