.th-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	font-family: var(--font-label);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transition:
		transform var(--transition-base),
		background-color var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base);
}

.th-button span {
	position: relative;
	z-index: 2;
}

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

.th-button--primary {
	background: var(--th-wine);
	color: var(--th-white);
}

.th-button--primary:hover {
	background: var(--th-red);
}

.th-button--glass {
	background: rgb(var(--th-white-rgb) / 0.08);
	border-color: rgb(var(--th-white-rgb) / 0.22);
	color: var(--th-white);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.th-button--glass:hover {
	background: rgb(var(--th-white-rgb) / 0.16);
	border-color: rgb(var(--th-white-rgb) / 0.38);
}

.th-button--header {
	min-height: 44px;
	padding-inline: 22px;
	background: var(--th-wine);
	color: var(--th-white);
}

.th-button--header:hover {
	background: var(--th-red);
}

@media (max-width: 1023px) {
	.th-button--header {
		display: none;
	}
}

@media (max-width: 600px) {
	.th-button {
		width: 100%;
		min-height: 54px;
	}
}