
/* TOODE */
.product-page {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

@media only screen and (max-width: 550px) {
	.product-page {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

#product-images {
	display: flex;
	flex-grow: 1;
	width: 100%;
	height: 100%;
	min-height: 200px;
	flex-flow: column;
	aspect-ratio: 1/1;
}

#image-carousel {
	display: flex;
	max-height: 150px;
	margin-top: 1rem;
	overflow-x: auto;
	width: 100%;
}

.product-in-stock {
	color: green;
}

.product-out-stock {
	color: red;
}

.add-to-cart-button {
	padding: .5rem;
	cursor: pointer;
	border-radius: 0;
	margin: 1rem 0;
	width: 20%;
	min-width: fit-content;
}

.add-to-cart-button:disabled {
	color:black;
	background-color: #ddd;
	border: 2px solid #ddd;
	cursor: not-allowed;
}