.kuangke-hot-goods {
  padding: 80px 0 0;
  background-color: #ffffff
}

/* 标题区域 */
.kuangke-hot-goods .section-header {
  margin-bottom: 80px;
}

.kuangke-hot-goods .section-title {
  font-family: var(--title-font-family, 'Roboto', sans-serif);
  font-size: 40px;
  line-height: 1;
  color: var(--title-text-color, #000000);
  margin-bottom: 20px;
  text-align: center;
}

.kuangke-hot-goods .section-description {
  font-family: var(--font-family, 'Roboto', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.17;
  color: var(--text-color, #000000);
  text-align: center;
  margin: 0;
  max-width: 1058px;
  margin-left: auto;
  margin-right: auto;
}

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

.kuangke-hot-goods .product-card {
  background: url('product-background.png') center center/cover no-repeat;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.kuangke-hot-goods .product-card > * {
  position: relative;
  z-index: 2;
}

.kuangke-hot-goods .product-card:hover::before {
  background: rgba(239, 239, 239, 0.95);
}

/* 产品图片 */
.kuangke-hot-goods .product-image {
  flex: 1;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}

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

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

/* 产品内容 */
.kuangke-hot-goods .product-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.kuangke-hot-goods .product-title {
  font-family: var(--title-font-family, 'Roboto', sans-serif);
  font-weight: 700;
  font-size: 36px;
  line-height: normal;
  color: var(--color-primary, #1554A3);
  margin: 0;
}

/* View More 按钮 */
.kuangke-hot-goods .view-more-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kuangke-hot-goods .arrow-icon:hover{
  background-color: var(--color-primary, #1554A3);;
}

.kuangke-hot-goods .view-more-btn .arrow-icon:hover svg path{
  fill: #FFF;
}

.kuangke-hot-goods .btn-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--color-primary, #1554A3);
  font-family: var(--font-family, 'Roboto', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.17;
  transition: all 0.3s ease;
}

.kuangke-hot-goods .btn-link:hover {
  color: var(--color-primary, #1554A3);
  text-decoration: none;
}

.kuangke-hot-goods .btn-link span {
  white-space: nowrap;
}

.kuangke-hot-goods .arrow-icon {
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 10px 0px rgba(185, 209, 230, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.kuangke-hot-goods .arrow-icon svg {
  color: var(--color-primary, #1554A3);
  width: 16px;
  height: 16px;
}

/* 特殊布局调整 */
.kuangke-hot-goods .row .col-lg-6:nth-child(1),
.kuangke-hot-goods .row .col-lg-6:nth-child(2) {
  margin-bottom: 20px;
}

  .kuangke-hot-goods .container {
    max-width: 100%!important;
  }

/* 响应式设计 */
@media (max-width: 1199px) {
  .kuangke-hot-goods .section-title {
    font-size: 38px;
  }
  
  .kuangke-hot-goods .product-title {
    font-size: 28px;
  }
  
  .kuangke-hot-goods .product-card {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .kuangke-hot-goods {
    padding: 60px 0;
  }
  
  .kuangke-hot-goods .section-header {
    margin-bottom: 60px;
  }
  
  .kuangke-hot-goods .section-title {
    font-size: 32px;
  }
  
  .kuangke-hot-goods .section-description {
    font-size: 16px;
  }
  
  .kuangke-hot-goods .product-title {
    font-size: 24px;
  }
  
  .kuangke-hot-goods .product-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .kuangke-hot-goods .row .col-lg-6:nth-child(3),
  .kuangke-hot-goods .row .col-lg-6:nth-child(4) {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .kuangke-hot-goods .row .col-lg-6:nth-child(3) .product-card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .kuangke-hot-goods {
    padding: 40px 0;
  }
  
  .kuangke-hot-goods .section-header {
    margin-bottom: 40px;
  }
  
  .kuangke-hot-goods .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .kuangke-hot-goods .section-description {
    font-size: 14px;
  }
  
  .kuangke-hot-goods .product-title {
    font-size: 20px;
  }
  
  .kuangke-hot-goods .btn-link {
    font-size: 16px;
  }
  
  .kuangke-hot-goods .product-card {
    padding: 15px;
  }
  
  .kuangke-hot-goods .product-content {
    gap: 15px;
    text-align: center;
  }
  
  .kuangke-hot-goods .view-more-btn {
    justify-content: center;
  }
  
  .kuangke-hot-goods .arrow-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575px) {
  .kuangke-hot-goods .section-title {
    font-size: 24px;
  }

  .kuangke-hot-goods .product-image img{
    min-height: 100%;
  }
  
  .kuangke-hot-goods .product-title {
    font-size: 18px;
  }
  
  .kuangke-hot-goods .product-card {
    padding: 12px;
  }
  
  .kuangke-hot-goods .btn-link {
    font-size: 14px;
  }
  
  .kuangke-hot-goods .arrow-icon {
    width: 32px;
    height: 32px;
  }
  
  .kuangke-hot-goods .arrow-icon svg {
    width: 14px;
    height: 14px;
  }
} 