.tlh-cookie-consent-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
	z-index: 999999;
	display: none;
}

.tlh-cookie-consent-overlay.is-visible {
	display: block;
}

.tlh-cookie-consent-modal {
	position: fixed;
	left: 50%;
	top: 50%;
	width: min(880px, calc(100vw - 32px));
	max-width: calc(100vw - 32px);
	max-height: calc(100vh - 32px);
	transform: translate(-50%, -50%);
	background: #fff;
	color: #111;
	z-index: 1000000;
	display: none;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
	overflow: hidden;
	box-sizing: border-box;
}

.tlh-cookie-consent-modal.is-visible {
	display: block;
}

.tlh-cookie-consent-inner {
	padding: 38px 40px 34px;
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	box-sizing: border-box;
}

.tlh-cookie-consent-title {
	font-family: "Shippori Mincho", serif;
	font-size: 15px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 18px;
	text-align: center;
}

.tlh-cookie-consent-text {
	font-family: "Shippori Mincho", serif;
	font-size: 16px;
	line-height: 1.7;
	color: #222;
	margin: 0 0 22px;
	text-align: center;
}

.tlh-cookie-consent-links {
	margin: 0 0 20px;
	font-family: "Shippori Mincho", serif;
	font-size: 14px;
	text-align: left;
}

.tlh-cookie-consent-links a {
	color: #111;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tlh-cookie-consent-actions {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 24px;
}

.tlh-cookie-btn {
	appearance: none;
	border: 1px solid #111;
	background: #fff;
	color: #111;
	padding: 12px 22px;
	cursor: pointer;
	font-family: "Shippori Mincho", serif;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
	box-sizing: border-box;
	text-align: center;
}

.tlh-cookie-consent-modal .tlh-cookie-btn:hover {
	background: #fff !important;
	color: #FF6A00 !important;
	border-color: #FF6A00 !important;
}

.tlh-cookie-consent-modal .tlh-cookie-btn.tlh-cookie-btn-secondary {
	border: none !important;
	background: transparent !important;
	padding: 0 !important;
	margin-left: 6px;
	color: #111 !important;
	font-family: "Shippori Mincho", serif;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.tlh-cookie-consent-modal .tlh-cookie-btn.tlh-cookie-btn-secondary:hover {
	background: transparent !important;
	color: #FF6A00 !important;
	border: none !important;
	text-decoration: underline !important;
}

.tlh-cookie-config {
	display: none;
	margin-top: 24px;
	border-top: 1px solid #e5e5e5;
	padding-top: 18px;
}

.tlh-cookie-config.is-visible {
	display: block;
}

.tlh-cookie-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: start;
	padding: 12px 0;
	border-bottom: 1px solid #efefef;
}

.tlh-cookie-row:last-child {
	border-bottom: none;
}

.tlh-cookie-row-title {
	font-family: "Shippori Mincho", serif;
	font-size: 15px;
	margin: 0 0 6px;
}

.tlh-cookie-row-text {
	font-family: "Shippori Mincho", serif;
	font-size: 14px;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

.tlh-cookie-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Shippori Mincho", serif;
	font-size: 13px;
}

.tlh-cookie-toggle input {
	width: 16px;
	height: 16px;
	accent-color: #111;
}

body.tlh-cookie-open {
	overflow: hidden;
}

/* Account page cookie card */
.tlh-account-cookie-card {
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	padding: 36px 32px 34px;
	margin-top: 28px;
	text-align: center;
}

.tlh-account-cookie-card__title {
	font-family: "Shippori Mincho", serif;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #111;
	margin: 0 0 18px;
	text-align: center;
}

.tlh-account-cookie-card__text {
	font-family: "Shippori Mincho", serif;
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin: 18px auto 42px;
	text-align: center;
	max-width: 760px;
}

.tlh-account-cookie-card__button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 12px;
	min-width: 380px;
	text-align: center;
	white-space: normal;
	line-height: 1.3;
	text-shadow: none !important;
}

.tlh-account-cookie-card__button:hover,
.tlh-account-cookie-card__button:focus,
.tlh-account-cookie-card__button:active {
	background: #fff !important;
	color: #FF6A00 !important;
	border-color: #FF6A00 !important;
	text-shadow: none !important;
	box-shadow: none !important;
}

/* Mobile */
@media screen and (max-width: 767px) {
	.tlh-cookie-consent-modal {
		left: 10px;
		right: 10px;
		top: 10px;
		bottom: 10px;
		width: auto;
		max-width: none;
		max-height: none;
		transform: none;
	}

	.tlh-cookie-consent-inner {
		padding: 20px 14px 20px;
		height: 100%;
		max-height: none;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.tlh-cookie-consent-title {
		font-size: 13px;
		line-height: 1.35;
		margin: 0 0 12px;
	}

	.tlh-cookie-consent-text {
		font-size: 13px;
		line-height: 1.6;
		margin: 0 0 16px;
	}

	.tlh-cookie-consent-links {
		font-size: 12px;
		margin: 0 0 16px;
	}

	.tlh-cookie-consent-actions {
		gap: 10px;
		margin-top: 18px;
	}

	.tlh-cookie-btn {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 14px 12px;
		font-size: 10px;
		letter-spacing: 0.03em;
		line-height: 1.3;
		white-space: normal;
		word-break: break-word;
	}

	.tlh-cookie-consent-modal .tlh-cookie-btn.tlh-cookie-btn-secondary {
		width: auto;
		font-size: 10px;
		letter-spacing: 0.03em;
		padding: 0 !important;
		margin-left: 0;
	}

	.tlh-cookie-config {
		margin-top: 20px;
		padding-top: 16px;
	}

	.tlh-cookie-row {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 14px 0;
	}

	.tlh-cookie-row-title {
		font-size: 14px;
	}

	.tlh-cookie-row-text {
		font-size: 13px;
		line-height: 1.55;
	}

	.tlh-cookie-toggle {
		font-size: 12px;
		align-items: center;
	}

	.tlh-account-cookie-card {
		padding: 24px 16px 24px;
	}

	.tlh-account-cookie-card__title {
		font-size: 20px;
		margin: 0 0 14px;
	}

	.tlh-account-cookie-card__text {
		font-size: 14px;
		line-height: 1.65;
		margin: 16px auto 30px;
	}

	.tlh-account-cookie-card__button {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		padding: 13px 10px;
		margin-top: 8px;
		text-shadow: none !important;
		font-size: 9px;
		letter-spacing: 0.02em;
		line-height: 1.25;
		white-space: normal;
		word-break: break-word;
	}	
}