/*
 * Cantina Volverino - theme styles on top of Bootstrap 5.
 * Premium monochrome branding: white, light gray, sharp black edges,
 * serif display headings, uppercase letter-spaced labels.
 */

@font-face {
	font-family: "Brightshine Script";
	src:
		url("../fonts/brightshine-script.otf") format("opentype"),
		url("../fonts/brightshine-script.ttf") format("truetype");
	font-display: swap;
	font-style: normal;
	font-weight: 400;
}

:root {
	--ink: #171713;
	--ink-soft: #46463f;
	--paper: #fbfaf6;
	--surface: #f1eee6;
	--surface-deep: #e4dfd3;
	--line: #d9d4c8;
	--muted: #747269;
	--wine: #66272b;
	--sage: #3f4d43;
	--gold: #b8a47d;
	--shadow-sm: 0 12px 32px rgba(23, 23, 19, 0.06);
	--shadow-md: 0 24px 64px rgba(23, 23, 19, 0.1);

	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-logo: "Brightshine Script", "Cormorant Garamond", Georgia, serif;

	--bs-body-font-family: var(--font-body);
	--bs-body-color: var(--ink-soft);
	--bs-body-bg: var(--paper);
	--bs-link-color: var(--ink);
	--bs-link-hover-color: #000;

	/* Sharp edges everywhere */
	--bs-border-radius: 0;
	--bs-border-radius-sm: 0;
	--bs-border-radius-lg: 0;
	--bs-border-radius-xl: 0;
	--bs-border-color: var(--line);
}

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, .section-heading, .site-brand, .hero__title {
	font-family: var(--font-display);
	color: var(--ink);
}

.section-heading {
	font-weight: 600;
	letter-spacing: 0.01em;
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.btn,
.card,
.form-control,
.dropdown-menu,
img {
	border-radius: 0 !important;
}

.skip-link {
	position: absolute;
	z-index: 2000;
	padding: 0.5rem 1rem;
	background: var(--ink);
	color: #fff;
}

/* Label / eyebrow style: small caps with wide tracking */
.section-eyebrow,
.text-label {
	letter-spacing: 0.3em;
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--muted);
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.section-eyebrow--light {
	color: rgba(255, 255, 255, 0.75);
}

/* Header */
.site-header {
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(8px);
}

.site-header .navbar {
	padding-top: 0.9rem;
	padding-bottom: 0.9rem;
}

.site-brand {
	font-family: var(--font-logo);
	font-size: 1.5rem;
	font-weight: 400;
	-webkit-text-stroke: 0.5px currentColor;
	paint-order: stroke fill;
	color: var(--ink);
	letter-spacing: 0;
}

.site-brand span {
	font-style: normal;
	font-weight: 400;
}

.custom-logo-link {
	display: inline-block;
	width: 360px;
	max-width: calc(100% - 56px);
	line-height: 0;
}

.custom-logo {
	display: block;
	width: 100%;
	height: auto;
}

.navbar-nav .nav-link {
	color: var(--ink);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	padding-left: 1rem;
	padding-right: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
	color: #000;
	text-decoration: underline;
	text-underline-offset: 0.5em;
	text-decoration-thickness: 1px;
}

.navbar-nav .dropdown-menu {
	border: 1px solid var(--line);
	box-shadow: 0 14px 34px rgba(32, 35, 43, 0.08);
	padding: 0.5rem 0;
}

.navbar-nav .dropdown-item {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ink);
	padding: 0.6rem 1.25rem;
	background: transparent;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:focus-visible,
.navbar-nav .dropdown-item:active,
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item.active:hover,
.navbar-nav .dropdown-item.active:focus {
	background: var(--surface);
	color: #000;
	outline: none;
}

/* Buttons: sharp black, uppercase, tracked */
.btn-wine,
.btn-dark {
	--bs-btn-bg: var(--ink);
	--bs-btn-border-color: var(--ink);
	--bs-btn-color: #fff;
	--bs-btn-hover-bg: #000;
	--bs-btn-hover-border-color: #000;
	--bs-btn-hover-color: #fff;
	--bs-btn-active-bg: #000;
	--bs-btn-active-border-color: #000;
	--bs-btn-active-color: #fff;
}

.btn-outline-wine,
.btn-outline-dark,
.btn-outline-light {
	--bs-btn-color: var(--ink);
	--bs-btn-border-color: var(--ink);
	--bs-btn-hover-bg: var(--ink);
	--bs-btn-hover-border-color: var(--ink);
	--bs-btn-hover-color: #fff;
	--bs-btn-active-bg: #000;
	--bs-btn-active-border-color: #000;
	--bs-btn-active-color: #fff;
}

.btn-wine,
.btn-dark,
.btn-outline-wine,
.btn-outline-dark,
.btn-outline-light,
.btn-light {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	padding: 0.85rem 1.9rem;
}

.btn-lg {
	font-size: 0.8rem;
	padding: 1rem 2.4rem;
}

.cart-link {
	white-space: nowrap;
}

.cart-badge {
	background: var(--ink);
	color: #fff;
	border-radius: 0;
}

/* Hero */
.home-hero {
	min-height: 78vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	isolation: isolate;
	padding: 5rem 0 9rem;
	color: #fff;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(10, 12, 16, 0.76) 0%, rgba(10, 12, 16, 0.38) 48%, rgba(10, 12, 16, 0.04) 76%),
		linear-gradient(0deg, rgba(10, 12, 16, 0.48) 0%, transparent 42%);
}

.home-hero__content {
	max-width: 660px;
	padding-left: 1.5rem;
	border-left: 1px solid rgba(255, 255, 255, 0.65);
}

.home-hero__title {
	margin: 0;
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 5.8rem);
	font-weight: 500;
	line-height: 0.94;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.home-hero__text {
	max-width: 55ch;
	margin: 1.5rem 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.7;
}

.home-hero .btn-outline-light {
	--bs-btn-color: #fff;
	--bs-btn-border-color: rgba(255, 255, 255, 0.78);
	--bs-btn-hover-color: var(--ink);
	--bs-btn-hover-bg: #fff;
	--bs-btn-hover-border-color: #fff;
}

.hero {
	min-height: 50vh;
	background: var(--ink);
	color: #fff;
}

.hero__eyebrow {
	letter-spacing: 0.3em;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.7);
}

.hero__title {
	font-size: clamp(2.4rem, 5.5vw, 4rem);
	color: #fff;
	font-weight: 600;
	line-height: 1.08;
}

.hero__lead {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 46ch;
}

/* Homepage: wines grid (Bootstrap cards) */
.home-wines {
	position: relative;
	z-index: 2;
	margin-top: -10.5rem;
	padding: 0 0 5rem;
	background: linear-gradient(to bottom, transparent 0 10.5rem, var(--surface) 10.5rem 100%);
}

.home-wines__heading {
	width: min(100%, 430px);
	margin: 0 auto 3rem;
	padding: 1.65rem 2rem 1.8rem;
	background: var(--paper);
	border: 1px solid var(--line);
	box-shadow: 0 18px 40px rgba(32, 35, 43, 0.08);
}

.home-wine.card {
	border: 1px solid var(--line);
	background: var(--paper);
	box-shadow: 0 18px 40px rgba(32, 35, 43, 0.05);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-wine.card:hover {
	box-shadow: 0 24px 48px rgba(32, 35, 43, 0.1);
	transform: translateY(-2px);
}

.home-wine__media {
	background: #fafafa;
	padding: 2.5rem 1.5rem;
}

.home-wine__media img {
	max-height: 380px;
	width: auto;
	max-width: 100%;
}

.home-wine .card-title a {
	color: var(--ink);
	text-decoration: none;
}

.home-wine .card-title a:hover {
	text-decoration: underline;
	text-underline-offset: 0.35em;
}

.home-wine__price-row {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 0.85rem 0;
	margin-bottom: 1.5rem;
}

.home-wine__price {
	color: var(--ink);
	font-weight: 600;
	font-size: 1rem;
	margin: 0;
}

.home-wine__description {
	font-size: 0.95rem;
	color: var(--ink-soft);
}

.home-wine__description h2,
.home-wine__description h3 {
	font-size: 1.1rem;
	margin-top: 1.5rem;
	letter-spacing: 0.02em;
}

@media (max-width: 767.98px) {
	.custom-logo-link {
		width: 260px;
		max-width: calc(100% - 56px);
	}

	.custom-logo {
		max-width: 100%;
		height: auto;
	}

	.home-hero {
		min-height: 72vh;
		padding-bottom: 7rem;
		background-position: 57% center;
	}

	.home-hero__overlay {
		background:
			linear-gradient(90deg, rgba(10, 12, 16, 0.78), rgba(10, 12, 16, 0.22)),
			linear-gradient(0deg, rgba(10, 12, 16, 0.58), transparent 55%);
	}

	.home-hero__content {
		padding-left: 1rem;
	}

	.home-hero__title {
		font-size: clamp(2.65rem, 13vw, 4rem);
	}

	.home-hero .btn {
		flex: 1 1 100%;
	}

	.home-wines {
		margin-top: -5.5rem;
		background: linear-gradient(to bottom, transparent 0 5.5rem, var(--surface) 5.5rem 100%);
	}

	.home-wines__heading {
		margin-bottom: 2rem;
	}
}

/* Homepage: history / featured split sections */
.home-history__body,
.home-featured__body {
	padding: 3rem 1.5rem;
}

@media (min-width: 992px) {
	.home-history__body,
	.home-featured__body {
		padding: 4rem 15% 4rem 3.5rem;
	}
}

.home-history__image {
	object-fit: cover;
	height: 100%;
}

/* Homepage: current release banner */
.home-release__banner {
	background-repeat: repeat;
	background-position: 0 0;
	min-height: 420px;
	padding: 4rem 2rem;
}

.home-release__banner-inner {
	max-width: 480px;
}

.home-featured {
	background: var(--surface);
}

.home-featured__image {
	max-height: 560px;
	width: auto;
}

/* Homepage: estate banner */
.home-estate {
	min-height: 60vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.home-estate::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 22, 28, 0.45);
}

.home-estate .container {
	position: relative;
}

.home-estate .section-heading {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	color: #fff;
}

/* Content */
.container--narrow {
	max-width: 760px;
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.front-content {
	background: var(--surface);
}

/* Product cards (archive/related) */
.product-card {
	background: var(--paper);
	border: 1px solid var(--line) !important;
}

.product-card .card-img-top {
	aspect-ratio: 4 / 5;
	object-fit: contain;
	background: #fafafa;
	padding: 1.5rem;
}

.product-card__price {
	color: var(--ink);
	font-weight: 600;
}

.product-card .card-title a {
	color: var(--ink);
}

.product-card .card-title a:hover {
	color: #000;
}

/* WooCommerce basics */
.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
	background: var(--ink);
	color: #fff;
	border-radius: 0;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	padding: 0.85rem 1.9rem;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
	background: #000;
	color: #fff;
}

.woocommerce div.product p.price,
.woocommerce ul.products li.product .price {
	color: var(--ink);
	font-weight: 600;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 1.5rem;
}

/* Premium wine archive */
.shop-archive {
	background: var(--surface);
}

.shop-archive__hero {
	padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.shop-archive__title {
	margin: 0;
	font-size: clamp(3.7rem, 9vw, 7.5rem);
	font-weight: 500;
	line-height: 0.9;
	letter-spacing: -0.035em;
}

.shop-archive__intro {
	max-width: 36ch;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.7;
}

.shop-archive__catalog {
	padding: 3rem 0 6rem;
}

.shop-filters {
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}

.shop-filters .btn {
	padding: 0.7rem 1.25rem;
}

.shop-toolbar {
	padding: 1.5rem 0 2.5rem;
	color: var(--muted);
	font-size: 0.85rem;
}

.shop-toolbar p {
	margin: 0;
}

.shop-toolbar .woocommerce-ordering {
	margin: 0;
}

.shop-toolbar select {
	min-width: 220px;
	padding: 0.75rem 2.5rem 0.75rem 1rem;
	background-color: var(--paper);
	border: 1px solid var(--line);
	border-radius: 0;
	color: var(--ink);
	font-size: 0.8rem;
}

.wine-catalog-card {
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--paper);
	box-shadow: 0 16px 40px rgba(32, 35, 43, 0.05);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.wine-catalog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 50px rgba(32, 35, 43, 0.1);
}

.wine-catalog-card__media {
	min-height: 430px;
	padding: 2.5rem;
	background: #fafafa;
	border-bottom: 1px solid var(--line);
}

.wine-catalog-card__media img {
	width: auto;
	max-height: 350px;
}

.wine-catalog-card .card-title {
	font-size: 1.85rem;
	line-height: 1.05;
}

.wine-catalog-card .card-title a,
.related-wine .card-title a {
	color: var(--ink);
	text-decoration: none;
}

.wine-catalog-card .card-title a:hover,
.related-wine .card-title a:hover {
	text-decoration: underline;
	text-underline-offset: 0.3em;
}

.wine-catalog-card__price,
.related-wine__price {
	color: var(--ink);
	font-weight: 600;
}

.wine-catalog-card__summary {
	position: relative;
	max-height: 8.2rem;
	overflow: hidden;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

.wine-catalog-card__summary::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2.75rem;
	background: linear-gradient(transparent, var(--paper));
	pointer-events: none;
}

.wine-catalog-card__summary p {
	margin-bottom: 0.75rem;
}

.wine-catalog-card__summary h2,
.wine-catalog-card__summary h3 {
	margin: 1rem 0 0.5rem;
	font-size: 1.1rem;
}

.shop-pagination {
	margin-top: 4rem;
}

.shop-pagination .page-numbers {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	padding: 0;
	border: 0 !important;
}

.shop-pagination .page-numbers li {
	border: 0 !important;
}

.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--line) !important;
	background: var(--paper);
	color: var(--ink);
}

.shop-pagination .page-numbers .current,
.shop-pagination .page-numbers a:hover {
	background: var(--ink) !important;
	color: #fff !important;
}

/* Premium single wine */
.single-wine {
	padding: 0 0 clamp(4.5rem, 8vw, 8rem);
	background: var(--paper);
}

.single-wine__breadcrumb {
	padding: 1.15rem 0;
	border-bottom: 1px solid var(--line);
}

.single-wine__breadcrumb .breadcrumb {
	gap: 0.15rem;
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.single-wine__breadcrumb a {
	color: var(--muted);
	text-decoration: none;
}

.single-wine__breadcrumb a:hover {
	color: var(--ink);
}

.single-wine__hero {
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid var(--line);
	background: var(--paper);
	box-shadow: 0 24px 70px rgba(30, 27, 21, 0.06);
}

.single-wine__gallery {
	position: relative;
	isolation: isolate;
	min-height: 650px;
	overflow: hidden;
	padding: clamp(3rem, 6vw, 5.5rem);
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0) 54%),
		linear-gradient(145deg, #eeeae1 0%, #f7f4ed 52%, #e9e4da 100%);
}

.single-wine__gallery::before {
	position: absolute;
	z-index: -1;
	inset: clamp(1rem, 2.2vw, 2rem);
	border: 1px solid rgba(37, 34, 28, 0.09);
	content: "";
}

.single-wine__gallery::after {
	position: absolute;
	z-index: -1;
	bottom: 8%;
	left: 50%;
	width: min(56%, 330px);
	height: 34px;
	background: rgba(35, 31, 25, 0.13);
	border-radius: 50% !important;
	filter: blur(18px);
	content: "";
	transform: translateX(-50%);
}

.single-wine__image-stage {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 500px;
	align-items: center;
	justify-content: center;
}

.single-wine__image {
	position: relative;
	width: auto;
	max-height: 555px;
	filter: drop-shadow(0 28px 24px rgba(32, 35, 43, 0.16));
	transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.single-wine__gallery:hover .single-wine__image {
	transform: translateY(-6px);
}

.single-wine__summary {
	padding: clamp(2.75rem, 5.3vw, 5rem);
	border-left: 1px solid var(--line);
	background: var(--paper);
}

.single-wine__identity {
	max-width: 36rem;
}

.single-wine__title {
	margin-bottom: 1.5rem;
	font-size: clamp(3.4rem, 5.5vw, 5.35rem);
	font-weight: 500;
	line-height: 0.92;
	letter-spacing: -0.04em;
}

.single-wine__lead {
	max-width: 34rem;
	margin: 0;
	color: var(--ink-soft);
	font-size: 1rem;
	line-height: 1.7;
}

.single-wine__purchase {
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

.single-wine__price {
	color: var(--ink);
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3vw, 2.35rem);
	font-weight: 500;
	line-height: 1;
}

.single-wine__availability {
	margin-bottom: 0.25rem;
	padding: 0.55rem 0.75rem;
	background: #f1f4ed;
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.single-wine__status-dot {
	width: 7px;
	height: 7px;
	background: #9a9da3;
	border-radius: 50% !important;
}

.single-wine__status-dot.is-available {
	background: #3e754d;
}

.single-wine__cart {
	margin-top: 1.35rem;
}

.single-wine__cart .stock {
	display: none;
}

.single-wine__cart form.cart {
	display: flex;
	gap: 0.65rem;
	margin: 0 !important;
}

.single-wine__cart .quantity {
	float: none !important;
	margin: 0 !important;
}

.single-wine__cart .qty {
	width: 72px !important;
	height: 100%;
	min-height: 56px;
	padding: 0.75rem;
	border: 1px solid var(--ink);
	background: var(--paper);
	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
}

.single-wine__cart .single_add_to_cart_button {
	flex: 1;
	float: none !important;
	min-height: 56px;
	border-color: var(--ink) !important;
	background: var(--ink) !important;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	transition:
		background-color 180ms ease,
		color 180ms ease;
}

.single-wine__cart .single_add_to_cart_button:hover,
.single-wine__cart .single_add_to_cart_button:focus-visible {
	background: #34372f !important;
}

.single-wine__categories {
	margin-top: 1.35rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
}

.wine-category-chip {
	padding: 0.42rem 0.65rem;
	background: var(--surface);
	color: var(--ink);
	font-size: 0.64rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	text-decoration: none;
	transition:
		background-color 180ms ease,
		color 180ms ease;
}

.wine-category-chip:hover {
	background: var(--ink);
	color: #fff;
}

.single-wine__assurances {
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
	background: var(--ink);
	color: rgba(255, 255, 255, 0.88);
}

.assurance-item {
	display: flex;
	min-height: 78px;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	padding: 1.2rem 1.35rem;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
	text-align: left;
	font-size: 0.66rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	line-height: 1.45;
}

.assurance-item__icon {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.35;
	opacity: 0.8;
}

.assurance-item--shipping {
	padding-right: 0.9rem;
	padding-left: 0.9rem;
	letter-spacing: 0.08em;
}

.single-wine__assurances [class*="col-"]:last-child .assurance-item {
	border-right: 0;
}

.single-wine__details {
	padding: clamp(4.5rem, 8vw, 7.5rem) clamp(0rem, 2vw, 2rem);
	border-bottom: 1px solid var(--line);
}

.single-wine__details .section-heading {
	max-width: 31rem;
	font-size: clamp(2.6rem, 4.3vw, 4rem);
	line-height: 0.98;
}

.single-wine__story,
.single-wine__taste {
	max-width: 37rem;
	color: var(--ink-soft);
	line-height: 1.8;
}

.single-wine__story {
	font-size: 1rem;
}

.single-wine__taste {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	line-height: 1.55;
}

.single-wine__related {
	padding-top: clamp(4rem, 8vw, 7rem);
}

.related-wine {
	border: 1px solid var(--line);
	box-shadow: 0 16px 45px rgba(30, 27, 21, 0.04);
	transition:
		box-shadow 240ms ease,
		transform 240ms ease;
}

.related-wine:hover {
	box-shadow: 0 22px 55px rgba(30, 27, 21, 0.09);
	transform: translateY(-5px);
}

.related-wine__media {
	min-height: 330px;
	padding: 2rem;
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}

.related-wine__media img {
	width: auto;
	max-height: 280px;
	transition: transform 300ms ease;
}

.related-wine:hover .related-wine__media img {
	transform: scale(1.025);
}

@media (max-width: 991.98px) {
	.single-wine__summary {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.single-wine__gallery {
		min-height: 580px;
	}

	.single-wine__image-stage {
		min-height: 480px;
	}

	.single-wine__image {
		max-height: 500px;
	}
}

@media (max-width: 767.98px) {
	.shop-archive__catalog {
		padding-top: 2rem;
	}

	.wine-catalog-card__media {
		min-height: 360px;
	}

	.single-wine__hero {
		margin-top: 1.5rem;
	}

	.single-wine__gallery {
		min-height: 455px;
		padding: 2rem;
	}

	.single-wine__gallery::before {
		inset: 0.85rem;
	}

	.single-wine__gallery::after {
		bottom: 7%;
		width: 48%;
		height: 25px;
	}

	.single-wine__image-stage {
		min-height: 385px;
	}

	.single-wine__image {
		max-height: 390px;
	}

	.single-wine__summary {
		padding: 2.25rem 1.35rem 2.5rem;
	}

	.single-wine__title {
		margin-bottom: 1.25rem;
		font-size: clamp(3rem, 15vw, 4.15rem);
	}

	.single-wine__lead {
		font-size: 0.95rem;
	}

	.single-wine__purchase {
		margin-top: 2rem;
	}

	.single-wine__cart form.cart {
		flex-wrap: nowrap;
	}

	.single-wine__cart .single_add_to_cart_button {
		min-width: 0;
	}

	.assurance-item {
		min-height: 68px;
		justify-content: flex-start;
		padding: 1rem 1.25rem;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}

	.single-wine__assurances [class*="col-"]:last-child .assurance-item {
		border-bottom: 0;
	}

	.single-wine__details {
		padding: 4.25rem 0;
	}

	.single-wine__details > .row {
		margin-right: 0;
		margin-left: 0;
	}

	.single-wine__related .btn-outline-dark {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.single-wine__image,
	.related-wine,
	.related-wine__media img {
		transition: none;
	}

	.single-wine__gallery:hover .single-wine__image,
	.related-wine:hover,
	.related-wine:hover .related-wine__media img {
		transform: none;
	}
}

/* Contact page */
.contact-page {
	background: var(--paper);
}

.contact-hero {
	position: relative;
	isolation: isolate;
	min-height: 58vh;
	padding: 8rem 0 6rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}

.contact-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(10, 12, 16, 0.84) 0%, rgba(10, 12, 16, 0.32) 58%, rgba(10, 12, 16, 0.12) 100%),
		linear-gradient(0deg, rgba(10, 12, 16, 0.38), transparent 58%);
}

.contact-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(4.5rem, 9vw, 8rem);
	font-weight: 500;
	line-height: 0.88;
	letter-spacing: -0.04em;
}

.contact-hero__intro {
	max-width: 50ch;
	margin: 1.75rem 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.7;
}

.contact-connect {
	padding: clamp(4rem, 8vw, 8rem) 0;
	background: var(--paper);
}

.contact-connect__grid {
	border: 1px solid var(--line);
}

.contact-sidebar {
	display: flex;
	flex-direction: column;
	background: var(--ink);
	color: rgba(255, 255, 255, 0.76);
}

.contact-location {
	padding: clamp(2.5rem, 4vw, 4rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-sidebar .section-eyebrow {
	color: rgba(255, 255, 255, 0.52);
}

.contact-sidebar__title {
	max-width: 10ch;
	margin-bottom: 1.75rem;
	color: #fff;
	font-size: clamp(2.4rem, 4vw, 3.7rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.025em;
}

.contact-location__address {
	max-width: 25ch;
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-style: normal;
	line-height: 1.45;
}

.contact-directory {
	padding: clamp(2.5rem, 4vw, 4rem);
}

.contact-person {
	padding: 1.25rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-person__name {
	margin-bottom: 0.4rem;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.2;
}

.contact-person__links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
}

.contact-person a {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.88rem;
	text-decoration-color: rgba(255, 255, 255, 0.2);
	text-underline-offset: 0.25em;
}

.contact-person a:hover {
	color: #fff;
	text-decoration-color: #fff;
}

.contact-form-panel {
	padding: clamp(2.75rem, 6vw, 6.5rem);
	background: #fbfaf6;
}

.contact-form-panel__heading {
	max-width: 680px;
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--line);
}

.contact-form-panel__heading .section-heading {
	margin-bottom: 1.25rem;
}

.contact-form-panel__heading > p:last-child {
	max-width: 56ch;
	margin-bottom: 0;
	color: var(--muted);
}

.contact-tally {
	min-height: 620px;
}

.contact-tally iframe {
	display: block;
	width: 100%;
	min-height: 620px;
}

.contact-map-section {
	padding: clamp(4rem, 8vw, 8rem) 0;
	background: var(--surface);
	border-top: 1px solid var(--line);
}

.contact-map-heading {
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.contact-map {
	min-height: 560px;
	background: #ddd;
	border: 1px solid var(--line);
}

.contact-map iframe {
	display: block;
	width: 100%;
	min-height: 560px;
	filter: grayscale(1) contrast(0.92);
}

@media (max-width: 767.98px) {
	.contact-hero {
		min-height: 52vh;
		padding: 6rem 0 4rem;
		background-position: 40% center;
	}

	.contact-connect {
		padding: 2rem 0 4rem;
	}

	.contact-form-panel {
		padding: 2.5rem 1.25rem;
	}

	.contact-tally,
	.contact-tally iframe {
		min-height: 690px;
	}

	.contact-map,
	.contact-map iframe {
		min-height: 480px;
		height: 480px;
	}
}

/* Gallery page */
.gallery-page {
	background: var(--paper);
}

.gallery-hero {
	padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
	background: #fbfaf6;
	border-bottom: 1px solid var(--line);
}

.gallery-hero__title {
	margin: 0;
	color: var(--ink);
	font-size: clamp(5rem, 12vw, 11rem);
	font-weight: 500;
	line-height: 0.78;
	letter-spacing: -0.055em;
}

.gallery-hero__intro {
	max-width: 30ch;
	margin: 0 0 0.5rem;
	color: var(--muted);
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	line-height: 1.35;
}

.gallery-collection {
	padding: 1rem 0 clamp(5rem, 9vw, 9rem);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: clamp(360px, 43vw, 620px);
	gap: 1rem;
}

.gallery-item {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: var(--surface);
	border: 0;
	color: #fff;
	cursor: zoom-in;
}

.gallery-item--1,
.gallery-item--4,
.gallery-item--5 {
	grid-column: span 7;
}

.gallery-item--2,
.gallery-item--3,
.gallery-item--6 {
	grid-column: span 5;
}

.gallery-item__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(10, 12, 16, 0.42), transparent 35%);
	opacity: 0.65;
	transition: opacity 250ms ease;
}

.gallery-item:hover .gallery-item__image,
.gallery-item:focus-visible .gallery-item__image {
	transform: scale(1.025);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
	opacity: 1;
}

.gallery-item:focus-visible {
	outline: 2px solid var(--wine);
	outline-offset: 4px;
}

.gallery-item__number {
	position: absolute;
	right: 1.5rem;
	bottom: 1.25rem;
	z-index: 1;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.24em;
}

.gallery-modal .modal-dialog {
	width: 100%;
	max-width: none;
	height: 100%;
	margin: 0;
}

.gallery-modal .modal-content {
	height: 100%;
	background: #111;
	border: 0;
	border-radius: 0;
}

.gallery-modal .modal-header {
	min-height: 64px;
	padding: 0.75rem clamp(1rem, 3vw, 2rem);
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.16);
}

.gallery-modal__hint {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.gallery-modal .btn-close {
	width: 2.75rem;
	height: 2.75rem;
	margin: 0;
	padding: 0;
	background-size: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	opacity: 1;
}

.gallery-modal .modal-body {
	min-height: 0;
	padding: 0;
}

.gallery-carousel,
.gallery-carousel .carousel-inner,
.gallery-carousel .carousel-item {
	height: 100%;
}

.gallery-carousel {
	outline: 0;
}

.gallery-carousel__image {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding: 1rem clamp(4.5rem, 10vw, 9rem) 5.25rem;
}

.gallery-carousel__image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100svh - 10.25rem);
	object-fit: contain;
}

.gallery-carousel__caption {
	position: absolute;
	right: clamp(1rem, 3vw, 2rem);
	bottom: 1.25rem;
	left: clamp(1rem, 3vw, 2rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gallery-carousel__caption p,
.gallery-carousel__caption span {
	margin: 0;
}

.gallery-carousel__caption p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gallery-carousel__caption span {
	flex: 0 0 auto;
}

.gallery-carousel__control {
	width: clamp(4rem, 8vw, 7rem);
	opacity: 1;
}

.gallery-carousel__control svg {
	width: clamp(2.75rem, 5vw, 4rem);
	height: clamp(2.75rem, 5vw, 4rem);
	padding: 0.65rem;
	background: rgba(10, 10, 10, 0.68);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-carousel__control:hover svg,
.gallery-carousel__control:focus-visible svg {
	background: #fff;
	border-color: #fff;
	stroke: var(--ink);
	transform: scale(1.06);
}

.gallery-carousel__control:focus-visible {
	outline: 2px solid #fff;
	outline-offset: -4px;
}

@media (max-width: 767.98px) {
	.gallery-hero__title {
		font-size: clamp(4rem, 23vw, 6.5rem);
	}

	.gallery-hero__intro {
		max-width: 24ch;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 280px;
		gap: 0.75rem;
	}

	.gallery-item {
		grid-column: 1 / -1;
	}

	.gallery-item--1,
	.gallery-item--6 {
		min-height: 340px;
	}

	.gallery-modal .modal-header {
		min-height: 58px;
	}

	.gallery-modal__hint {
		display: none;
	}

	.gallery-modal .btn-close {
		margin-left: auto;
	}

	.gallery-carousel__image {
		padding: 0.75rem 3.75rem 4.75rem;
	}

	.gallery-carousel__image img {
		max-height: calc(100svh - 8.75rem);
	}

	.gallery-carousel__control {
		width: 3.75rem;
	}

	.gallery-carousel__control svg {
		width: 2.75rem;
		height: 2.75rem;
		padding: 0.6rem;
	}

	.gallery-carousel__caption {
		bottom: 1rem;
		font-size: 0.6rem;
	}
}

/* Customer account */
.account-page {
	background: var(--paper);
}

.account-hero {
	padding: clamp(3.25rem, 6vw, 5.5rem) 0 clamp(2.75rem, 5vw, 4.5rem);
	background: #fbfaf6;
	border-bottom: 1px solid var(--line);
}

.account-hero__title {
	margin: 0;
	color: var(--ink);
	font-size: clamp(4.25rem, 8vw, 7.25rem);
	font-weight: 500;
	line-height: 0.88;
	letter-spacing: -0.045em;
}

.account-hero__intro {
	max-width: 36ch;
	margin: 0 0 0.35rem;
	color: var(--muted);
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 1.75vw, 1.6rem);
	line-height: 1.45;
}

.account-main {
	padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4.5rem, 8vw, 7.5rem);
}

.account-auth,
.account-shell {
	border: 1px solid var(--line);
	box-shadow: 0 22px 60px rgba(23, 23, 19, 0.06);
}

.account-auth__intro {
	padding: clamp(2.25rem, 3.5vw, 3.75rem);
	background: var(--ink);
	color: rgba(255, 255, 255, 0.68);
}

.account-auth__intro .section-eyebrow {
	color: rgba(255, 255, 255, 0.48);
}

.account-auth__intro h2 {
	max-width: 11ch;
	margin-bottom: 1.35rem;
	color: #fff;
	font-size: clamp(2.5rem, 3.6vw, 3.55rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.035em;
}

.account-auth__intro > p {
	max-width: 36ch;
	margin-bottom: 0;
	font-size: 0.9rem;
	line-height: 1.7;
}

.account-auth__features {
	display: grid;
	gap: 0;
	margin: 2.25rem 0 0;
	padding: 0;
	counter-reset: account-benefit;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.account-auth__features li {
	position: relative;
	padding: 1rem 0 1rem 2.35rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.8rem;
	line-height: 1.5;
	counter-increment: account-benefit;
}

.account-auth__features li::before {
	content: "0" counter(account-benefit);
	position: absolute;
	top: 1.05rem;
	left: 0;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.account-auth__forms {
	padding: clamp(1.5rem, 3.5vw, 3.25rem);
	background: #f3f0e9;
}

.account-form-card {
	display: flex;
	flex-direction: column;
	padding: clamp(1.5rem, 2.5vw, 2.4rem);
	background: var(--paper);
	border: 1px solid var(--line);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.account-form-card:hover,
.account-form-card:focus-within {
	border-color: rgba(23, 23, 19, 0.5);
	box-shadow: 0 16px 35px rgba(23, 23, 19, 0.06);
	transform: translateY(-2px);
}

.account-form-card--login {
	border-top: 3px solid var(--ink);
}

.account-form-card--register {
	border-top: 3px solid var(--wine);
}

.account-form-card__header {
	min-height: 10rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
}

.account-form-card h2 {
	margin-bottom: 0.75rem;
	font-size: clamp(2rem, 2.7vw, 2.55rem);
	font-weight: 500;
	line-height: 1;
}

.account-form-card__header > p:last-child {
	max-width: 38ch;
	margin: 0;
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.6;
}

.account-form-card form {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.account-main .woocommerce form .form-row {
	margin: 0 0 1.25rem;
	padding: 0;
}

.account-main .woocommerce form .form-row label,
.account-main .woocommerce-form__label {
	margin-bottom: 0.45rem;
	color: var(--ink);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.account-main .woocommerce form .form-row .required {
	color: var(--wine);
}

.account-main .woocommerce form .form-row input.input-text,
.account-main .woocommerce form .form-row textarea,
.account-main .woocommerce form .form-row select,
.account-main .woocommerce form .password-input input {
	width: 100%;
	min-height: 50px;
	padding: 0.75rem 0.9rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0;
	color: var(--ink);
	box-shadow: none;
}

.account-main .woocommerce form .form-row textarea {
	min-height: 140px;
}

.account-main .woocommerce form .form-row input:focus,
.account-main .woocommerce form .form-row textarea:focus,
.account-main .woocommerce form .form-row select:focus {
	border-color: var(--ink);
	outline: 0;
	box-shadow: 0 0 0 1px var(--ink);
}

.account-main .woocommerce .button {
	min-height: 50px;
	padding: 0.9rem 1.5rem;
	background: var(--ink);
	border: 1px solid var(--ink);
	border-radius: 0;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.account-main .woocommerce .button:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}

.account-form-card__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.account-form-card__actions .button,
.account-form-card .woocommerce-form-register__submit {
	width: 100%;
}

.account-form-card--register .woocommerce-form-register__submit {
	background: var(--wine);
	border-color: var(--wine);
}

.account-form-card--register .woocommerce-form-register__submit:hover,
.account-form-card--register .woocommerce-form-register__submit:focus-visible {
	background: var(--ink);
	border-color: var(--ink);
}

.account-main .woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	letter-spacing: 0;
	text-transform: none;
}

.account-main input[type="checkbox"] {
	width: 17px;
	height: 17px;
	border-radius: 0;
	accent-color: var(--ink);
}

.account-main .lost_password,
.account-main .account-form-card__note {
	margin: 0;
	color: var(--muted);
	font-size: 0.86rem;
}

.account-main .lost_password a {
	color: var(--ink);
	text-underline-offset: 0.25em;
}

.account-form-card--register .woocommerce-privacy-policy-text {
	margin-top: auto;
	padding-top: 0.5rem;
}

.account-main .woocommerce-privacy-policy-text {
	color: var(--muted);
	font-size: 0.8rem;
	line-height: 1.6;
}

.account-shell__navigation {
	padding: 2rem 0;
	background: var(--ink);
}

.account-shell .woocommerce-MyAccount-navigation {
	float: none;
	width: 100%;
}

.account-shell .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.account-shell .woocommerce-MyAccount-navigation li {
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.account-shell .woocommerce-MyAccount-navigation li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.account-shell .woocommerce-MyAccount-navigation a {
	position: relative;
	display: block;
	padding: 1rem 2rem;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-decoration: none;
	text-transform: uppercase;
}

.account-shell .woocommerce-MyAccount-navigation a::after {
	content: "→";
	position: absolute;
	right: 1.5rem;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.account-shell .woocommerce-MyAccount-navigation a:hover,
.account-shell .woocommerce-MyAccount-navigation .is-active a {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.account-shell .woocommerce-MyAccount-navigation a:hover::after,
.account-shell .woocommerce-MyAccount-navigation .is-active a::after {
	opacity: 1;
	transform: translateX(0);
}

.account-shell__content {
	float: none;
	width: 100%;
	min-height: 620px;
	padding: clamp(2.5rem, 5vw, 5.5rem);
	background: #fbfaf6;
}

.account-dashboard__header {
	max-width: 720px;
	margin-bottom: 3rem;
}

.account-dashboard__header h2,
.account-shell__content > h2,
.account-shell__content > h3 {
	margin-bottom: 1rem;
	font-size: clamp(2.5rem, 4.5vw, 4.25rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.account-dashboard__header > p:last-child,
.account-shell__content > p {
	color: var(--muted);
}

.account-dashboard-card {
	display: flex;
	min-height: 190px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.75rem;
	background: var(--paper);
	border: 1px solid var(--line);
	color: var(--ink);
	text-decoration: none;
}

.account-dashboard-card:hover {
	border-color: var(--ink);
	color: var(--ink);
	transform: translateY(-3px);
}

.account-dashboard-card__number {
	margin-bottom: auto;
	color: var(--muted);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.account-dashboard-card strong {
	margin-bottom: 0.25rem;
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 600;
}

.account-dashboard-card > span:last-child {
	color: var(--muted);
	font-size: 0.82rem;
}

.account-dashboard__logout {
	display: inline-block;
	margin-top: 2rem;
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-underline-offset: 0.3em;
	text-transform: uppercase;
}

.account-shell__content .woocommerce-orders-table,
.account-shell__content .woocommerce-table,
.account-shell__content .shop_table {
	width: 100%;
	margin: 2rem 0;
	background: var(--paper);
	border: 1px solid var(--line);
	border-collapse: collapse;
}

.account-shell__content table th,
.account-shell__content table td {
	padding: 1rem;
	border: 1px solid var(--line);
}

.account-shell__content table th {
	color: var(--muted);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.account-shell__content .woocommerce-Address {
	float: none;
	width: 100%;
	height: 100%;
	padding: 2rem;
	background: var(--paper);
	border: 1px solid var(--line);
}

.account-shell__content .woocommerce-Addresses .woocommerce-Address {
	float: none;
	width: auto;
	max-width: none;
	box-sizing: border-box;
}

.account-shell__content .woocommerce-Addresses .u-column1 {
	grid-column: 1;
	grid-row: 1;
}

.account-shell__content .woocommerce-Addresses .u-column2 {
	grid-column: 2;
	grid-row: 1;
}

.account-shell__content .u-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.account-shell__content .u-column1,
.account-shell__content .u-column2 {
	float: none;
	width: 100%;
}

.account-shell__content .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.account-shell__content .woocommerce-Address-title h2 {
	margin: 0;
	font-size: 1.8rem;
}

.account-shell__content fieldset {
	margin: 2.5rem 0;
	padding: 2rem;
	background: var(--paper);
	border: 1px solid var(--line);
}

.account-shell__content legend {
	float: none;
	width: auto;
	padding: 0 0.75rem;
	font-family: var(--font-display);
	font-size: 1.5rem;
}

.account-main .woocommerce-info,
.account-main .woocommerce-message,
.account-main .woocommerce-error {
	margin-bottom: 1.5rem;
	padding: 1.25rem 1.5rem 1.25rem 3.5rem;
	background: var(--paper);
	border: 1px solid var(--line);
	border-top: 1px solid var(--ink);
	color: var(--ink-soft);
}

.account-main .woocommerce-ResetPassword {
	max-width: 680px;
	padding: clamp(2rem, 5vw, 4rem);
	background: #fbfaf6;
	border: 1px solid var(--line);
}

@media (max-width: 767.98px) {
	.account-hero {
		padding: 2.5rem 0 2.25rem;
	}

	.account-hero__title {
		font-size: clamp(3.5rem, 17vw, 5rem);
		line-height: 0.92;
	}

	.account-hero__intro {
		margin-top: 0.75rem;
		font-size: 1.15rem;
	}

	.account-main {
		padding: 1.5rem 0 4.5rem;
	}

	.account-auth__forms,
	.account-shell__content {
		padding: 1.25rem;
	}

	.account-auth,
	.account-shell {
		box-shadow: none;
	}

	.account-auth__intro {
		display: none;
	}

	.account-auth__intro h2 {
		max-width: 12ch;
		font-size: 2.65rem;
	}

	.account-auth__features {
		margin-top: 1.75rem;
	}

	.account-form-card {
		padding: 1.5rem;
	}

	.account-form-card__header {
		min-height: 0;
		margin-bottom: 1.35rem;
		padding-bottom: 1.25rem;
	}

	.account-form-card:hover,
	.account-form-card:focus-within {
		transform: none;
	}

	.account-shell__content {
		min-height: 0;
	}

	.account-shell__content .u-columns {
		grid-template-columns: 1fr;
	}

	.account-shell__content .woocommerce-Addresses .u-column1,
	.account-shell__content .woocommerce-Addresses .u-column2 {
		grid-column: 1;
		grid-row: auto;
	}

	.account-shell__content table,
	.account-shell__content thead,
	.account-shell__content tbody,
	.account-shell__content th,
	.account-shell__content td,
	.account-shell__content tr {
		display: block;
	}

	.account-shell__content thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}

	.account-shell__content table tr {
		padding: 1rem;
		border-bottom: 1px solid var(--line);
	}

	.account-shell__content table td {
		padding: 0.55rem 0;
		border: 0;
	}
}

/* Footer */
.site-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.85);
}

.site-footer .text-muted {
	color: rgba(255, 255, 255, 0.55) !important;
}

.site-footer__brand {
	font-family: var(--font-display);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	text-decoration: none;
	display: inline-block;
	padding: 0.25rem 0;
}

.footer-menu a:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.4em;
}

/*
 * Homepage refinement
 * A restrained, editorial system built around the existing winery imagery,
 * product photography and long-form CMS content.
 */

html {
	scroll-behavior: smooth;
}

body {
	background: var(--paper);
	color: var(--ink-soft);
	font-size: 1rem;
	line-height: 1.7;
}

::selection {
	background: var(--wine);
	color: #fff;
}

a,
.btn,
.home-wine__media img {
	transition:
		color 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		opacity 180ms ease,
		transform 320ms cubic-bezier(0.2, 0.65, 0.3, 1),
		box-shadow 320ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
	outline: 2px solid var(--wine);
	outline-offset: 4px;
	box-shadow: none;
}

.container {
	--bs-gutter-x: clamp(2rem, 5vw, 5rem);
	max-width: 1380px;
}

.section-heading {
	font-size: clamp(2.75rem, 4.6vw, 4.75rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.section-eyebrow,
.text-label {
	margin-bottom: 1rem;
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.28em;
}

/* Header: quieter, slimmer and more deliberate. */
.site-header {
	background: rgba(251, 250, 246, 0.94);
	border-bottom-color: rgba(23, 23, 19, 0.1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(16px) saturate(130%);
	overflow: visible;
}

.site-header .navbar {
	min-height: 76px;
	padding-block: 0.45rem;
}

.custom-logo-link {
	line-height: 0;
}

.custom-logo {
	display: block;
	width: min(300px, 29vw);
	max-height: 36px;
}

.site-identity {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-right: clamp(1.5rem, 3vw, 3rem);
	padding: 0;
	color: var(--ink);
	line-height: 1;
}

.site-identity:hover {
	color: var(--wine);
}

.site-logo-mark {
	width: 52px;
	height: 41px;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.site-logo-mark img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.site-logo-wordmark {
	font-family: var(--font-logo);
	font-size: clamp(1.8rem, 2.35vw, 2.05rem);
	font-weight: 400;
	font-synthesis: none;
	line-height: 0.9;
	letter-spacing: 0;
	-webkit-text-stroke: 0.6px currentColor;
	paint-order: stroke fill;
	text-rendering: optimizeLegibility;
	white-space: nowrap;
}

.site-logo-wordmark em {
	font-style: normal;
	font-weight: 400;
}

.navbar-nav {
	align-items: center;
	gap: 0.15rem;
}

.navbar-nav > .dropdown {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.nav-submenu-toggle {
	display: inline-flex;
	width: 1.8rem;
	height: 2.5rem;
	align-items: center;
	justify-content: center;
	margin-left: -0.55rem;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--ink);
}

.nav-submenu-toggle svg {
	width: 0.8rem;
	height: 0.8rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
	transition: transform 180ms ease;
}

.nav-submenu-toggle.show svg,
.nav-submenu-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.nav-submenu-toggle:focus-visible {
	outline: 2px solid var(--ink);
	outline-offset: 1px;
}

.navbar-nav .nav-link {
	position: relative;
	padding: 0.75rem 0.8rem;
	color: var(--ink);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-decoration: none;
}

.navbar-nav .nav-link::after {
	position: absolute;
	right: 0.8rem;
	bottom: 0.45rem;
	left: 0.8rem;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 220ms ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
	text-decoration: none;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.navbar-nav .nav-link--language {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-left: 0.35rem;
	padding: 0.65rem 0.8rem;
	border: 1px solid rgba(23, 23, 19, 0.2);
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.navbar-nav .nav-link--language::after {
	display: none;
}

.navbar-nav .nav-link--language:hover,
.navbar-nav .nav-link--language:focus {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
	transform: translateY(-1px);
}

.language-switcher__icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.45;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nav-link--language [data-no-translation] {
	line-height: 1;
}

.navbar-nav .dropdown-menu {
	position: absolute;
	z-index: 1020;
	min-width: 12rem;
	margin-top: 0.35rem;
	border-color: var(--line);
	background: var(--paper);
	box-shadow: var(--shadow-md);
	inset: auto auto auto auto !important;
	top: 100% !important;
	left: 0 !important;
	right: auto !important;
	bottom: auto !important;
	transform: none !important;
}

.navbar-nav .dropdown-menu.show {
	display: block;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
	.navbar-nav .dropdown > .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity 180ms ease,
			visibility 180ms ease;
	}

	.navbar-nav .dropdown > .dropdown-menu::before {
		position: absolute;
		right: 0;
		bottom: 100%;
		left: 0;
		height: 0.5rem;
		content: "";
	}

	.navbar-nav .dropdown:hover > .dropdown-menu,
	.navbar-nav .dropdown:focus-within > .dropdown-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 1px solid var(--line);
}

.header-action {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.7rem 0.95rem;
	border: 1px solid rgba(23, 23, 19, 0.28);
	color: var(--ink);
	font-size: 0.67rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.header-action:hover,
.header-action:focus {
	border-color: var(--ink);
	background: var(--surface);
	color: var(--ink);
	transform: translateY(-1px);
}

.header-action--cart {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.header-action--cart:hover,
.header-action--cart:focus {
	border-color: var(--wine);
	background: var(--wine);
	color: #fff;
}

.header-action__icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-action__count {
	min-width: 1.35rem;
	height: 1.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 0.05rem;
	background: #fff;
	color: var(--ink);
	font-size: 0.62rem;
	line-height: 1;
	letter-spacing: 0;
}

.cart-link {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.7rem 1.2rem;
}

.cart-badge {
	min-width: 1.35rem;
	padding: 0.34rem 0.4rem;
	background: var(--ink);
}

.navbar-toggler {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 0.2rem;
	border: 0;
	box-shadow: none !important;
}

.navbar-toggler-label {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--ink);
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

/* Buttons retain the house's graphic sharpness with more breathing room. */
.btn-wine,
.btn-dark,
.btn-outline-wine,
.btn-outline-dark,
.btn-outline-light,
.btn-light {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.65rem;
	font-size: 0.69rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.19em;
}

.btn:hover {
	transform: translateY(-2px);
}

/* Hero: image-led, cinematic and editorial rather than boxed-in. */
.home-hero {
	min-height: calc(100svh - 84px);
	max-height: 920px;
	padding: clamp(6rem, 12vh, 9rem) 0 clamp(5.5rem, 10vh, 8rem);
	background-position: center 48%;
}

.home-hero__overlay {
	background:
		linear-gradient(90deg, rgba(12, 14, 13, 0.78) 0%, rgba(12, 14, 13, 0.48) 41%, rgba(12, 14, 13, 0.12) 72%, rgba(12, 14, 13, 0.04) 100%),
		linear-gradient(0deg, rgba(12, 14, 13, 0.62) 0%, rgba(12, 14, 13, 0.03) 54%);
}

.home-hero__content {
	max-width: 760px;
	padding-left: 0;
	border-left: 0;
}

.home-hero__content::before {
	width: 56px;
	height: 1px;
	display: block;
	margin-bottom: 1.5rem;
	background: rgba(255, 255, 255, 0.66);
	content: "";
}

.home-hero .section-eyebrow {
	margin-bottom: 1.2rem;
	color: rgba(255, 255, 255, 0.78);
}

.home-hero__title {
	max-width: 9ch;
	font-size: clamp(4.4rem, 7.8vw, 7.6rem);
	font-weight: 500;
	line-height: 0.84;
	letter-spacing: -0.045em;
}

.home-hero__text {
	max-width: 49ch;
	margin-top: 1.75rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1rem, 1.25vw, 1.15rem);
	line-height: 1.75;
}

.home-hero .d-flex.gap-2 {
	gap: 0.75rem !important;
	margin-top: 2rem !important;
}

.home-hero .btn {
	min-width: 210px;
}

@media (min-width: 992px) {
	.home-hero {
		align-items: flex-start !important;
	}

	.home-hero .row {
		justify-content: flex-end;
	}

	.home-hero__overlay {
		background:
			linear-gradient(90deg, rgba(12, 14, 13, 0.03) 0%, rgba(12, 14, 13, 0.1) 34%, rgba(12, 14, 13, 0.56) 70%, rgba(12, 14, 13, 0.82) 100%),
			linear-gradient(0deg, rgba(12, 14, 13, 0.58) 0%, rgba(12, 14, 13, 0.02) 58%);
	}

	.home-hero__content {
		max-width: 660px;
		margin-left: auto;
		text-align: right;
	}

	.home-hero__content::before {
		margin-left: auto;
	}

	.home-hero__title {
		max-width: 10.5ch;
		margin-left: auto;
		font-size: clamp(4rem, 5.2vw, 6rem);
		line-height: 0.88;
	}

	.home-hero__text {
		max-width: 46ch;
		margin-left: auto;
	}

	.home-hero .d-flex.gap-2 {
		justify-content: flex-end;
	}
}

/* Wine collection: concise, collectible and product-forward. */
.home-wines {
	z-index: 1;
	margin-top: 0;
	padding: clamp(5rem, 8vw, 8rem) 0 clamp(6rem, 10vw, 10rem);
	background:
		radial-gradient(circle at 8% 8%, rgba(184, 164, 125, 0.13), transparent 28%),
		var(--surface);
}

.home-wines__heading {
	width: auto;
	max-width: 680px;
	margin: 0 auto clamp(3.25rem, 6vw, 5.5rem);
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.home-wines__heading .section-heading {
	font-size: clamp(3.5rem, 6vw, 5.75rem);
}

.home-wine.card {
	overflow: hidden;
	border-color: rgba(23, 23, 19, 0.11);
	background: var(--paper);
	box-shadow: var(--shadow-sm);
}

.home-wine.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-6px);
}

.home-wine__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 4.65;
	padding: clamp(2rem, 4vw, 3.25rem) 1.5rem;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(228, 223, 211, 0.52)),
		#f7f5ef;
	border-bottom: 1px solid rgba(23, 23, 19, 0.08);
}

.home-wine__media::after {
	position: absolute;
	right: 1.5rem;
	bottom: 1.25rem;
	left: 1.5rem;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(23, 23, 19, 0.14), transparent);
	content: "";
}

.home-wine__media img {
	position: relative;
	z-index: 1;
	max-height: 100%;
	filter: drop-shadow(0 24px 18px rgba(23, 23, 19, 0.12));
}

.home-wine.card:hover .home-wine__media img {
	transform: translateY(-7px) scale(1.025);
}

.home-wine .card-body {
	min-height: 310px;
	padding: 1.75rem !important;
}

.home-wine__meta {
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--line);
}

.home-wine .card-title {
	max-width: 72%;
	font-size: clamp(1.45rem, 2.1vw, 1.8rem);
	font-weight: 600;
	line-height: 1.05;
}

.home-wine .card-title a:hover {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.home-wine__price {
	flex: 0 0 auto;
	color: var(--wine);
	font-size: 0.9rem;
	font-weight: 700;
}

.home-wine__description {
	position: relative;
	overflow: hidden;
	min-height: 7.25rem;
	max-height: 7.25rem;
	margin: 1.25rem 0 1.6rem;
	color: var(--ink-soft);
	font-size: 0.88rem;
	line-height: 1.65;
}

.home-wine__description::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2.7rem;
	background: linear-gradient(transparent, var(--paper));
	content: "";
	pointer-events: none;
}

.home-wine__description > * {
	margin: 0 0 0.75rem;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.home-wine__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.home-wine__actions--catalog {
	grid-template-columns: 1fr;
}

.home-wine__actions .btn {
	min-width: 0;
	padding-inline: 0.8rem;
	background: transparent;
	white-space: nowrap;
}

.home-wine__actions .btn-outline-dark:hover {
	background: var(--ink);
}

.home-wine__actions .btn-dark {
	background: var(--ink);
	color: #fff;
}

.home-wine__actions .btn-dark:hover {
	background: var(--wine);
	border-color: var(--wine);
	color: #fff;
}

.home-wine__actions .add_to_cart_button.added::after,
.wine-catalog-card__actions .add_to_cart_button.added::after {
	display: none;
}

.home-wine__actions .added_to_cart,
.wine-catalog-card__actions .added_to_cart {
	grid-column: 1 / -1;
	width: 100%;
	min-height: 50px;
	display: inline-flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 1.1rem !important;
	border: 1px solid var(--wine);
	background: var(--wine);
	box-shadow: 0 10px 22px rgba(95, 24, 32, 0.14);
	color: #fff !important;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.18em;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.home-wine__actions .added_to_cart::after,
.wine-catalog-card__actions .added_to_cart::after {
	content: "→";
	flex: 0 0 auto;
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	transition: transform 180ms ease;
}

.home-wine__actions .added_to_cart:hover,
.home-wine__actions .added_to_cart:focus,
.wine-catalog-card__actions .added_to_cart:hover,
.wine-catalog-card__actions .added_to_cart:focus {
	border-color: var(--ink);
	background: var(--ink);
	box-shadow: 0 12px 26px rgba(23, 23, 19, 0.17);
	transform: translateY(-1px);
}

.home-wine__actions .added_to_cart:hover::after,
.home-wine__actions .added_to_cart:focus::after,
.wine-catalog-card__actions .added_to_cart:hover::after,
.wine-catalog-card__actions .added_to_cart:focus::after {
	transform: translateX(0.2rem);
}

.home-wine__actions .added_to_cart:focus-visible,
.wine-catalog-card__actions .added_to_cart:focus-visible {
	outline: 2px solid var(--ink);
	outline-offset: 3px;
}

html[lang^="it"] .home-wine__actions {
	display: flex;
	flex-wrap: wrap;
}

html[lang^="it"] .home-wine__actions .btn {
	flex: 1 1 9.75rem;
	min-width: min(100%, 9.75rem);
}

html[lang^="it"] .home-wine__actions .btn-dark {
	flex-basis: 13rem;
}

html[lang^="it"] .home-wine__actions .added_to_cart {
	flex: 1 0 100%;
}

html[lang^="it"] .home-wine__actions--catalog .btn {
	flex: 1 0 100%;
}

/* Story: turn the existing text and winery photograph into one calm chapter. */
.home-history {
	padding: clamp(5rem, 9vw, 10rem) 0;
	background: var(--paper);
}

.home-history .container-fluid {
	max-width: 1380px;
	padding-inline: clamp(1rem, 5vw, 5rem) !important;
}

.home-history__image {
	min-height: 650px;
	object-fit: cover;
	object-position: center;
	box-shadow: var(--shadow-md);
}

.home-history__body {
	max-width: 580px;
	padding: 2rem 0 2rem clamp(3rem, 7vw, 7rem);
}

.home-history__body .section-heading {
	margin-bottom: 2rem;
}

.home-history__body p:not(.section-eyebrow) {
	margin-bottom: 1.05rem;
	color: var(--ink-soft);
	font-size: 0.98rem;
	line-height: 1.75;
}

/* Cellar: the existing oak pattern and production image work as one pair. */
.home-release {
	background: var(--ink);
}

.home-release .row {
	min-height: 660px;
}

.home-release__banner {
	position: relative;
	min-height: 660px;
	overflow: hidden;
	padding: clamp(4rem, 8vw, 8rem);
	background-color: var(--wine);
	background-position: center;
	background-size: cover;
	background-blend-mode: multiply;
	isolation: isolate;
}

.home-release__banner::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(145deg, rgba(38, 15, 17, 0.34), rgba(38, 15, 17, 0.78)),
		linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent);
	content: "";
}

.home-release__banner-inner {
	max-width: 560px;
}

.home-release__banner .section-eyebrow {
	color: rgba(255, 255, 255, 0.66);
}

.home-release__banner .section-heading {
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(3rem, 4.8vw, 5rem);
}

.home-release__image {
	min-height: 660px;
	object-position: center;
}

/* Featured bottle: a gallery-like light plinth against a dark text panel. */
.home-featured {
	background: var(--ink);
}

.home-featured .row {
	min-height: 680px;
}

.home-featured .col-lg-6:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(4rem, 7vw, 7rem);
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), rgba(241, 238, 230, 0.7) 42%, rgba(228, 223, 211, 0.88) 100%),
		var(--surface);
}

.home-featured__image {
	max-height: 550px;
	filter: drop-shadow(0 34px 28px rgba(23, 23, 19, 0.18));
}

.home-featured__body {
	max-width: 640px;
	padding: clamp(4rem, 8vw, 8rem);
	color: rgba(255, 255, 255, 0.72);
}

.home-featured__body .section-eyebrow {
	color: var(--gold);
}

.home-featured__body .section-heading {
	margin-bottom: 1.75rem;
	color: #fff;
}

.home-featured__body > p:not(.section-eyebrow) {
	max-width: 48ch;
	margin-bottom: 2rem !important;
	font-size: 1rem;
	line-height: 1.8;
}

.home-featured__body .btn-dark {
	--bs-btn-bg: #fff;
	--bs-btn-border-color: #fff;
	--bs-btn-color: var(--ink);
	--bs-btn-hover-bg: var(--surface);
	--bs-btn-hover-border-color: var(--surface);
	--bs-btn-hover-color: var(--ink);
}

.home-featured__body .btn-outline-dark {
	--bs-btn-color: #fff;
	--bs-btn-border-color: rgba(255, 255, 255, 0.5);
	--bs-btn-hover-bg: #fff;
	--bs-btn-hover-border-color: #fff;
	--bs-btn-hover-color: var(--ink);
}

/* Estate: close the homepage as one continuous chapter with the footer. */
.home-estate {
	min-height: clamp(620px, 78vh, 860px);
	align-items: flex-end !important;
	padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6.5rem);
	background-position: center 48%;
}

.home-estate::before {
	background:
		linear-gradient(180deg, rgba(14, 15, 13, 0.08) 0%, rgba(14, 15, 13, 0.16) 38%, #0e0f0d 100%),
		linear-gradient(90deg, rgba(14, 15, 13, 0.72) 0%, rgba(14, 15, 13, 0.3) 55%, rgba(14, 15, 13, 0.15) 100%);
}

.home-estate .container {
	max-width: 1320px;
	text-align: left !important;
}

.home-estate .section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 1.35rem;
	color: rgba(221, 205, 170, 0.88);
}

.home-estate .section-eyebrow::before {
	width: 42px;
	height: 1px;
	background: currentcolor;
	content: "";
}

.home-estate .section-heading {
	max-width: 760px;
	margin: 0;
	font-size: clamp(4rem, 7vw, 6.4rem);
	font-weight: 500;
	line-height: 0.94;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.home-estate .btn.btn-light {
	min-width: 0;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	margin-top: 2rem !important;
	padding: 1rem 1.15rem;
	border-color: rgba(255, 255, 255, 0.46);
	background: rgba(14, 15, 13, 0.34);
	backdrop-filter: blur(8px);
	color: #fff;
}

.home-estate .btn.btn-light::after {
	content: "→";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	transition: transform 180ms ease;
}

.home-estate .btn.btn-light:hover,
.home-estate .btn.btn-light:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--ink);
}

.home-estate .btn.btn-light:hover::after,
.home-estate .btn.btn-light:focus-visible::after {
	transform: translateX(0.2rem);
}

body.home .site-footer {
	margin-top: -1px;
	border-top: 0;
}

body.home .site-footer::before {
	display: none;
}

/* Footer: established winery identity with direct e-commerce pathways. */
.site-footer {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(circle at 8% 18%, rgba(126, 91, 58, 0.12), transparent 30%),
		#0e0f0d;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--wine), rgba(184, 164, 125, 0.72), transparent 70%);
	content: "";
}

.site-footer .container {
	padding-block: clamp(4.5rem, 7vw, 7rem) clamp(2rem, 3.5vw, 3.5rem) !important;
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.8fr) minmax(220px, 0.65fr);
	gap: clamp(3rem, 7vw, 8rem);
	align-items: start;
	padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.site-footer__identity {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	color: #fff;
	text-decoration: none;
}

.site-footer__identity:hover,
.site-footer__identity:focus {
	color: #fff;
}

.site-footer__logo {
	width: 76px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.site-footer__logo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.site-footer__brand {
	color: #fff;
	font-family: var(--font-logo);
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	-webkit-text-stroke: 0.6px currentColor;
	paint-order: stroke fill;
	white-space: nowrap;
}

.site-footer__brand em {
	font-style: normal;
	font-weight: 400;
}

.site-footer__description {
	max-width: 40ch;
	margin: 1.6rem 0 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.94rem;
	line-height: 1.75;
}

.footer-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.7rem 1.75rem;
	margin: 0;
}

.footer-menu li {
	min-width: 0;
}

.site-footer .footer-menu a {
	position: relative;
	display: inline-flex;
	padding: 0.4rem 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.69rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.17em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		color 180ms ease,
		transform 180ms ease;
}

.site-footer .footer-menu a:hover,
.site-footer .footer-menu a:focus {
	color: #fff;
	text-decoration: none;
	transform: translateX(0.2rem);
}

.site-footer__commerce {
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__action {
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		color 180ms ease,
		padding 180ms ease,
		border-color 180ms ease;
}

.site-footer__action:hover,
.site-footer__action:focus {
	padding-left: 0.35rem;
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.site-footer__action svg {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer__cart-count {
	min-width: 1.65rem;
	height: 1.65rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
	font-size: 0.66rem;
	line-height: 1;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.6rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.72rem;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
	.site-footer__main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__brand-block {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767.98px) {
	.site-footer .container {
		padding-block: 4rem 2rem !important;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding-bottom: 3.5rem;
	}

	.site-footer__brand-block {
		grid-column: auto;
	}

	.site-footer__identity {
		gap: 0.75rem;
	}

	.site-footer__logo {
		width: 60px;
		height: 44px;
	}

	.site-footer__brand {
		font-size: clamp(1.8rem, 8vw, 2.35rem);
	}

	.footer-menu {
		grid-template-columns: 1fr;
		gap: 0.45rem;
	}
}

@media (min-width: 992px) {
	.home-history .row {
		display: grid;
		grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
		margin: 0;
	}

	.home-history .col-lg-6 {
		width: auto;
		padding: 0;
	}

	.home-release .col-lg-6,
	.home-featured .col-lg-6 {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

@media (max-width: 1199.98px) {
	.navbar-nav .nav-link {
		padding-inline: 0.6rem;
		letter-spacing: 0.14em;
	}

	.navbar-nav .nav-link::after {
		right: 0.6rem;
		left: 0.6rem;
	}

	.header-actions {
		gap: 0.35rem;
		margin-left: 0.65rem;
		padding-left: 0.65rem;
	}

	.header-action {
		padding-inline: 0.75rem;
		letter-spacing: 0.1em;
	}

	.home-wine__media {
		aspect-ratio: 4 / 4.4;
	}
}

@media (max-width: 991.98px) {
	.site-identity {
		gap: 0.55rem;
		margin-right: auto;
	}

	.site-logo-mark {
		width: 48px;
		height: 37px;
	}

	.site-logo-wordmark {
		font-size: 1.7rem;
	}

	.custom-logo {
		width: min(280px, 58vw);
	}

	.navbar-collapse {
		margin-top: 0.85rem;
		padding: 1rem 0 0.35rem;
		border-top: 1px solid var(--line);
	}

	.navbar-nav {
		align-items: stretch;
	}

	.navbar-nav > .dropdown {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.navbar-nav > .dropdown .dropdown-menu {
		position: static !important;
		inset: auto !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		grid-column: 1 / -1;
		width: 100%;
		margin-top: 0;
		box-shadow: none;
		border-left: 0;
		border-right: 0;
	}

	.nav-submenu-toggle {
		width: 3rem;
		height: 3rem;
		margin: 0;
		border-left: 1px solid var(--line);
	}

	.navbar-nav .nav-link {
		padding: 0.75rem 0;
	}

	.navbar-nav .nav-link::after {
		right: auto;
		bottom: 0.5rem;
		left: 0;
		width: 36px;
	}

	.nav-item--language {
		margin-top: 0.35rem;
		padding-top: 0.75rem;
		border-top: 1px solid var(--line);
	}

	.navbar-nav .nav-link--language {
		width: 100%;
		min-height: 48px;
		justify-content: flex-start;
		margin-left: 0;
		padding: 0.8rem 1rem;
	}

	.header-actions {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
		margin: 0.85rem 0 0;
		padding: 1rem 0 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.header-action {
		width: 100%;
		min-height: 50px;
	}

	.cart-link {
		width: 100%;
		margin: 0.75rem 0 0 !important;
	}

	.home-history__image {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.home-history__body {
		max-width: 760px;
		padding: 3.5rem 0 0;
	}

	.home-release .row,
	.home-featured .row {
		min-height: 0;
	}

	.home-release__banner,
	.home-release__image {
		min-height: 520px;
	}

	.home-featured__body {
		max-width: 760px;
	}
}

@media (max-width: 767.98px) {
	.container {
		--bs-gutter-x: 2.5rem;
	}

	.site-header .navbar {
		min-height: 62px;
		padding-block: 0.35rem;
	}

	.site-logo-mark {
		width: 40px;
		height: 31px;
	}

	.site-logo-wordmark {
		font-size: clamp(1.4rem, 6.5vw, 1.6rem);
	}

	.custom-logo-link {
		max-width: calc(100% - 54px);
	}

	.custom-logo {
		width: min(245px, 64vw);
		max-height: 32px;
	}

	.home-hero {
		min-height: calc(88svh - 72px);
		max-height: none;
		padding: 6rem 0 4.5rem;
		background-position: 57% center;
	}

	.home-hero__overlay {
		background:
			linear-gradient(90deg, rgba(12, 14, 13, 0.83), rgba(12, 14, 13, 0.26)),
			linear-gradient(0deg, rgba(12, 14, 13, 0.7), rgba(12, 14, 13, 0.05) 72%);
	}

	.home-hero__content {
		padding-left: 0;
	}

	.home-hero__content::before {
		width: 42px;
		margin-bottom: 1.2rem;
	}

	.home-hero__title {
		max-width: 8.5ch;
		font-size: clamp(3.8rem, 17vw, 5.4rem);
		line-height: 0.88;
	}

	.home-hero__text {
		margin-top: 1.35rem;
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.home-hero .btn {
		min-width: 0;
	}

	.home-wines {
		margin-top: 0;
		padding-block: 4.5rem 6rem;
		background: var(--surface);
	}

	.home-wines__heading {
		margin-bottom: 2.75rem;
	}

	.home-wines__heading .section-heading {
		font-size: clamp(3.25rem, 16vw, 4.5rem);
	}

	.home-wine__media {
		aspect-ratio: 4 / 4.35;
	}

	.home-wine .card-body {
		min-height: 290px;
	}

	.home-history {
		padding-block: 4.5rem 5.5rem;
	}

	.home-history .container-fluid {
		padding-inline: 1.25rem !important;
	}

	.home-history__image {
		aspect-ratio: 1 / 1;
	}

	.home-history__body {
		padding-top: 3rem;
	}

	.home-release__banner,
	.home-release__image {
		min-height: 430px;
	}

	.home-release__banner {
		padding: 4rem 1.5rem;
	}

	.home-release__banner .section-heading {
		font-size: clamp(3rem, 13vw, 4rem);
	}

	.home-featured .col-lg-6:first-child {
		padding: 4.5rem 1.5rem;
	}

	.home-featured__image {
		max-height: 460px;
	}

	.home-featured__body {
		padding: 4.5rem 1.25rem 5rem;
	}

	.home-featured__body .btn {
		width: 100%;
		margin-right: 0 !important;
	}

	.home-estate {
		min-height: 640px;
		padding: 4.5rem 0 3.75rem;
		background-position: 56% center;
	}

	.home-estate .section-heading {
		max-width: 8ch;
		font-size: clamp(3.5rem, 15vw, 4.8rem);
	}

	.home-estate .btn.btn-light {
		gap: 2rem;
		margin-top: 1.75rem !important;
	}

	.site-footer .col-lg-3 {
		text-align: left !important;
	}
}

/* The sticky header is the single language control; remove the duplicate floater. */
#trp-floater-ls {
	display: none !important;
}

.cantina-cookie-notice button:focus-visible,
.cantina-cookie-notice a:focus-visible,
.site-footer__cookie-settings:focus-visible {
	outline: 2px solid var(--wine);
	outline-offset: 3px;
}

.site-footer__cookie-settings {
	padding: 0;
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-decoration: underline;
	text-underline-offset: 0.25em;
	text-transform: uppercase;
}

.site-footer__cookie-settings:hover {
	color: #fff;
}

.privacy-analytics-disclosure {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
}

.privacy-analytics-disclosure h2 {
	margin-bottom: 1rem;
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 500;
}

.privacy-analytics-disclosure p {
	max-width: 78ch;
	color: var(--ink-soft);
	line-height: 1.75;
}

.cantina-cookie-notice {
	position: fixed;
	z-index: 9000;
	right: 1.25rem;
	bottom: 1.25rem;
	left: 1.25rem;
	width: min(920px, calc(100% - 2.5rem));
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 1.5rem;
	margin-inline: auto;
	padding: 1.1rem 1.2rem 1.1rem 1.35rem;
	border: 1px solid rgba(23, 23, 19, 0.18);
	background: rgba(251, 250, 246, 0.98);
	box-shadow: 0 18px 56px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(14px);
}

.cantina-cookie-notice[hidden] {
	display: none !important;
}

.cantina-cookie-notice h2 {
	margin: 0 0 0.35rem;
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
}

.cantina-cookie-notice p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.82rem;
	line-height: 1.55;
}

.cantina-cookie-notice a {
	margin-left: 0.25rem;
	color: var(--ink);
	font-weight: 700;
	text-underline-offset: 0.22em;
}

.cantina-cookie-notice__actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.cantina-cookie-notice button {
	min-height: 42px;
	padding: 0.7rem 1rem;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	white-space: nowrap;
}

.cantina-cookie-notice .cantina-cookie-notice__reject {
	background: transparent;
	color: var(--ink);
}

.cantina-cookie-notice .cantina-cookie-notice__reject:hover,
.cantina-cookie-notice .cantina-cookie-notice__accept:hover {
	background: var(--wine);
	border-color: var(--wine);
	color: #fff;
}

.single-wine__cart {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.7rem;
}

.single-wine__cart form.cart {
	min-width: 0;
}

.single-wine__quick-enquiry {
	min-height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-right: 1.2rem;
	padding-left: 1.2rem;
	font-size: 0.68rem;
	letter-spacing: 0.15em;
	white-space: nowrap;
}

.single-wine__request-note {
	margin: 0.9rem 0 0;
	padding-left: 1rem;
	border-left: 2px solid var(--wine);
	color: var(--ink-soft);
	font-size: 0.82rem;
	line-height: 1.65;
}

.single-wine__enquiry {
	margin-top: clamp(3.5rem, 7vw, 6.5rem);
	border: 1px solid var(--line);
	background: var(--paper);
	scroll-margin-top: 7rem;
}

.single-wine__enquiry-copy {
	padding: clamp(2rem, 5vw, 4.5rem);
	background: var(--ink);
	color: rgba(255, 255, 255, 0.76);
}

.single-wine__enquiry-copy .section-eyebrow {
	color: rgba(255, 255, 255, 0.58);
}

.single-wine__enquiry-copy .section-heading {
	margin-bottom: 1.5rem;
	color: #fff;
}

.single-wine__enquiry-copy p {
	max-width: 38rem;
	line-height: 1.75;
}

.single-wine__enquiry-multi {
	margin: 2rem 0 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
}

.single-wine__tally {
	min-height: 100%;
	padding: clamp(1.5rem, 4vw, 3.5rem);
	background: #f8f6f1;
}

.single-wine__tally iframe {
	display: block;
	width: 100%;
	min-height: 620px;
	border: 0;
}

/* Single wine: one continuous product story with a calm, persistent visual. */
.single-wine__visual-column {
	position: relative;
	background: #f1eee7;
}

.single-wine__content-column {
	border-left: 1px solid var(--line);
	background: var(--paper);
}

.single-wine__summary {
	border-left: 0;
}

.single-wine__assurances {
	display: grid;
	grid-template-columns: 1fr;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 0;
	border-left: 0;
}

.single-wine__assurances .assurance-item {
	min-height: 64px;
	justify-content: flex-start;
	padding: 1rem clamp(2rem, 5.3vw, 5rem);
	border-right: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.single-wine__assurances .assurance-item:last-child {
	border-bottom: 0;
}

.single-wine__details {
	padding: clamp(4rem, 7vw, 6.5rem) clamp(2.75rem, 5.3vw, 5rem);
	border-top: 1px solid var(--line);
	border-bottom: 0;
}

.single-wine__details .section-heading {
	max-width: 12ch;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
	font-size: clamp(2.75rem, 4.5vw, 4.4rem);
	line-height: 0.98;
}

.single-wine__chapter + .single-wine__chapter {
	margin-top: clamp(4.5rem, 8vw, 7rem);
	padding-top: clamp(4rem, 7vw, 6rem);
	border-top: 1px solid var(--line);
}

.single-wine__story,
.single-wine__taste {
	max-width: 31rem;
}

.single-wine__story {
	font-size: 1rem;
	line-height: 1.85;
}

.single-wine__taste {
	font-size: clamp(1.35rem, 2.25vw, 1.8rem);
	line-height: 1.6;
}

.single-wine__story > :last-child,
.single-wine__taste > :last-child {
	margin-bottom: 0;
}

.single-wine__enquiry {
	margin-top: 0;
	border: 0;
	border-top: 1px solid var(--line);
}

.single-wine__enquiry-copy,
.single-wine__tally {
	padding: clamp(2.75rem, 5.3vw, 5rem);
}

.single-wine__enquiry-copy .section-heading {
	max-width: 10ch;
	font-size: clamp(2.6rem, 4.2vw, 4rem);
	line-height: 1;
}

@media (min-width: 992px) {
	.single-wine__visual-sticky {
		position: sticky;
		top: 92px;
		height: clamp(560px, calc(100vh - 108px), 820px);
	}

	.single-wine__gallery,
	.single-wine__image-stage {
		width: 100%;
		height: 100%;
		min-height: 0;
	}

	.single-wine__image {
		max-width: 76%;
		max-height: min(68vh, 640px);
	}

	.single-wine__summary {
		min-height: clamp(620px, calc(100vh - 108px), 790px);
	}
}

@media (max-width: 991.98px) {
	.single-wine__content-column {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.single-wine__summary {
		border-top: 0;
	}
}

@media (max-width: 767.98px) {
	.single-wine__details {
		padding: 4rem 1.35rem;
	}

	.single-wine__details .section-heading {
		font-size: clamp(2.65rem, 13vw, 3.8rem);
	}

	.single-wine__chapter + .single-wine__chapter {
		margin-top: 4rem;
		padding-top: 3.5rem;
	}

	.single-wine__enquiry-copy,
	.single-wine__tally {
		padding: 2.25rem 1.35rem;
	}

	.single-wine__enquiry-copy .section-heading {
		font-size: clamp(2.5rem, 12vw, 3.6rem);
	}
}

.cantina-request-notice {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 1rem;
	margin: 0 0 2rem;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	border: 1px solid var(--ink);
	background: var(--ink);
	color: rgba(255, 255, 255, 0.72);
}

.cantina-request-notice__icon {
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50% !important;
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1;
}

.cantina-request-notice h2 {
	margin: 0 0 0.35rem;
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 2.5vw, 1.9rem);
	font-weight: 500;
}

.cantina-request-notice p {
	max-width: 75ch;
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.65;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
	max-width: 1180px;
	margin: 0 auto;
}

.woocommerce-cart .shop_table,
.woocommerce-checkout .shop_table {
	border-color: var(--line) !important;
	border-radius: 0 !important;
	background: var(--paper);
}

.woocommerce-cart .shop_table th,
.woocommerce-checkout .shop_table th {
	padding: 1rem !important;
	color: var(--muted);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.woocommerce-cart .shop_table td,
.woocommerce-checkout .shop_table td {
	padding: 1rem !important;
	border-color: var(--line) !important;
}

.woocommerce-cart .product-thumbnail img {
	width: 72px !important;
	background: var(--surface);
}

.woocommerce-cart .product-name a {
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.2rem;
	text-decoration: none;
}

.woocommerce-cart .quantity .qty {
	min-height: 44px;
	border: 1px solid var(--line);
	background: #fff;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review {
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--line);
	background: #f8f6f1;
}

.woocommerce-cart .cart_totals h2,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-billing-fields > h3 {
	margin-bottom: 1.25rem;
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 500;
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}

.woocommerce-checkout form.checkout > #customer_details {
	width: auto;
}

.woocommerce-checkout form.checkout > #customer_details .col-1,
.woocommerce-checkout form.checkout > #customer_details .col-2 {
	width: 100%;
	float: none;
}

.woocommerce-checkout form.checkout > #customer_details .col-2 {
	margin-top: 2rem;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
	width: auto;
	float: none;
}

.woocommerce-checkout #order_review_heading {
	grid-column: 2;
	margin: 0 0 -1.2rem;
}

.woocommerce-checkout #order_review {
	grid-column: 2;
}

.woocommerce-checkout #customer_details {
	grid-row: 1 / span 3;
}

.woocommerce-checkout form .form-row label {
	margin-bottom: 0.45rem;
	color: var(--muted);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
	min-height: 50px;
	border: 1px solid var(--line);
	border-radius: 0 !important;
	background: #fff;
}

.woocommerce-checkout .select2-container .select2-selection--single {
	padding: 0.65rem 0.75rem;
}

.woocommerce-checkout #payment {
	border-radius: 0 !important;
	background: transparent !important;
}

.woocommerce-checkout #payment ul.payment_methods {
	padding: 1.1rem !important;
	border: 1px solid var(--line) !important;
	background: #fff;
}

.woocommerce-checkout #payment div.payment_box {
	margin-bottom: 0 !important;
	background: var(--surface) !important;
	color: var(--ink-soft) !important;
	font-size: 0.86rem;
	line-height: 1.65;
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--surface) !important;
}

.woocommerce-checkout #place_order {
	width: 100%;
	min-height: 58px;
	margin-top: 0.75rem;
	background: var(--wine) !important;
	letter-spacing: 0.16em;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-checkout #place_order:focus-visible {
	background: var(--ink) !important;
}

.cantina-checkout-age {
	margin: 1.25rem 0;
	padding: 1rem 1.1rem;
	border: 1px solid var(--line);
	background: var(--surface);
}

.cantina-checkout-age .form-row {
	margin: 0;
}

.cantina-checkout-age label {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin: 0;
	color: var(--ink);
	font-size: 0.88rem;
	line-height: 1.55;
}

.cantina-checkout-age input[type="checkbox"] {
	flex: 0 0 auto;
	margin-top: 0.2rem;
}

@media (max-width: 575.98px) {
	.single-wine__cart {
		grid-template-columns: 1fr;
	}

	.single-wine__cart form.cart {
		width: 100%;
	}

	.single-wine__quick-enquiry {
		width: 100%;
	}

	.single-wine__enquiry-copy,
	.single-wine__tally {
		padding: 1.5rem;
	}

	.single-wine__tally iframe {
		min-height: 700px;
	}

	.woocommerce-checkout form.checkout {
		display: block;
	}

	.woocommerce-checkout #order_review_heading {
		margin-top: 2.5rem;
	}

	.woocommerce-cart .shop_table_responsive tr td::before {
		color: var(--muted);
		font-size: 0.62rem;
		letter-spacing: 0.12em;
		text-transform: uppercase;
	}

	.cantina-cookie-notice {
		right: 0.75rem;
		bottom: 0.75rem;
		left: 0.75rem;
		width: auto;
		grid-template-columns: 1fr;
		gap: 0.85rem;
		padding: 1rem;
	}

	.cantina-cookie-notice__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.cantina-cookie-notice button {
		width: 100%;
	}
}

@media (max-width: 374.98px) {
	.home-wine__actions {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
