/**
 * Navigation — Header, mobile menu, footer nav
 *
 * @package Svaros_Partneriai
 */

/* ============================
   Top bar
   ============================ */
.site-header__top-bar {
	background: var(--sp-color-gray-900);
	color: var(--sp-color-gray-300);
	font-size: var(--sp-text-xs);
	padding: var(--sp-space-2) 0;
}

.site-header__top-info {
	display: flex;
	align-items: center;
	gap: var(--sp-space-6);
	justify-content: flex-end;
}

.site-header__phone,
.site-header__email {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-space-2);
	color: var(--sp-color-gray-300);
	transition: color var(--sp-transition-fast);
}

.site-header__phone:hover,
.site-header__email:hover {
	color: var(--sp-color-white);
}

@media (max-width: 639px) {
	.site-header__email {
		display: none;
	}
}

/* ============================
   Main header
   ============================ */
.site-header__main {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: var(--sp-z-sticky);
	transition: all var(--sp-transition-base);
}

/* Home page: absolute positioning until scroll */
.site-header--home .site-header__main {
	position: absolute;
	width: 100%;
}

.site-header--home .site-header__main.is-scrolled {
	position: fixed;
}

.site-header__main.is-scrolled {
	background: var(--sp-color-white);
	border-bottom: 1px solid var(--sp-color-border-light);
	box-shadow: var(--sp-shadow-md);
}

/* Ensure header buttons are rounded */
.site-header__cta .btn {
	border-radius: 100px;
	font-weight: 800;
	padding: 10px 24px;
}

.site-header__main.is-scrolled .site-header__inner {
	padding: var(--sp-space-2) 0;
}

.site-header__main.is-scrolled .site-header__logo img,
.site-header__main.is-scrolled .site-header__logo .custom-logo,
.site-header__main.is-scrolled .site-logo {
	max-height: 28px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-space-6);
	padding: var(--sp-space-4) 0;
	transition: padding var(--sp-transition-base);
}

/* Logo */
.site-header__logo a {
	display: inline-flex;
	align-items: center;
}

.site-header__logo img,
.site-header__logo .custom-logo,
.site-logo {
	max-height: 32px;
	width: auto;
	transition: max-height var(--sp-transition-base);
}

@media (max-width: 767px) {
	.site-header__logo img,
	.site-header__logo .custom-logo,
	.site-logo {
		max-height: 42px;
	}
}

.site-header__logo-text {
	font-size: var(--sp-text-xl);
	font-weight: var(--sp-font-bold);
	color: var(--sp-color-primary);
}

/* Navigation */
@media (min-width: 1024px) {
	.site-header__nav {
		display: flex;
		flex: 1;
		justify-content: center;
	}
	.site-header__nav-inner {
		display: contents;
	}
	.site-header__nav-heading,
	.site-header__nav-footer {
		display: none;
	}
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: var(--sp-space-1);
}

.nav-menu > li {
	position: relative;
}

.nav-menu > li > a {
	display: inline-flex;
	align-items: center;
	padding: var(--sp-space-2) var(--sp-space-3);
	font-size: var(--sp-text-sm);
	font-weight: 700;
	color: #1d1e20;
	letter-spacing: 0.03em;
	border-radius: var(--sp-radius-md);
	transition: all var(--sp-transition-fast);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-page-ancestor > a {
	color: #00aeef;
	background-color: rgba(0, 174, 239, 0.05);
}

/* "NAUJA" badge on the Parduotuvė nav link — applies site-wide.
   Only the badge is always-on; the blue color is left to the
   default current-menu-item rule so the link only looks active
   when the user is actually on /parduotuve/. */
.nav-menu a[href*="parduotuve"] {
	position: relative;
}

.nav-menu a[href*="parduotuve"]::after {
	content: 'NAUJA';
	position: absolute;
	top: -5px;
	right: -10px;
	background: #ff4d4d;
	color: white;
	font-size: 8px;
	padding: 2px 5px;
	border-radius: 4px;
	font-weight: 900;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 10px rgba(255,77,77,0.3);
}

/* Dropdown */
.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	padding: var(--sp-space-2);
	background: var(--sp-color-white);
	border: 1px solid var(--sp-color-border-light);
	border-radius: var(--sp-radius-lg);
	box-shadow: var(--sp-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--sp-transition-fast);
	z-index: var(--sp-z-dropdown);
}

.nav-menu > li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu .sub-menu a {
	display: block;
	padding: var(--sp-space-2) var(--sp-space-3);
	font-size: var(--sp-text-sm);
	color: var(--sp-color-gray-700);
	border-radius: var(--sp-radius-md);
	transition: all var(--sp-transition-fast);
}

.nav-menu .sub-menu a:hover {
	background-color: var(--sp-color-primary-bg);
	color: var(--sp-color-primary);
}

/* CTA button in header */
.site-header__cta {
	display: none;
}

@media (min-width: 1024px) {
	.site-header__cta {
		display: flex;
		align-items: center;
		gap: var(--sp-space-3);
	}
}

/* Desktop account link — subtle text-style link to My Bookings */
.site-header__account {
	display: none;
}

@media (min-width: 1024px) {
	.site-header__account {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 8px 4px;
		font-size: 13px;
		font-weight: 700;
		color: rgba(29, 30, 32, 0.75);
		letter-spacing: 0.02em;
		text-decoration: none;
		transition: color 0.2s ease;
	}

	.site-header__account svg {
		color: #00aeef;
		flex-shrink: 0;
	}

	.site-header__account:hover {
		color: #00aeef;
	}
}

/* ============================
   Mobile menu toggle
   ============================ */
.site-header__menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}

@media (min-width: 1024px) {
	.site-header__menu-toggle {
		display: none;
	}
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 24px;
}

.hamburger__line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--sp-color-gray-800);
	border-radius: 2px;
	transition: all var(--sp-transition-fast);
	transform-origin: center;
}

/* Hamburger → X animation */
.site-header__menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(2) {
	opacity: 0;
}

.site-header__menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   Mobile menu — slide-in panel with backdrop
   ============================ */
@media (max-width: 1023px) {

	/* Header layout: hamburger left, logo centered, cart right */
	.site-header__inner {
		position: relative;
	}

	.site-header__menu-toggle {
		order: -1;
	}

	.site-header__logo {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		margin: 0;
	}

	.site-header__logo a {
		display: block;
	}

	/* Disable backdrop-filter on main header at mobile. It creates a
	   containing block that traps the fixed .site-header__nav panel. */
	.site-header__main {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: #ffffff;
	}

	/* Full-viewport overlay. Backdrop fades in behind the panel. */
	.site-header__nav {
		position: fixed;
		inset: 0;
		z-index: var(--sp-z-fixed);
		display: block;
		background: rgba(29, 30, 32, 0);
		-webkit-backdrop-filter: blur(0px);
		backdrop-filter: blur(0px);
		visibility: hidden;
		pointer-events: none;
		transition:
			background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
			backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
			-webkit-backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
			visibility 0s linear 0.5s;
	}

	.site-header__nav.is-open {
		background: rgba(29, 30, 32, 0.3);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		visibility: visible;
		pointer-events: auto;
		transition:
			background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
			backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
			-webkit-backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
			visibility 0s linear 0s;
	}

	/* Keep the hamburger/X above the sliding panel so the menu stays closable. */
	.site-header__main,
	.site-header__menu-toggle {
		z-index: calc(var(--sp-z-fixed) + 5);
	}
	.site-header__main {
		position: sticky;
	}

	/* Sliding panel — full-width on mobile, side-cart polish */
	.site-header__nav-inner {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-width: 100vw;
		background: #ffffff;
		padding: 92px 24px 32px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		display: flex;
		flex-direction: column;
		gap: 28px;
		transform: translateX(100%);
		box-shadow: -30px 0 80px rgba(0, 0, 0, 0);
		transition:
			transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
			box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	}

	.site-header__nav.is-open .site-header__nav-inner {
		transform: translateX(0);
		box-shadow: -30px 0 80px rgba(0, 0, 0, 0.15);
	}

	/* Drawer heading — matches side-cart title treatment */
	.site-header__nav-heading {
		display: flex;
		align-items: center;
		padding: 0 4px 16px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		margin-bottom: 4px;
	}

	.site-header__nav-title {
		font-size: 18px;
		font-weight: 900;
		letter-spacing: -0.02em;
		color: #1d1e20;
	}

	/* Menu list — full-width rows */
	.site-header__nav .nav-menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		flex: 1;
	}

	.site-header__nav .nav-menu > li {
		position: relative;
	}

	.site-header__nav .nav-menu > li > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 18px;
		font-size: 16px;
		font-weight: 700;
		color: #1d1e20;
		text-transform: none;
		letter-spacing: -0.01em;
		border-radius: 14px;
		background: transparent;
		transition:
			background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
			color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
	}

	/* Right-chevron affordance appended to every top-level link */
	.site-header__nav .nav-menu > li > a::after {
		content: '';
		width: 16px;
		height: 16px;
		flex-shrink: 0;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1e20' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
		background-size: contain;
		background-repeat: no-repeat;
		opacity: 0.35;
		transition:
			transform 0.3s cubic-bezier(0.2, 0, 0, 1),
			opacity 0.3s cubic-bezier(0.2, 0, 0, 1);
	}

	.site-header__nav .nav-menu > li > a:active {
		transform: scale(0.985);
	}

	.site-header__nav .nav-menu > li > a:hover,
	.site-header__nav .nav-menu > li.current-menu-item > a,
	.site-header__nav .nav-menu > li.current-page-ancestor > a {
		background: rgba(0, 174, 239, 0.08);
		color: #00aeef;
	}

	.site-header__nav .nav-menu > li > a:hover::after,
	.site-header__nav .nav-menu > li.current-menu-item > a::after,
	.site-header__nav .nav-menu > li.current-page-ancestor > a::after {
		opacity: 1;
		transform: translateX(3px);
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300aeef' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
	}

	/* NAUJA badge — reposition for inline menu layout */
	.site-header__nav .nav-menu a[href*="parduotuve"]::before {
		content: 'NAUJA';
		position: absolute;
		top: 50%;
		right: 40px;
		transform: translateY(-50%);
		background: #ff4d4d;
		color: #ffffff;
		font-size: 9px;
		padding: 2px 6px;
		border-radius: 4px;
		font-weight: 900;
		letter-spacing: 0.05em;
		box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3);
	}
	.site-header__nav .nav-menu a[href*="parduotuve"]::after {
		display: none; /* suppress original site-wide NAUJA + chevron conflict */
	}
	.site-header__nav .nav-menu > li > a[href*="parduotuve"] {
		padding-right: 58px;
	}

	/* Sub-menu inline, indented, subtle left rail */
	.site-header__nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		background: transparent;
		padding: 4px 0 8px 20px;
		margin-left: 18px;
		border-left: 1.5px solid rgba(0, 174, 239, 0.18);
		min-width: 0;
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.site-header__nav .sub-menu a {
		padding: 10px 14px;
		font-size: 14px;
		font-weight: 500;
		color: rgba(29, 30, 32, 0.7);
		border-radius: 10px;
	}

	.site-header__nav .sub-menu a:hover {
		background: rgba(0, 174, 239, 0.06);
		color: #00aeef;
	}

	/* Footer block: CTA + contacts */
	.site-header__nav-footer {
		display: flex;
		flex-direction: column;
		gap: 18px;
		padding-top: 20px;
		border-top: 1px solid rgba(29, 30, 32, 0.08);
	}

	.site-header__nav-cta {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 16px 20px;
		background: #00aeef;
		color: #ffffff;
		font-size: 14px;
		font-weight: 800;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		border-radius: 100px;
		text-decoration: none;
		box-shadow: 0 10px 24px rgba(0, 174, 239, 0.28);
		transition:
			background 0.3s cubic-bezier(0.2, 0, 0, 1),
			box-shadow 0.3s cubic-bezier(0.2, 0, 0, 1),
			transform 0.18s cubic-bezier(0.2, 0, 0, 1);
	}

	.site-header__nav-cta svg {
		transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
	}

	.site-header__nav-cta:hover {
		background: #0ab8f3;
		color: #ffffff;
		box-shadow: 0 14px 30px rgba(0, 174, 239, 0.36);
	}

	.site-header__nav-cta:hover svg {
		transform: translateX(3px);
	}

	.site-header__nav-cta:active {
		transform: scale(0.985);
	}

	.site-header__nav-account {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 14px 20px;
		background: #ffffff;
		color: #1d1e20;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.03em;
		border: 1px solid rgba(29, 30, 32, 0.12);
		border-radius: 100px;
		text-decoration: none;
		transition:
			background 0.3s cubic-bezier(0.2, 0, 0, 1),
			border-color 0.3s cubic-bezier(0.2, 0, 0, 1),
			color 0.3s cubic-bezier(0.2, 0, 0, 1);
	}

	.site-header__nav-account svg {
		color: #00aeef;
		flex-shrink: 0;
	}

	.site-header__nav-account:hover {
		background: rgba(0, 174, 239, 0.06);
		border-color: rgba(0, 174, 239, 0.3);
		color: #00aeef;
	}

	.site-header__nav-contacts {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.site-header__nav-contact {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px 14px;
		font-size: 13px;
		font-weight: 600;
		color: rgba(29, 30, 32, 0.7);
		border-radius: 10px;
		background: rgba(0, 0, 0, 0.02);
		transition:
			background 0.3s cubic-bezier(0.2, 0, 0, 1),
			color 0.3s cubic-bezier(0.2, 0, 0, 1);
	}

	.site-header__nav-contact svg {
		color: #00aeef;
		flex-shrink: 0;
	}

	.site-header__nav-contact:hover {
		background: rgba(0, 174, 239, 0.08);
		color: #00aeef;
	}

	/* When menu is open, make sure any absolute header still looks right */
	body.menu-open {
		overflow: hidden;
	}
}

/* ============================
   Hamburger polish — smoother X transition
   ============================ */
.hamburger {
	position: relative;
	width: 22px;
	height: 16px;
}

.hamburger__line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--sp-color-gray-800);
	border-radius: 2px;
	transform-origin: center;
	transition:
		transform 0.35s cubic-bezier(0.2, 0, 0, 1),
		top 0.35s cubic-bezier(0.2, 0, 0, 1),
		opacity 0.2s ease;
}

.hamburger__line:nth-child(1) { top: 0; }
.hamburger__line:nth-child(2) { top: 7px; }
.hamburger__line:nth-child(3) { top: 14px; }

.site-header__menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(1) {
	top: 7px;
	transform: rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.site-header__menu-toggle[aria-expanded="true"] .hamburger__line:nth-child(3) {
	top: 7px;
	transform: rotate(-45deg);
}

/* ============================
   Cart in header (inline)
   ============================ */
.site-header__cart-link {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: var(--sp-color-gray-700);
	padding: var(--sp-space-2);
	border-radius: var(--sp-radius-full);
	transition: color 0.3s;
}

.site-header__cart-link:hover {
	color: var(--sp-color-primary);
}

.site-header__cart-count {
	position: absolute;
	top: -2px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: var(--sp-color-accent);
	color: var(--sp-color-white);
	font-size: 11px;
	font-weight: var(--sp-font-bold);
	line-height: 18px;
	text-align: center;
	border-radius: var(--sp-radius-full);
}

/* ============================
   Footer navigation — refined "premium" treatment.
   Thin cyan-to-transparent accent at the top edge, generous vertical
   rhythm, uppercase letter-spaced headings, the brand description gets
   real breathing room. The hours column was removed; grid is now 2fr
   for the brand block and 1fr per nav column.
   ============================ */
.site-footer {
	position: relative;
	background: var(--sp-color-gray-900);
	color: var(--sp-color-gray-300);
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(0, 174, 239, 0.55) 50%,
		transparent 100%
	);
	pointer-events: none;
}

.site-footer__main {
	padding: var(--sp-space-6) 0 var(--sp-space-8);
}

@media (min-width: 768px) {
	.site-footer__main {
		padding: var(--sp-space-10) 0 var(--sp-space-12);
	}
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-space-10);
}

@media (min-width: 640px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--sp-space-12);
	}
}

@media (min-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: 2fr 1fr 1fr;
		gap: var(--sp-space-16, 64px);
	}
}

.site-footer__logo {
	margin-bottom: var(--sp-space-6);
}

.site-footer__logo img,
.site-footer__logo .custom-logo {
	max-height: 40px;
	width: auto;
	display: block;
}

.site-footer__brand {
	font-size: var(--sp-text-xl);
	font-weight: var(--sp-font-bold);
	color: var(--sp-color-white);
}

.site-footer__description {
	margin-top: var(--sp-space-4);
	max-width: 38ch;
	font-size: var(--sp-text-sm);
	line-height: 1.7;
	color: var(--sp-color-gray-400);
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: var(--sp-space-2);
	margin-top: var(--sp-space-4);
}

.site-footer__link {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-space-2);
	font-size: var(--sp-text-sm);
	color: var(--sp-color-gray-400);
	transition: color var(--sp-transition-fast);
}

.site-footer__link:hover {
	color: var(--sp-color-white);
}

.site-footer__social {
	display: flex;
	gap: var(--sp-space-2);
	margin-top: var(--sp-space-4);
	list-style: none;
	padding: 0;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--sp-color-gray-400);
	transition: background var(--sp-transition-fast), color var(--sp-transition-fast), transform var(--sp-transition-fast), border-color var(--sp-transition-fast);
}

.site-footer__social-link:hover {
	background: var(--sp-color-primary, #00aeef);
	border-color: var(--sp-color-primary, #00aeef);
	color: var(--sp-color-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.25);
}

.site-footer__heading {
	font-size: var(--sp-text-xs, 12px);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sp-color-white);
	margin-bottom: var(--sp-space-5);
}

.site-footer__list {
	display: flex;
	flex-direction: column;
	gap: var(--sp-space-3);
}

.site-footer__list a {
	position: relative;
	font-size: var(--sp-text-sm);
	color: var(--sp-color-gray-400);
	transition: color var(--sp-transition-fast), transform var(--sp-transition-fast);
}

.site-footer__list a:hover {
	color: var(--sp-color-white);
	transform: translateX(2px);
}

/* Footer bottom */
.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: var(--sp-space-6) 0;
}

.site-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	gap: var(--sp-space-4);
	align-items: center;
	text-align: center;
}

@media (min-width: 768px) {
	.site-footer__bottom-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.site-footer__copyright {
	font-size: var(--sp-text-xs);
	color: var(--sp-color-gray-500);
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--sp-space-4) var(--sp-space-6);
}

.site-footer__legal a {
	font-size: var(--sp-text-xs);
	color: var(--sp-color-gray-500);
	transition: color var(--sp-transition-fast);
}

.site-footer__legal a:hover {
	color: var(--sp-color-white);
}

/* Cookie settings re-open button inherits legal link look */
.site-footer__legal .sp-cookie-reopen {
	font-size: var(--sp-text-xs);
	color: var(--sp-color-gray-500);
	cursor: pointer;
}

.site-footer__legal .sp-cookie-reopen:hover {
	color: var(--sp-color-white);
	opacity: 1;
}
