/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 26 2026 | 18:27:15 */
.shopwp-related-products .wps-items {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.shopwp-related-products .wps-products-title {
	font-size: 18px !important;
	font-weight: 500 !important;
}

.swp-price {
	color: #000 !important;
	font-weight: 400 !important;
}

.swp-product-description {
	margin-top: 20px !important;
}

.shopwp-related-products .wps-btn-secondary {
	display: none !important;
}

@media (max-width: 1024px) {
    .shopwp-related-products .wps-items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .shopwp-related-products .wps-items {
        grid-template-columns: 1fr !important;
    }
}