/* Add custom CSS styles below */ 
@media only screen and (max-width:600px) {
	.s-products-slider-card {
		max-width: 160px
	}
}

@media only screen and (min-width:600px) {
	.lg\:grid-cols-6 {
		grid-template-columns: repeat(3, minmax(0, 1fr))
	}

	.lg\:col-span-1 {
		grid-column: span 1/span 1
	}
}
/* ضبط عنوان المنتج: سطرين + تنسيق + توسيط */
.s-product-card-content-title,
.s-product-card-content-title a {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* السماح بلف النص لسطرين فقط */
.s-product-card-content-title a {
    white-space: normal !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* عدد الأسطر */
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 80%;
    color: var(--one);
}