FLASH
âš¡
SALE
/* Container for the 3-Product Row */
.fs-responsive-grid .product-items,
.fs-responsive-grid .grid {
display: flex !important;
flex-wrap: wrap !important;
justify-content: center !important;
margin: 0 auto !important;
width: 100% !important;
max-width: 1200px !important;
list-style: none !important;
padding: 0 !important;
gap: 20px !important; /* Spacing between items */
}
/* Individual Product Card Styling - Desktop */
.fs-responsive-grid .product-item {
/* (100% / 3 items) - (Total gap space / 3 items) */
flex: 0 1 calc(33.333% - 14px) !important;
min-width: 250px !important; /* Prevents them from getting too skinny */
max-width: 350px !important; /* Prevents them from getting too fat */
margin: 0 !important;
text-align: center !important;
display: flex !important;
flex-direction: column !important;
}
/* Mobile Specific: Stack them 1-by-1 */
@media (max-width: 1023px) {
.fs-responsive-grid .product-items,
.fs-responsive-grid .grid {
flex-direction: column !important;
align-items: center !important;
gap: 30px !important;
}
.fs-responsive-grid .product-item {
flex: 1 1 auto !important;
width: 100% !important;
max-width: 320px !important;
}
}
