.product {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 700px;
}

.product .content {
	display: flex;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px;
	border: 1px solid var(--revenna-gray-light);
}

.product-info {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.product-info .product-image {
	min-width: 600px;
	height: 600px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.product-details {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;

	justify-content: center;
	padding: 0 50px;
	border-left: 0.3px solid var(--revenna-gray-light);
}

.product-details .title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 35px;
}

.detail-item {
	width: 100%;
	display: flex;
	flex-direction: row;
	border-bottom: 2px solid var(--revenna-gray-dark);
	padding-bottom: 10px;
	margin-bottom: 25px;
	align-items: center;
}

.detail-item .icon {
	width: 28px;
	height: 28px;
	margin-right: 10px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.detail-item .detail-title {
	width: 30%;
	font-weight: 300;
}

.detail-item .detail {
	width: 70%;
	font-weight: 600;
	text-align: right;
}

.product-details .buttons {
	width: 100%;
	margin-top: 10px;
}

.product-details .buttons a {
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	padding: 12px 0;
}

.icon-category {
	background-image: url(../assets/svgs/category.svg);
}
.icon-info {
	background-image: url(../assets/svgs/info.svg);
}
.icon-code {
	background-image: url(../assets/svgs/code.svg);
}
.icon-seasons {
	background-image: url(../assets/svgs/seasons.svg);
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
	.wrapper {
		max-width: 100%;
		overflow: hidden;
	}
	.product,
	.product .content,
	.product .content .product-info {
		flex-direction: column;
		border: 0;
	}

	.product .content {
		padding: 0;
	}

	.product-info .product-image {
		width: 100%;
		height: 300px;
	}

	.product-details {
		width: 90%;
		height: auto;
		padding: 0;
		border: 0;
	}

	.product-details .buttons {
		margin-top: 20px;
		margin-bottom: 50px;
	}
}
