/* RAAKO site — header, hero, content, footer, responsive */

/* ----- Header ----- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--color-surface);
	box-shadow: var(--shadow-sm);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-h);
	padding-block: 0.65rem;
}

.brand__link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	text-decoration: none;
	color: inherit;
}

.brand__link:hover {
	color: inherit;
}

.brand__logo {
	height: 46px;
	width: auto;
	max-width: min(220px, 55vw);
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.brand__tagline {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--color-muted);
	max-width: 14rem;
	line-height: 1.3;
}

@media (max-width: 480px) {
	.brand__logo {
		height: 38px;
		max-width: 48vw;
	}

	.brand__tagline {
		font-size: 0.72rem;
		max-width: 11rem;
	}
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: var(--color-bg);
	cursor: pointer;
}

.nav-toggle:focus-visible {
	outline: 2px solid var(--color-brand);
	outline-offset: 2px;
}

.nav-toggle__bar {
	display: block;
	width: 1.35rem;
	height: 2px;
	margin-inline: auto;
	background: var(--color-text);
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.25rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	display: inline-block;
	padding: 0.35rem 0;
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.site-nav a:hover {
	color: var(--color-brand);
}

.site-nav a.active {
	color: var(--color-brand);
	border-bottom-color: var(--color-brand);
}

@media (max-width: 768px) {
	.nav-toggle {
		display: flex;
	}

	.site-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--color-surface);
		box-shadow: var(--shadow-md);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.site-nav.is-open {
		max-height: 22rem;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		padding: 0.75rem 1rem 1rem;
		gap: 0;
	}

	.site-nav a {
		padding: 0.65rem 0;
		border-bottom: 1px solid #e4e9e7;
	}

	.site-nav li:last-child a {
		border-bottom: 0;
	}

	.site-header__inner {
		position: relative;
		flex-wrap: wrap;
	}

	.site-nav {
		order: 3;
		flex: 1 0 100%;
	}
}

/* ----- Hero carousel ----- */
.hero {
	background: var(--color-surface);
	border-bottom: 1px solid #e8eeeb;
}

.hero__viewport {
	position: relative;
	overflow: hidden;
	background: var(--color-surface);
}

.hero__track {
	display: flex;
	transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
	backface-visibility: hidden;
}

.hero-slide {
	flex: 0 0 100%;
	min-height: clamp(205px, 32vw, 325px);
	display: flex;
	align-items: stretch;
}

.hero-slide__inner {
	padding-block: clamp(0.75rem, 2.5vw, 1.25rem);
}

/* Same left/right gutter; centered max width (works with .container on the element) */
.hero-slide__inner.container {
	width: 100%;
	max-width: 1120px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 5vw, 2.5rem);
	box-sizing: border-box;
}

.hero-slide__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 3vw, 1.75rem);
	align-items: center;
	min-height: clamp(180px, 28vw, 290px);
}

@media (min-width: 768px) {
	.hero-slide__grid {
		grid-template-columns: 1fr 1fr;
		gap: clamp(1.5rem, 4vw, 3rem);
	}
}

.hero-slide__copy {
	padding: 0.25rem 0;
	text-align: left;
	color: var(--color-text);
}

.hero-slide__kicker {
	margin: 0 0 0.5rem;
	font-size: clamp(1.15rem, 2.8vw, 1.7rem);
	font-weight: 700;
	color: var(--color-brand);
	letter-spacing: 0.03em;
	line-height: 1.2;
}

.hero-slide__text {
	margin: 0;
	font-size: clamp(0.88rem, 2vw, 1.08rem);
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-muted);
	max-width: 36ch;
}

.hero-slide__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 155px;
	padding: 0;
	overflow: visible;
	border-radius: 0;
}

@media (min-width: 768px) {
	.hero-slide__media {
		justify-content: flex-end;
	}
}

.hero-slide__img {
	position: relative;
	z-index: 0;
	display: block;
	width: auto;
	height: auto;
	/* Larger display cap only (section min-heights stay compact above) */
	max-width: min(100%, 540px);
	max-height: min(480px, 60vh);
	object-fit: contain;
	object-position: center right;
	image-rendering: auto;
	transform: translateZ(0);
}

@media (max-width: 767px) {
	.hero-slide__img {
		object-position: center;
	}
}

.hero__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-brand);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hero__btn:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.05);
}

.hero__btn:focus-visible {
	outline: 2px solid var(--color-brand);
	outline-offset: 2px;
}

.hero__btn--prev {
	left: clamp(0.75rem, 3vw, 1.5rem);
}

.hero__btn--next {
	right: clamp(0.75rem, 3vw, 1.5rem);
}

.hero__dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem clamp(1rem, 5vw, 2.5rem) 1.35rem;
	position: relative;
	z-index: 2;
	background: var(--color-surface);
}

.hero__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 2px solid #94a3b8;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero__dot[aria-selected="true"] {
	background: var(--color-brand);
	border-color: var(--color-brand);
	transform: scale(1.15);
}

.hero__dot:hover {
	border-color: var(--color-brand);
}

.hero__dot:focus-visible {
	outline: 2px solid var(--color-brand);
	outline-offset: 2px;
}

@media (max-width: 480px) {
	.hero__btn {
		width: 2.25rem;
		height: 2.25rem;
		font-size: 1.25rem;
	}
}

/* ----- Content ----- */
.section--content {
	padding: 2.5rem 0 3.5rem;
}

.content-block__title {
	margin: 0 0 1rem;
	font-size: clamp(1.65rem, 4vw, 2.1rem);
	font-weight: 700;
	color: var(--color-text);
}

.content-block__lead {
	margin: 0 0 1.75rem;
	font-size: 1.05rem;
	color: var(--color-muted);
	max-width: 70ch;
}

.content-block__subhead {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-brand);
	line-height: 1.4;
}

/* ----- About page ----- */
.about-page {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

.about-page__media {
	display: none;
}

@media (min-width: 768px) {
	.about-page {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 2.5rem;
		align-items: center;
	}

	.about-page__media {
		display: block;
		justify-self: start;
	}
}

.about-page__text .content-block__title {
	margin-bottom: 1.25rem;
}

.about-page__p {
	margin: 0 0 1.25rem;
	color: var(--color-muted);
	font-size: 1.05rem;
	line-height: 1.65;
	max-width: 65ch;
}

.about-page__p:last-child {
	margin-bottom: 0;
}

.about-page__img {
	width: auto;
	max-width: min(100%, 280px);
	height: auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

/* ----- Shared panels & sidebar layout ----- */
.content-panel {
	background: var(--color-surface);
	border-radius: 12px;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: var(--shadow-sm);
}

.page-sidebar-layout {
	display: grid;
	gap: 1.5rem;
	align-items: start;
}

@media (min-width: 960px) {
	.page-sidebar-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 1.75rem;
	}

	.content-panel--sticky {
		position: sticky;
		top: calc(var(--header-h) + 1rem);
		max-height: calc(100vh - var(--header-h) - 2rem);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
}

.page-sidebar-layout__main {
	min-width: 0;
}

.page-sidebar-layout__main--contact {
	display: flex;
	flex-direction: column;
}

.sidebar-products__title {
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--color-brand);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: 0.02em;
}

.sidebar-products__list {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.875rem;
	line-height: 1.5;
}

.sidebar-products__list li {
	margin-bottom: 0.4rem;
	padding-left: 0.65rem;
	border-left: 3px solid transparent;
	transition: border-color 0.15s ease;
}

.sidebar-products__list li:hover {
	border-left-color: rgba(5, 140, 209, 0.35);
}

.sidebar-products__list a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 500;
	display: inline-block;
	padding: 0.1rem 0;
}

.sidebar-products__list a:hover {
	color: var(--color-brand);
}

.content-block__title--downloads {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.download-block {
	margin-top: 1rem;
}

.download-block__link {
	display: inline-block;
	text-decoration: none;
}

.download-block__link:focus-visible {
	outline: 2px solid var(--color-brand);
	outline-offset: 4px;
	border-radius: 4px;
}

.download-block__img {
	width: auto;
	max-width: 100%;
	height: auto;
}

/* ----- Products / categories page ----- */
.content-panel--categories {
	padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.categories-page-head {
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid #e8eeeb;
}

.categories-page-head__title {
	margin: 0;
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.2;
}

.category-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.category-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.15rem;
	align-items: start;
	margin: 0;
	padding: 1.15rem;
	background: #f8faf9;
	border: 1px solid #e4ebe7;
	border-radius: 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
	border-color: rgba(5, 140, 209, 0.35);
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

@media (min-width: 640px) {
	.category-card {
		grid-template-columns: 168px minmax(0, 1fr);
		gap: 1.5rem;
		padding: 1.35rem 1.5rem;
		align-items: start;
	}
}

.category-card__media {
	display: block;
	justify-self: center;
	width: 140px;
	height: 140px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #d0ddd6;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	text-decoration: none;
	flex-shrink: 0;
}

.category-card__media:hover {
	border-color: var(--color-brand);
}

.category-card__media--static {
	cursor: default;
}

.category-card__media--static:hover {
	border-color: #d0ddd6;
}

@media (min-width: 640px) {
	.category-card__media,
	.category-card__media--static {
		width: 168px;
		height: 168px;
		justify-self: start;
	}
}

.category-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.category-card__body {
	min-width: 0;
}

.category-card__heading {
	margin: 0 0 0.5rem;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.category-card__title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-brand);
	text-decoration: none;
	line-height: 1.3;
}

.category-card__title:hover {
	text-decoration: underline;
}

.category-card__text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--color-muted);
	text-align: left;
}

/* ----- Flushing / product detail (spec cards) ----- */
.content-panel--flushing {
	padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.product-detail-head {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e8eeeb;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	align-items: flex-start;
}

@media (min-width: 600px) {
	.product-detail-head {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: baseline;
		justify-content: space-between;
		gap: 1rem;
	}
}

.product-detail-head__title {
	margin: 0;
	font-size: clamp(1.45rem, 3vw, 1.85rem);
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.2;
}

.back-to-categories {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-brand);
	text-decoration: none;
	white-space: nowrap;
}

.back-to-categories:hover {
	text-decoration: underline;
}

.product-spec-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.product-spec-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.15rem;
	align-items: start;
	padding: 1.25rem;
	background: #f8faf9;
	border: 1px solid #e4ebe7;
	border-radius: 12px;
}

@media (min-width: 720px) {
	.product-spec-card {
		grid-template-columns: 200px minmax(0, 1fr);
		gap: 1.75rem;
		padding: 1.35rem 1.5rem;
	}
}

.product-spec-card__media {
	justify-self: center;
	width: 100%;
	max-width: 220px;
}

@media (min-width: 720px) {
	.product-spec-card__media {
		justify-self: start;
		max-width: none;
		width: 200px;
	}
}

.product-spec-card__img {
	width: 100%;
	height: auto;
	max-height: 220px;
	object-fit: contain;
	display: block;
	padding: 0.5rem;
	background: #fff;
	border: 1px solid #d0ddd6;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.product-spec-card__title {
	margin: 0 0 0.65rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-brand);
	line-height: 1.35;
	letter-spacing: 0.01em;
}

.product-spec-card__list {
	margin: 0;
	padding-left: 1.2rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--color-text);
}

.product-spec-card__list li {
	margin-bottom: 0.35rem;
}

.product-spec-card__list li:last-child {
	margin-bottom: 0;
}

.product-spec-card--single {
	max-width: 52rem;
}

.custom-molding-lead {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--color-muted);
}

/* ----- Pipes & fittings catalog (DB grid) ----- */
.pipes-catalog {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 0.5rem;
}

.pipes-product-card {
	text-align: center;
}

.pipes-product-card__frame {
	margin: 0 auto;
	max-width: 280px;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	border: 1px solid #c5ccc7;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.pipes-product-card__img {
	max-width: 100%;
	max-height: 200px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.pipes-product-card__title {
	margin: 0.85rem 0 0.5rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-brand);
	line-height: 1.3;
}

.pipes-product-card__desc {
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--color-text);
	text-align: left;
	max-width: 280px;
	margin: 0 auto;
}

.pipes-product-card__extra {
	margin: 0.5rem auto 0;
	font-size: 0.85rem;
	line-height: 1.45;
	color: var(--color-muted);
	text-align: left;
	max-width: 280px;
}

.pipes-catalog-empty {
	margin: 1rem 0 0;
	padding: 1.25rem;
	background: #f8faf9;
	border-radius: 10px;
	border: 1px solid #e4ebe7;
	color: var(--color-muted);
	font-size: 0.95rem;
}

/* ----- Bath fittings: mini product grid + aside ----- */
.bath-fittings-grid-section {
	margin-top: 1.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid #e8eeeb;
	display: grid;
	gap: 1.75rem;
	align-items: start;
}

@media (min-width: 900px) {
	.bath-fittings-grid-section {
		grid-template-columns: minmax(0, 1fr) min(300px, 34%);
		gap: 2rem;
	}
}

.bath-fittings-mini-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 1rem;
}

.bath-mini-card {
	margin: 0;
	text-align: center;
}

.bath-mini-card__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	padding: 0.65rem;
	border: 1px solid #c5ccc7;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.bath-mini-card__img {
	max-width: 100%;
	max-height: 150px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: auto;
}

.bath-mini-card__caption {
	margin: 0.5rem 0 0;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--color-brand);
}

.bath-fittings-aside__intro {
	margin: 0 0 1rem;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--color-muted);
}

.bath-fittings-aside__subtitle {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-brand);
}

/* ----- Contact page ----- */
.contact-page-head {
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e8eeeb;
}

.contact-page-head__title {
	margin: 0;
	font-size: clamp(1.45rem, 3vw, 1.85rem);
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.2;
}

.content-panel--contact-form {
	width: 100%;
}

.content-panel--contact-aside .contact-aside__title {
	margin-top: 0;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--color-brand);
}

.contact-form__toolbar {
	min-height: 2.5rem;
	display: flex;
	align-items: center;
	margin-bottom: 0.25rem;
}

.contact-form__status:not(.visually-hidden) {
	margin: 0 0 0.75rem;
	padding: 0.65rem 0.9rem;
	border-radius: 8px;
	background: #fef3c7;
	color: #92400e;
	font-size: 0.9rem;
	font-weight: 500;
}

.contact-form {
	width: 100%;
	max-width: none;
	margin-top: 0.25rem;
}

.contact-form__label {
	display: block;
	margin-bottom: 1rem;
}

.contact-form__label-text {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
	color: var(--color-text);
}

.contact-form__input,
.contact-form__textarea {
	width: 100%;
	padding: 0.6rem 0.75rem;
	font: inherit;
	font-size: 1rem;
	border: 1px solid #c5d0cc;
	border-radius: 8px;
	background: var(--color-surface);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
	outline: 2px solid var(--color-brand);
	outline-offset: 1px;
	border-color: var(--color-brand);
}

.contact-form__textarea {
	resize: vertical;
	min-height: 8rem;
}

.contact-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.35rem;
	font: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 8px;
	border: 0;
	cursor: pointer;
}

.btn--primary {
	background: var(--color-brand);
	color: #fff;
}

.btn--primary:hover {
	background: var(--color-brand-dark);
}

.btn--secondary {
	background: #e4e9e7;
	color: var(--color-text);
}

.btn--secondary:hover {
	background: #d5ddd9;
}

.contact-form__spinner {
	display: block;
	width: 28px;
	height: 28px;
	border: 3px solid #e4e9e7;
	border-top-color: var(--color-brand);
	border-radius: 50%;
	animation: contact-form-spin 0.7s linear infinite;
	flex-shrink: 0;
}

.contact-form__spinner[hidden] {
	display: none !important;
}

@keyframes contact-form-spin {
	to {
		transform: rotate(360deg);
	}
}

.contact-aside__title {
	margin: 0 0 1.15rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: 0.02em;
}

.contact-aside__label {
	margin: 0 0 0.35rem;
	font-weight: 700;
	color: var(--color-brand);
	font-size: 0.95rem;
}

.contact-aside__block {
	margin-bottom: 1.5rem;
}

.contact-aside__block:last-child {
	margin-bottom: 0;
}

.contact-aside__dl {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--color-muted);
}

.contact-aside__dl dt {
	font-weight: 700;
	color: var(--color-text);
	margin-top: 0.5rem;
}

.contact-aside__dl dt:first-child {
	margin-top: 0;
}

.contact-aside__dl dd {
	margin: 0.35rem 0 0;
}

.contact-aside__key {
	font-weight: 600;
	color: var(--color-text);
}

.contact-aside__email a {
	font-weight: 500;
}

.table-wrap {
	overflow-x: auto;
	margin-top: 1.25rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	-webkit-overflow-scrolling: touch;
}

.compare-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	background: var(--color-table-row);
	color: #2d2d2d;
	border: 1px solid #b8c9bf;
	font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
	padding: 0.65rem 0.75rem;
	vertical-align: top;
	border: 1px solid #b8c9bf;
}

.compare-table thead th {
	text-align: left;
	background: var(--color-table-header);
	color: #fff;
	font-weight: 600;
	border-color: #0470a8;
}

.compare-table tbody tr:nth-child(even) {
	background: #e8f0eb;
}

@media (max-width: 700px) {
	.compare-table {
		font-size: 0.82rem;
	}

	.compare-table th,
	.compare-table td {
		padding: 0.5rem;
	}
}

/* ----- Footer ----- */
.site-footer {
	background: #1e293b;
	color: #cbd5e1;
	margin-top: auto;
}

.site-footer__inner {
	padding: 1.5rem 1rem 2rem;
}

.site-footer__row--top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.25rem 2rem;
	margin-bottom: 1rem;
}

.footer-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9rem;
}

.footer-nav a {
	color: #e2e8f0;
	text-decoration: none;
	font-weight: 500;
}

.footer-nav a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-nav li:not(:last-child)::after {
	content: "|";
	margin-left: 0.75rem;
	color: #64748b;
	font-weight: 400;
}

.site-footer__social {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: #334155;
	color: #f1f5f9;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.social-link:hover {
	background: var(--color-brand);
	color: #fff;
	transform: translateY(-2px);
}

.social-link:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

@media (max-width: 640px) {
	.site-footer__row--top {
		flex-direction: column;
		text-align: center;
	}

	.footer-nav__list {
		justify-content: center;
	}

	.site-footer__social {
		justify-content: center;
	}
}
