.gardensun-hot-goods {
  padding: 80px 0 0;
  background-color: #D1D3D3;
}

/* 标题区域 */
.gardensun-hot-goods .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.gardensun-hot-goods .title-wrapper {
  max-width: 746px;
  margin: 0 auto;
}

.gardensun-hot-goods .section-title {
  margin-bottom: 10px;
    text-align: center;
    font-size: 36px;
    padding-bottom: 15px;
    color: var(--title-text-color);
    font-weight: 700;
    line-height: 36px;
    position: relative;
}

.gardensun-hot-goods .section-description {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}

/* 分类标签 */
.gardensun-hot-goods .category-tabs {
  margin-bottom: 50px;
}

.gardensun-hot-goods .tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gardensun-hot-goods .tab-item {
  position: relative;
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.gardensun-hot-goods .tab-text {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.54;
  color: #666666;
  transition: all 0.3s ease;
}

.gardensun-hot-goods .tab-item.active .tab-text {
  color: var(--title-text-color);
  font-weight: 700;
}

.gardensun-hot-goods .tab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #666666;
  transform: scaleX(1);
  transition: all 0.3s ease;
}

.gardensun-hot-goods .tab-item.active .tab-underline {
  background-color: var(--color-primary);
  transform: scaleX(1);
}

.gardensun-hot-goods .tab-item:hover .tab-text {
  color: var(--title-text-color);
  font-weight: 700;
}

.gardensun-hot-goods .tab-item:hover .tab-underline {
  background-color: var(--color-primary);
  transform: scaleX(1);
}

/* 产品网格 */
.gardensun-hot-goods .products-grid {
  max-width: 1424px;
  margin: 0 auto;
}

.gardensun-hot-goods .category-products {
  transition: opacity 0.3s ease;
}

.gardensun-hot-goods .product-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  opacity: 1;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.gardensun-hot-goods .product-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.gardensun-hot-goods .product-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
}

.gardensun-hot-goods .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gardensun-hot-goods .product-card:hover .product-image img {
  transform: scale(1.05);
}

.gardensun-hot-goods .product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gardensun-hot-goods .product-title {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--title-text-color);
  margin: 0;
  min-height: 55px;
}

.gardensun-hot-goods .product-description {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  flex: 1;
  min-height: 80px;
}

.gardensun-hot-goods .read-more-btn {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  background-color: transparent;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
}

.gardensun-hot-goods .read-more-btn span {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  transition: all 0.3s ease;
  position: relative;
}

.gardensun-hot-goods .read-more-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-primary);
  transform: scaleX(1);
  transition: all 0.3s ease;
}

.gardensun-hot-goods .read-more-btn:hover {
  text-decoration: none;
  transform: none;
  box-shadow: none;
}

.gardensun-hot-goods .read-more-btn:hover span {
  color: var(--title-text-color);
  font-weight: 500;
}

.gardensun-hot-goods .read-more-btn:hover::after {
  background-color: var(--title-text-color);
  transform: scaleX(1.1);
}

/* 响应式设计 */
@media (max-width: 1199px) {
  .gardensun-hot-goods {
    padding: 60px 0;
  }
  
  .gardensun-hot-goods .section-title {
    font-size: 36px;
  }
  
  .gardensun-hot-goods .section-header {
    margin-bottom: 50px;
  }
  
  .gardensun-hot-goods .tabs-wrapper {
    gap: 30px;
  }
  
  .gardensun-hot-goods .tab-text {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .gardensun-hot-goods {
    padding: 50px 0;
  }
  
  .gardensun-hot-goods .section-title {
    font-size: 32px;
  }
  
  .gardensun-hot-goods .section-description {
    font-size: 16px;
  }
  
  .gardensun-hot-goods .tabs-wrapper {
    gap: 20px;
  }
  
  .gardensun-hot-goods .tab-text {
    font-size: 20px;
  }
  
  .gardensun-hot-goods .product-image {
    height: 300px;
  }
  
  .gardensun-hot-goods .product-title {
    font-size: 20px;
    min-height: 50px;
  }
  
  .gardensun-hot-goods .product-description {
    font-size: 16px;
    min-height: 70px;
  }
}

@media (max-width: 767px) {
  .gardensun-hot-goods {
    padding: 40px 0;
  }
  
  .gardensun-hot-goods .section-title {
    font-size: 28px;
  }
  
  .gardensun-hot-goods .section-header {
    margin-bottom: 40px;
  }
  
  .gardensun-hot-goods .category-tabs {
    margin-bottom: 40px;
  }
  
  .gardensun-hot-goods .tabs-wrapper {
    gap: 15px;
    justify-content: center;
  }
  
  .gardensun-hot-goods .tab-text {
    font-size: 18px;
  }
  
  .gardensun-hot-goods .product-card {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .gardensun-hot-goods .product-image {
    height: 250px;
  }
  
  .gardensun-hot-goods .product-title {
    font-size: 18px;
    min-height: 45px;
  }
  
  .gardensun-hot-goods .product-description {
    font-size: 14px;
    min-height: 60px;
  }
  
  .gardensun-hot-goods .read-more-btn span {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .gardensun-hot-goods .tabs-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .gardensun-hot-goods .tab-item {
    width: 170px;
    text-align: center;
  }
} 