.kuangke-hot-goods {
  padding: 40px 0 0;
  background-color: #ffffff;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.kuangke-hot-goods .section-header {
  margin-bottom: 80px;
}

.kuangke-hot-goods .section-title {
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4 !important;
  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: var(--subtitle-font-weight);
  font-size: var(--subtitle-font-size);
  line-height: 1.17;
  color: var(--text-color, #000000);
  text-align: center;
  margin: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.kuangke-hot-goods .products-grid {
  max-width: 1440px; 
  margin: 0 auto;    
  padding: 0 15px;  
}

.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;
  height: 100%;
}

.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: var(--font-weight-700);
  font-size: var(--font-size-lg);
  line-height: normal;
  color: var(--color-primary, #1554a3);
  margin: 0;
}

.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: var(--font-weight-500);
  font-size: var(--font-size-md);
  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: 1440px !important;
  margin: 0 auto !important; 
  padding-left: 15px !important; 
  padding-right: 15px !important;
}

@media (max-width: 1440px) {
  .kuangke-hot-goods .container,
  .kuangke-hot-goods .products-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

  .kuangke-hot-goods .product-title {
    /* font-size: 28px; */
  }

  .kuangke-hot-goods .product-card {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .kuangke-hot-goods {
    padding: 35px 0;
  }

  .kuangke-hot-goods .section-header {
    margin-bottom: 60px;
  }

  .kuangke-hot-goods .section-title {
    font-size: 30px; 
  }

  .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: 30px 0;
  }

  .kuangke-hot-goods .section-header {
    margin-bottom: 40px;
  }

  .kuangke-hot-goods .section-title {
    font-size: 26px; 
    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;
  }
  .kuangke-hot-goods .row .col-lg-6:nth-child(3) {
    margin-bottom: 20px;
  }
}

@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;
  }
}