/*
Theme Name: Kreuz Sports Master
Theme URI: https://kreuzsports.com
Author: Kreuz Sports
Description: WooCommerce uyumlu spor e-ticaret teması. Anasayfa ve mağaza odaklı.
Version: 1.4.11
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kreuzsports-master
*/

/* Reset / base */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

:root {
	/* Üst kayar şerit arka planı — İletişim Box ikon rengi ile paylaşılır */
	--ks-top-strip: #000000;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #1a1a1a;
	background: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* —— Üst kayar şerit: logo ile uyumlu siyah zemin (Outfit 400 / 15px / #F7F7F7) —— */
.ks-top-ticker {
	background: var(--ks-top-strip);
	color: #f7f7f7;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ks-top-ticker__inner {
	display: flex;
	align-items: center;
	min-height: 45px;
}

.ks-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 4%,
		#000 96%,
		transparent
	);
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent,
		#000 4%,
		#000 96%,
		transparent
	);
}

.ks-marquee__track {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0;
	padding: 15px 0;
	animation: ks-marquee-scroll 35s linear infinite;
	white-space: nowrap;
	will-change: transform;
}

.ks-marquee__track:hover {
	animation-play-state: paused;
}

.ks-marquee__group {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 3rem;
	padding-inline-end: 3rem;
}

.ks-marquee__item {
	font-family: "Outfit", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 15px;
	color: #f7f7f7;
}

.ks-marquee__item a {
	text-decoration: none;
	color: inherit;
}

.ks-marquee__item a:hover {
	text-decoration: underline;
}

.ks-marquee__sep {
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	line-height: 15px;
	color: #f7f7f7;
	opacity: 0.45;
	font-weight: 400;
}

@keyframes ks-marquee-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* —— Ana header (logo | menü | ikonlar) —— */
.ks-header {
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 100;
}

.ks-header__bar {
	max-width: 1320px;
	margin: 0 auto;
	padding: 1.125rem 1.5rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	column-gap: 2rem;
	row-gap: 1rem;
}

.ks-header__brand {
	justify-self: start;
	min-width: 0;
}

.ks-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
	color: inherit;
	flex-shrink: 0;
}

.ks-logo:hover {
	text-decoration: none;
}

.ks-logo__img {
	display: block;
	width: auto;
	height: auto;
	max-height: 48px;
	max-width: min(280px, 55vw);
	object-fit: contain;
}

.ks-nav-primary {
	justify-self: center;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.ks-nav-primary ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 2rem;
}

.ks-nav-primary a {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #2c2c2c;
	text-decoration: none;
	padding: 0.4rem 0;
	letter-spacing: -0.01em;
}

.ks-nav-primary a:hover,
.ks-nav-primary .current-menu-item > a {
	color: #000000;
	text-decoration: none;
}

.ks-nav-primary .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 200px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
	z-index: 200;
}

.ks-nav-primary li {
	position: relative;
}

.ks-nav-primary li:hover > .sub-menu,
.ks-nav-primary li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ks-nav-primary .sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	border-bottom: none;
	font-weight: 500;
}

.ks-nav-primary .sub-menu a:hover {
	background: #f4f6f8;
}

.ks-header__actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 0;
}

.ks-header__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #2c2c2c;
	text-decoration: none;
	line-height: 0;
	transition: color 0.15s ease;
}

.ks-header__action:hover {
	color: #000000;
	text-decoration: none;
}

.ks-header__action--account {
	padding: 0.25rem;
}

.ks-header__action--cart {
	gap: 0.5rem;
	padding: 0.25rem 0;
}

.ks-svg-icon {
	display: block;
	flex-shrink: 0;
}

.ks-header__cart-label {
	font-size: 0.9375rem;
	font-weight: 400;
	color: inherit;
	line-height: 1.2;
	white-space: nowrap;
}

.ks-header__cart-count {
	font-weight: 400;
}

.ks-header__action:focus-visible {
	outline: 2px solid #000000;
	outline-offset: 3px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

/* —— Anasayfa banner (Özelleştirici → Banner) —— */
.ks-banner {
	width: 100%;
	/* Viewport’a göre uzun hero; tavan geniş ekranlarda — daha aşağı için vh yüksek */
	min-height: 720px;
	min-height: 80vh;
	min-height: min(80vh, 1200px);
	background-color: #c8d8e8;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: clamp(2.25rem, 5vw, 4rem) 1.25rem clamp(4rem, 10vw, 6.5rem);
	box-sizing: border-box;
}

.ks-banner--fallback {
	background-image: linear-gradient(
		165deg,
		#dfe9f2 0%,
		#b8cfe0 35%,
		#e8f0f8 70%,
		#ffffff 100%
	);
}

.ks-banner__inner {
	flex: 1 1 auto;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	gap: 1.25rem;
	box-sizing: border-box;
	min-height: 0;
}

.ks-banner__title {
	display: inline-block;
	margin: 0;
	padding: 0.65rem 1.75rem;
	font-family: "Outfit", system-ui, sans-serif;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 800;
	font-style: normal;
	letter-spacing: 0.02em;
	line-height: 1.2;
	color: #0c356a;
	border: 2px solid rgba(120, 190, 255, 0.55);
	border-radius: 4px;
	box-shadow:
		0 0 0 1px rgba(180, 220, 255, 0.35),
		0 0 24px rgba(130, 190, 255, 0.45),
		inset 0 0 20px rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.ks-banner__subtitle {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
	color: #1a3a5c;
	max-width: 36em;
}

.ks-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.25rem;
	padding: 0.65rem 1.5rem;
	font-family: "Outfit", system-ui, sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #fff;
	background: #0c356a;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.15s ease;
}

.ks-banner__btn:hover {
	background: #081f3f;
	color: #fff;
	text-decoration: none;
}

.ks-banner__products {
	margin-top: auto;
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
	padding-top: 1rem;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.ks-banner__product-img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.site-main.site-main--front {
	position: relative;
	z-index: 1;
	margin-top: 0;
	min-height: 0;
}

/* —— İletişim Box (banner altı) —— */
.ks-trust-bar {
	background: #f4f5f7;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ks-trust-bar__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 2rem 1.5rem 2.25rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.ks-trust-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.875rem;
	min-width: 0;
	min-height: 0;
	padding: 1.5rem 1.1rem;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	aspect-ratio: 1 / 1;
	transition:
		transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
		box-shadow 0.3s ease,
		border-color 0.25s ease;
	will-change: transform;
}

.ks-trust-bar__item:hover {
	border-color: rgba(0, 0, 0, 0.16);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	transform: translateY(-10px) scale(1.03);
}

.ks-trust-bar__icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ks-top-strip);
}

.ks-trust-bar__svg {
	display: block;
	width: 56px;
	height: 56px;
}

.ks-trust-bar__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	text-align: center;
	min-width: 0;
}

.ks-trust-bar__title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #111111;
	line-height: 1.3;
}

.ks-trust-bar__desc {
	font-size: 0.9375rem;
	font-weight: 400;
	color: #5a5a5a;
	line-height: 1.5;
}

@media (max-width: 960px) {
	.ks-trust-bar__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

@media (max-width: 520px) {
	.ks-trust-bar__inner {
		grid-template-columns: 1fr;
	}

	.ks-trust-bar__item {
		aspect-ratio: auto;
		min-height: 168px;
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 1.35rem 1.25rem;
	}

	.ks-trust-bar__text {
		align-items: flex-start;
		text-align: left;
	}

	.ks-trust-bar__item:hover {
		transform: translateY(-6px) scale(1.01);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ks-trust-bar__item {
		transition: box-shadow 0.2s ease, border-color 0.2s ease;
	}

	.ks-trust-bar__item:hover {
		transform: none;
	}
}

/* —— Zigzag alan (4 satır, görsel + metin + kategori butonu) —— */
.ks-zigzag {
	background: #ffffff;
}

.ks-zigzag__row:nth-child(even) {
	background: #f8f9fb;
}

.ks-zigzag__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.5rem, 4vw, 3rem);
}

.ks-zigzag__row--reverse .ks-zigzag__inner {
	flex-direction: row-reverse;
}

.ks-zigzag__media {
	flex: 1 1 48%;
	min-width: 0;
	max-width: 640px;
}

.ks-zigzag__content {
	flex: 1 1 48%;
	min-width: 0;
	max-width: 560px;
	text-align: left;
}

.ks-zigzag__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 14px;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.ks-zigzag__placeholder {
	min-height: clamp(200px, 28vw, 320px);
	border-radius: 14px;
	background: linear-gradient(135deg, #e8ecf0 0%, #f4f6f8 50%, #dfe5ec 100%);
	border: 1px dashed rgba(0, 0, 0, 0.12);
}

/* Zigzag tipografi: Outfit — başlık 500 / 60px / #222; metin 400 / 20px / 30px satır / #696969 */
.ks-zigzag__title {
	margin: 0 0 1.25rem;
	font-family: "Outfit", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: clamp(1.875rem, 3.5vw + 0.5rem, 3.75rem);
	line-height: 1;
	color: #222222;
	letter-spacing: -0.02em;
}

.ks-zigzag__text {
	margin: 0 0 1.5rem;
	font-family: "Outfit", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #696969;
}

.ks-zigzag__text p {
	margin: 0 0 1em;
}

.ks-zigzag__text p:last-child {
	margin-bottom: 0;
}

.ks-zigzag__action {
	margin: 0;
}

.ks-zigzag__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	font-family: "Outfit", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	background: var(--ks-top-strip, #000000);
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.ks-zigzag__btn:hover {
	background: #1a1a1a;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	opacity: 0.95;
}

/* —— Anasayfa blog (son 4 yazı) —— */
.ks-front-blog {
	background: #ffffff;
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ks-front-blog__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.ks-front-blog__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.ks-front-blog__heading {
	margin: 0 0 0.5rem;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
	color: #222222;
}

.ks-front-blog__intro {
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 1.125rem;
	color: #696969;
}

.ks-front-blog__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	align-items: stretch;
	width: 100%;
}

.ks-front-blog__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	width: 100%;
	max-width: none;
	background: #fafbfc;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ks-front-blog__card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 0, 0, 0.12);
}

.ks-front-blog__thumb-link {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e8ecf0;
}

.ks-front-blog__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ks-front-blog__thumb-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: linear-gradient(145deg, #e4e8ec 0%, #f0f2f5 100%);
}

.ks-front-blog__body {
	padding: 1.25rem 1.25rem 1.35rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.5rem;
}

.ks-front-blog__date {
	font-family: "Outfit", sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #888888;
}

.ks-front-blog__date--muted {
	display: block;
}

.ks-front-blog__title {
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
	color: #222222;
}

.ks-front-blog__title a {
	color: inherit;
	text-decoration: none;
}

.ks-front-blog__title a:hover {
	text-decoration: underline;
}

.ks-front-blog__excerpt {
	margin: 0;
	flex: 1;
	font-family: "Outfit", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.55;
	color: #696969;
}

.ks-front-blog__read {
	margin-top: auto;
	align-self: flex-start;
	font-family: "Outfit", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ks-top-strip, #000000);
	text-decoration: none;
}

.ks-front-blog__read:hover {
	text-decoration: underline;
}

.ks-front-blog__read--disabled {
	cursor: default;
	color: #999999;
	font-weight: 500;
}

.ks-front-blog__card--placeholder .ks-front-blog__title {
	font-weight: 600;
}

.ks-front-blog__footer {
	margin: 2.5rem 0 0;
	text-align: center;
}

.ks-front-blog__archive {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.75rem;
	font-family: "Outfit", sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #ffffff;
	background: var(--ks-top-strip, #000000);
	border-radius: 8px;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.ks-front-blog__archive:hover {
	color: #ffffff;
	text-decoration: none;
	opacity: 0.9;
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.ks-front-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.ks-front-blog__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.ks-zigzag__inner {
		flex-direction: column !important;
		align-items: stretch;
	}

	.ks-zigzag__media,
	.ks-zigzag__content {
		flex: 1 1 auto;
		max-width: none;
	}

	.ks-zigzag__img {
		aspect-ratio: 16 / 10;
	}

	.ks-zigzag__title {
		line-height: 1.05;
	}

	.ks-zigzag__text {
		font-size: 1.125rem;
		line-height: 1.55;
	}

	.ks-header__bar {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
	}

	.ks-header__brand {
		grid-column: 1;
		grid-row: 1;
	}

	.ks-header__actions {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.ks-nav-primary {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: stretch;
	}

	.ks-nav-primary ul {
		justify-content: center;
		gap: 0.5rem 1.25rem;
	}
}

/* —— Footer —— */
.ks-site-footer {
	--ks-footer-accent: #b0976d;
	font-family: "Outfit", system-ui, sans-serif;
	color: #444444;
}

.ks-footer__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 3rem 1.5rem 2rem;
}

.ks-footer__cols {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem 2.5rem;
	align-items: start;
}

.ks-footer__heading {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #222222;
	line-height: 1.3;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--ks-footer-accent);
}

.ks-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ks-footer__list li {
	margin: 0 0 0.65rem;
}

.ks-footer__list a {
	color: #666666;
	text-decoration: none;
	font-size: 0.9375rem;
	line-height: 1.45;
	transition: color 0.2s ease;
}

.ks-footer__list a:hover {
	color: #111111;
	text-decoration: underline;
}

.ks-footer__newsletter-intro {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #696969;
}

.ks-footer__newsletter-form {
	margin: 0;
}

.ks-footer__newsletter-row {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	overflow: hidden;
	background: #ffffff;
	max-width: 100%;
}

.ks-footer__input {
	flex: 1;
	min-width: 0;
	padding: 0.65rem 0.85rem;
	border: none;
	font-family: inherit;
	font-size: 0.9375rem;
	outline: none;
}

.ks-footer__send {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0 1.1rem;
	border: none;
	background: var(--ks-footer-accent);
	color: #ffffff;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: filter 0.2s ease, opacity 0.2s ease;
	flex-shrink: 0;
}

.ks-footer__send:hover {
	filter: brightness(1.05);
}

.ks-footer__send-icon {
	flex-shrink: 0;
}

.ks-footer__privacy {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin: 1rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #666666;
	cursor: pointer;
}

.ks-footer__privacy input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.ks-footer__privacy a {
	color: #444444;
	text-decoration: underline;
}

.ks-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.ks-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #1a2332;
	color: #ffffff;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.ks-footer__social-link:hover {
	color: #ffffff;
	transform: translateY(-2px);
	opacity: 0.92;
	text-decoration: none;
}

.ks-footer__bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	padding: 1.25rem 1.5rem;
	text-align: center;
	background: rgba(0, 0, 0, 0.02);
}

.ks-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
	color: #777777;
}

.ks-site-footer--minimal .ks-footer__bottom {
	border-top: none;
	background: transparent;
	padding: 2rem 1.25rem;
}

@media (max-width: 1024px) {
	.ks-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.ks-footer__cols {
		grid-template-columns: 1fr;
	}

	.ks-footer__newsletter-row {
		flex-wrap: wrap;
	}

	.ks-footer__send {
		width: 100%;
		padding: 0.75rem;
	}
}
