/* ---------- Our Products ---------- */
.kspl-products{
  padding: 90px 0;
  background: var(--kspl-black-2);
}
.kspl-products .kspl-section__head{
  text-align: center;
  max-width: 660px;
  margin: 0 auto 50px;
}
.kspl-products .kspl-section__head h2{
  font-size: clamp(26px, 3vw, 34px);
  color: var(--kspl-white);
  margin: 0 0 12px;
}
.kspl-products .kspl-section__head p{
  color: #cfc7ba;
  line-height: 1.6;
}

/* Group heading + divider */
.kspl-products__group-title{
  color: var(--kspl-gold-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 22px;
  text-align: center;
}
.kspl-products__group-title:not(:first-of-type){
  margin-top: 60px;
}

.kspl-products__divider{
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 240px;
  margin: 0 auto 32px;
}
.kspl-products__divider::before,
.kspl-products__divider::after{
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,62,0.5), transparent);
}
.kspl-products__divider span{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kspl-gold-light);
  flex-shrink: 0;
}

/* Grids */
.kspl-products__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.kspl-products__grid--three{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.kspl-products__grid--four{
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Cards */
.kspl-product-card{
  background: var(--kspl-black);
  border: 1px solid rgba(201,150,62,0.2);
  border-radius: var(--kspl-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.kspl-product-card:hover{
  transform: translateY(-4px);
  border-color: rgba(201,150,62,0.5);
}
.kspl-product-card--alt{
  background: rgba(201,150,62,0.06);
}
.kspl-product-card__image{
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--kspl-black-2);
}
.kspl-product-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.kspl-product-card__tag{
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--kspl-black);
  background: linear-gradient(135deg, var(--kspl-gold-light), var(--kspl-gold));
  padding: 5px 12px;
  border-radius: 999px;
}
.kspl-product-card__body{
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.kspl-product-card__body h4{
  color: var(--kspl-white);
  font-size: 18px;
  margin: 0 0 10px;
}
.kspl-product-card__body p{
  color: #b9b1a4;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}
.kspl-product-card__body a{
  color: var(--kspl-flame-1);
  font-size: 13.5px;
  font-weight: 600;
}
.kspl-product-card__body a:hover{ color: var(--kspl-gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 992px){
  .kspl-products{ padding: 70px 0; }
  .kspl-products__grid,
  .kspl-products__grid--three,
  .kspl-products__grid--four{
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 600px){
  .kspl-products{ padding: 50px 0; }
  .kspl-products .kspl-section__head{ margin-bottom: 36px; }
  .kspl-products__grid,
  .kspl-products__grid--three,
  .kspl-products__grid--four{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .kspl-products__group-title:not(:first-of-type){
    margin-top: 40px;
  }
  .kspl-product-card__body{
    padding: 18px 18px 20px;
  }
  .kspl-product-card__body h4{
    font-size: 16.5px;
  }
}

@media (max-width: 380px){
  .kspl-products__image{
    aspect-ratio: 16 / 10;
  }
}