body.ws-cookie-consent-open {
	overflow: hidden;
}

.ws-cookie-consent {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(10, 4, 8, 0.82);
	backdrop-filter: blur(6px);
	transition: opacity 0.32s ease;
}

.ws-cookie-consent.is-hiding {
	opacity: 0;
	pointer-events: none;
}

.ws-cookie-consent__dialog {
	width: 100%;
	max-width: 520px;
	max-height: min(92vh, 860px);
	overflow-y: auto;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
	scrollbar-width: thin;
	scrollbar-color: var(--border) transparent;
	animation: ws-cookie-consent-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ws-cookie-consent__dialog::-webkit-scrollbar {
	width: 4px;
}

.ws-cookie-consent__dialog::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 4px;
}

@keyframes ws-cookie-consent-in {
	from {
		transform: translateY(28px) scale(0.96);
		opacity: 0;
	}
	to {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}

.ws-cookie-consent__hero {
	position: relative;
	padding: 30px 28px 24px;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(135deg, #5a0f1c 0%, #8b1a2b 60%, #b8293d 100%);
}

.ws-cookie-consent__hero::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.ws-cookie-consent__hero::after {
	content: "";
	position: absolute;
	bottom: -40px;
	left: -40px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
}

.ws-cookie-consent__logo {
	display: block;
	height: 24px;
	width: auto;
	margin: 0 auto 12px;
	filter: brightness(0) invert(1);
}

.ws-cookie-consent__brand {
	margin: 0 0 14px;
	font-family: var(--serif);
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.ws-cookie-consent__intro {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}

.ws-cookie-consent__body {
	padding: 22px 26px;
}

.ws-cookie-consent__age-block {
	margin-bottom: 18px;
	padding: 16px 18px;
	border: 1.5px solid var(--border);
	border-radius: 14px;
	background: var(--bg-nav, #f8f5f0);
}

.ws-cookie-consent__age-label {
	display: block;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--muted);
}

.ws-cookie-consent__age-toggle {
	display: flex;
	gap: 8px;
}

.ws-cookie-consent__age-button {
	flex: 1;
	padding: 11px;
	border: 2px solid var(--border);
	border-radius: 10px;
	background: var(--white);
	color: var(--muted);
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.ws-cookie-consent__age-button:hover:not(.is-active) {
	background: var(--bg-nav, #f8f5f0);
}

.ws-cookie-consent__age-button--yes.is-active {
	border-color: #22863a;
	background: #f0faf3;
	color: #22863a;
}

.ws-cookie-consent__age-button--no.is-active {
	border-color: var(--wine);
	background: #fdedef;
	color: var(--wine);
}

.ws-cookie-consent__underage {
	display: none;
	margin-bottom: 14px;
	padding: 12px 14px;
	border: 1.5px solid rgba(139, 26, 43, 0.2);
	border-radius: 10px;
	background: #fdedef;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
	color: var(--wine);
}

.ws-cookie-consent__underage.is-visible {
	display: block;
}

.ws-cookie-consent__cookie-shell {
	padding-top: 14px;
	border-top: 1px solid var(--border);
	transition: opacity 0.25s ease;
}

.ws-cookie-consent__cookie-shell.is-disabled {
	opacity: 0.35;
	pointer-events: none;
	user-select: none;
}

.ws-cookie-consent__config-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 0 0 10px;
	border: 0;
	background: none;
	cursor: pointer;
	text-align: left;
}

.ws-cookie-consent__config-copy {
	min-width: 0;
}

.ws-cookie-consent__config-toggle .ws-cookie-consent__eyebrow {
	margin-bottom: 2px;
}

.ws-cookie-consent__config-text {
	display: block;
	font-size: 11px;
	line-height: 1.45;
	color: var(--muted);
}

.ws-cookie-consent__config-action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--wine);
}

.ws-cookie-consent__config-action i {
	font-size: 10px;
	transition: transform 0.2s ease;
}

.ws-cookie-consent__config-toggle[aria-expanded="true"] .ws-cookie-consent__config-action i {
	transform: rotate(180deg);
}

.ws-cookie-consent__cookie-panel {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.32s ease, opacity 0.22s ease;
}

.ws-cookie-consent__cookie-panel.is-open {
	max-height: 960px;
	opacity: 1;
}

.ws-cookie-consent__section {
	border-top: 0;
	padding-top: 0;
}

.ws-cookie-consent__eyebrow {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--muted);
}

.ws-cookie-consent__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(224, 219, 212, 0.5);
}

.ws-cookie-consent__row:last-of-type {
	border-bottom: none;
}

.ws-cookie-consent__row-copy {
	min-width: 0;
	flex: 1;
}

.ws-cookie-consent__row-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 1px;
}

.ws-cookie-consent__row-name {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text);
}

.ws-cookie-consent__badge {
	padding: 2px 5px;
	border-radius: 4px;
	background: #f0faf3;
	color: #22863a;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ws-cookie-consent__row-desc {
	font-size: 11px;
	line-height: 1.4;
	color: var(--muted);
}

.ws-cookie-consent__more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin-top: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font-family: var(--sans);
	font-size: 10px;
	color: var(--muted);
	white-space: nowrap;
	flex-shrink: 0;
	transition: color 0.15s ease;
}

.ws-cookie-consent__more:hover {
	color: var(--wine);
}

.ws-cookie-consent__more i {
	font-size: 9px;
	transition: transform 0.2s ease;
}

.ws-cookie-consent__more[aria-expanded="true"] i {
	transform: rotate(90deg);
}

.ws-cookie-consent__detail {
	max-height: 0;
	overflow: hidden;
	padding-top: 0;
	font-size: 11px;
	line-height: 1.55;
	color: var(--muted);
	transition: max-height 0.28s ease, padding 0.28s ease;
}

.ws-cookie-consent__detail.is-open {
	max-height: 180px;
	padding-top: 4px;
}

.ws-cookie-consent__toggle {
	position: relative;
	flex-shrink: 0;
	width: 44px;
	height: 24px;
}

.ws-cookie-consent__toggle input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ws-cookie-consent__toggle-track {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	background: var(--border);
	cursor: pointer;
	transition: background 0.2s ease;
}

.ws-cookie-consent__toggle-track::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease;
}

.ws-cookie-consent__toggle input:checked + .ws-cookie-consent__toggle-track {
	background: var(--wine);
}

.ws-cookie-consent__toggle input:checked + .ws-cookie-consent__toggle-track::after {
	transform: translateX(20px);
}

.ws-cookie-consent__toggle input:disabled + .ws-cookie-consent__toggle-track {
	background: #22863a;
	cursor: default;
	opacity: 0.88;
}

.ws-cookie-consent__toggle input:disabled + .ws-cookie-consent__toggle-track::after {
	transform: translateX(20px);
}

.ws-cookie-consent__legal {
	margin: 10px 0 6px;
	font-size: 10.5px;
	line-height: 1.5;
	text-align: center;
	color: var(--muted);
}

.ws-cookie-consent__legal a {
	color: var(--wine);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ws-cookie-consent__actions {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.ws-cookie-consent__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	min-height: 46px;
	padding: 14px;
	border-radius: 10px;
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.1s ease;
}

.ws-cookie-consent__button:active {
	transform: scale(0.98);
}

.ws-cookie-consent__button:disabled {
	cursor: not-allowed;
	transform: none;
}

.ws-cookie-consent__button--primary {
	border: 0;
	background: var(--wine);
	color: #fff;
}

.ws-cookie-consent__button--primary:hover {
	background: var(--wine-dark);
}

.ws-cookie-consent__button--enter {
	margin-top: 10px;
}

.ws-cookie-consent__button-row {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.ws-cookie-consent__button--secondary,
.ws-cookie-consent__button--ghost {
	flex: 0 0 auto;
	width: auto;
	min-height: 40px;
	padding: 10px 14px;
	border: 1.5px solid var(--border);
	background: none;
	color: var(--text);
	font-size: 10.5px;
	letter-spacing: 0.05em;
}

.ws-cookie-consent__button--secondary:hover,
.ws-cookie-consent__button--ghost:hover {
	border-color: var(--wine);
	color: var(--wine);
}

.ws-cookie-consent__button--primary:disabled {
	background: var(--border);
	color: var(--muted);
}

.ws-cookie-consent__button--secondary:disabled,
.ws-cookie-consent__button--ghost:disabled {
	border-color: var(--border);
	color: var(--muted);
	opacity: 0.45;
}

@media (max-width: 480px) {
	.ws-cookie-consent {
		padding: 12px;
	}

	.ws-cookie-consent__hero {
		padding: 24px 20px 20px;
	}

	.ws-cookie-consent__body {
		padding: 18px;
	}

	.ws-cookie-consent__config-toggle {
		align-items: flex-start;
	}

	.ws-cookie-consent__config-action {
		margin-top: 2px;
	}

	.ws-cookie-consent__age-toggle {
		flex-direction: column;
	}
}
