.product-slider {
  width: 100%;
}

/* Section Title */
.product-slider h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
}

/* RTL title alignment */
:dir(rtl) .product-slider h2 {
  text-align: right;
}

/* Products Grid */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Product Card */
.product-card-builder {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #f1f1f1;
}

/* Hover lift */
.product-card-builder:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Image */
.product-card-builder img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Product Name */
.product-card-builder h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 6px 0 4px;
  line-height: 1.4;
  min-height: 38px;
}

/* Price */
.product-card-builder p {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}


/* ===== Desktop ===== */
@media (min-width: 1024px) {
  .product-slider h2 {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .products {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .product-card-builder h3 {
    font-size: 16px;
  }

  .product-card-builder p {
    font-size: 16px;
  }
}
