/*
 * Hide the add to cart button on the category page
  when the customization is required
 */
.dp-required .add_to_cart_button {
	display: none;
}

/*
 * Style for the customize button that is displayed in the category page
 */
.dp-customize a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .2em;
	font-size: 1rem;
}

/*
 * Style for hiding the product images when the we have a custom preview
 */
body.dp-has-previews .product-images-container {
	display: none;
}
