/* CSS */

.products {
	margin: 4rem 8rem;
	color: #F2F2F2;
}

.products h2 {
	font-size: 2.5rem;
	color: #D72638;
	font-family: 'Bebas Neue', sans-serif;
	margin-bottom: 2rem;
}



.product-row {
	display: flex;
	gap: 2rem;
	margin-bottom: 3rem;
	border-bottom: 2px solid #222;
	padding-bottom: 2rem;
	align-items: flex-start;
	flex-wrap: wrap;
}



.product-row img {
    max-width: 330px;

	border-radius: 10px;
	box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.2);
}

.product-info {
	flex: 1;
}


@media screen and (max-width: 900px) {
	.product-row, .price {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.product-row img {
		max-width: 100%;
		height: auto;
	}

	.product-info {
		width: 100%;
	}

	.products {
		text-align: center;

	}
}


.product-info h3 {
	margin: 0;
	font-size: 1.5rem;
	font-family: 'Bebas Neue', sans-serif;
}

.product-info p {
	color: #ccc;
	margin: 0.5rem 0 1rem;
	font-family: 'Open Sans', sans-serif;

}
.product-info ul{
	color: #ccc;
	font-family: 'Open Sans', sans-serif;
	
}

.product-info li {
	margin-bottom: 7px;
}

.price {
	font-size: 1.3rem;
	color: #F2F2F2;
	font-weight: bold;
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: 1.5px;
	margin-top: 10rem;
	margin-right: 1.5rem;
}


.add-to-cart-btn {
	padding: 0.6rem 1.4rem;
	background-color: #D72638;
	color: #F2F2F2;
	font-weight: bold;
	border-radius: 10px;
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
	background-color: #a81e2b;
}

