.itwa-s78Ui-product-list {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap onto the next line */
    margin: 0 -10px; /* Adjusts spacing between rows */
}

.itwa-s78Ui-product-item {
    font-family: "Josefin Sans", Sans-serif;
    flex: 0 1 calc(33.333% - 20px); /* Set width to one-third, accounting for margins */
    margin: 10px; /* Spacing around each item */
    box-sizing: border-box; /* Ensures padding and border are included in width */
    transition: transform 0.2s; /* Smooth transition for hover effect */
}
.itwa-s78Ui-product-item a {
    color: #111;
    text-decoration: none !important;
}

.itwa-s78Ui-product-item:hover {
    transform: scale(1.05); /* Slightly scale up on hover */
}

.itwa-s78Ui-image {
    text-align: center; /* Center the image and content */
}

.itwa-s78Ui-image img {
    max-width: 250px;
}

.itwa-s78Ui-product-info {
    width: 70%;
    min-width: 250px;
    margin: 0 auto;
    text-align: center;
}
.itwa-s78Ui-title {
    font-size: 1.05em;
    margin: 10px 0 5px;
    font-style: italic;
    font-weight: 400;
}

.itwa-s78Ui-price {
    font-weight: 500;
    color: #ff5858;
    margin-bottom: 10px;
}

.itwa-s78Ui-excerpt {
    font-size: 0.8em;
    line-height: 1.2em;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .itwa-s78Ui-product-item {
        flex: 0 1 calc(50% - 20px); /* Two items per row on smaller screens */
    }
	.itwa-s78Ui-product-info {
		width: 90%;
		min-width: inherit;
	}
	.itwa-s78Ui-title {
		font-size: 0.95em;
	}
	.itwa-s78Ui-excerpt {
		font-size: 0.7em;
    	line-height: 1.1em;
	}
}

@media (max-width: 200px) {
    .itwa-s78Ui-product-item {
        flex: 0 1 calc(100% - 20px); /* One item per row on very small screens */
    }
}