main {
	padding: 1rem 0;
}
		
h1 {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--color-base);
}

.product-detail {
	background: hsl(var(--hue-base) 50% 95%);
	border-radius: 8px;
	padding: 2rem;
	margin: 2rem 0;
	box-shadow: 0 2px 8px hsl(var(--hue-base) 50% 15% / 0.1);
	max-width: var(--max-width);
	margin-left: auto;
	margin-right: auto;
}

.product-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.product-info {
	flex: 1;
	width: 100%;
}

.product-title {
	font-size: 1.5rem;
	color: var(--color-base);
	margin-bottom: 0.5rem;
	text-align: center;
}

.product-specs {
	display: flex;
	justify-content: left;
	gap: 2rem;
	margin-bottom: 0.8rem;
	color: var(--color-base);
	opacity: 0.8;
	font-size: 0.95rem;
	flex-wrap: wrap;
}

.product-alcohol::before {
	content: '🍷';
	margin-right: 0.3rem;
}

.product-volume::before {
	content: '🧴';
	margin-right: 0.3rem;
}

.product-price {
	font-weight: bold;
	color: var(--color-highlight);
	font-size: 1.2rem;
	margin-bottom: 1.2rem;
	text-align: center;
}

.product-description {
	color: var(--color-base);
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 1rem;
	text-align: center;
}

.product-image-large {
	max-width: 80%;
	height: auto;
	margin-bottom: 0;
}

/* Version desktop */
@media (min-width: 768px) {
	.product-header {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		gap: 2.5rem;
	}

	.product-title,
	.product-price,
	.product-description {
		text-align: left;
	}
}
