/* Schoenenreus — homepage
   Layout zonder !important; typografie/kleur mét !important (thema-conflicten). */

.sr-home {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px 64px;
	font-family: var(--sr-font-body) !important;
	color: var(--sr-ink) !important;
}

/* ---------- Hero ---------- */
.sr-hero {
	position: relative;
	margin: 20px 0 44px;
	padding: 48px 36px 46px;
	background: var(--sr-coral) !important;
	border-radius: var(--sr-radius-lg);
	overflow: hidden;
}

.sr-hero__inner {
	position: relative;
	z-index: 3;
	max-width: 60%;
}

.sr-hero__pill {
	display: inline-block;
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
	padding: 5px 14px;
	border-radius: var(--sr-radius-pill);
	font-size: 0.75rem !important;
	margin-bottom: 14px;
}

.sr-hero__title {
	font-family: var(--sr-font-head) !important;
	font-weight: 700 !important;
	font-size: clamp(1.7rem, 3.4vw, 2.4rem) !important;
	line-height: 1.06 !important;
	color: #fff !important;
	margin: 0 0 10px !important;
	letter-spacing: -0.02em !important;
}

.sr-hero__sub {
	font-size: 1rem !important;
	line-height: 1.5 !important;
	color: rgba(255, 255, 255, 0.92) !important;
	margin: 0 0 20px !important;
	max-width: 460px;
}

.sr-hero__search {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border-radius: 14px;
	padding: 6px;
	max-width: 460px;
	box-shadow: 0 10px 30px rgba(35, 32, 38, 0.18);
}

.sr-hero__search input {
	flex: 1 1 auto;
	border: 0;
	outline: 0;
	background: transparent;
	font-family: var(--sr-font-body) !important;
	font-size: 0.95rem !important;
	color: var(--sr-ink) !important;
	padding: 10px 12px;
	min-width: 0;
}

.sr-hero__search button {
	flex: 0 0 auto;
	border: 0;
	cursor: pointer;
	background: var(--sr-ink) !important;
	color: #fff !important;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	border-radius: 10px;
	padding: 11px 20px;
	transition: transform 0.12s ease, filter 0.12s ease;
}

.sr-hero__search button:hover {
	filter: brightness(1.15);
	transform: translateY(-1px);
}

/* Cirkels + reuzenschoen */
.sr-hero__circle {
	position: absolute;
	border-radius: 50%;
	z-index: 1;
}

.sr-hero__circle--yellow {
	width: 130px;
	height: 130px;
	background: var(--sr-yellow) !important;
	top: -28px;
	right: -24px;
	opacity: 0.92;
}

.sr-hero__circle--mint {
	width: 80px;
	height: 80px;
	background: var(--sr-mint) !important;
	bottom: -34px;
	right: 96px;
	opacity: 0.85;
}

.sr-hero__circle--purple {
	width: 38px;
	height: 38px;
	background: var(--sr-purple) !important;
	top: 64px;
	right: 184px;
	opacity: 0.9;
}

.sr-hero__mascot {
	position: absolute;
	right: 30px;
	bottom: 0;
	height: 224px;
	width: auto;
	z-index: 2;
	pointer-events: none;
}

/* ---------- Secties ---------- */
.sr-section {
	margin: 0 0 40px;
}

.sr-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 14px;
}

.sr-section__link {
	font-size: 0.78rem !important;
	color: var(--sr-muted) !important;
	text-decoration: none !important;
	white-space: nowrap;
	transition: color 0.14s ease;
}

.sr-section__link:hover { color: var(--sr-coral) !important; }

.sr-section__title {
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 1.25rem !important;
	color: var(--sr-ink) !important;
	margin: 0 !important;
	letter-spacing: -0.01em !important;
}

/* ---------- Populaire types (vol-gekleurde tegels) ---------- */
.sr-types {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.sr-type {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 104px;
	padding: 16px 15px;
	border-radius: var(--sr-radius);
	text-decoration: none !important;
	transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.sr-type:hover {
	transform: translateY(-3px);
	box-shadow: var(--sr-shadow);
}

.sr-type__icon svg {
	width: 32px;
	height: 32px;
}

.sr-type__name {
	display: block;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
	text-transform: capitalize;
}

.sr-type__count {
	display: block;
	font-size: 0.72rem !important;
	margin-top: 2px;
}

/* Kleur-rotatie types (vol, conform ontwerp) */
.sr-type--c0 { background: var(--sr-mint) !important; }
.sr-type--c0, .sr-type--c0 .sr-type__icon { color: #04342C !important; }
.sr-type--c0 .sr-type__name { color: #04342C !important; }
.sr-type--c0 .sr-type__count { color: rgba(4, 52, 44, 0.7) !important; }

.sr-type--c1 { background: var(--sr-cobalt) !important; }
.sr-type--c1, .sr-type--c1 .sr-type__icon { color: #fff !important; }
.sr-type--c1 .sr-type__name { color: #fff !important; }
.sr-type--c1 .sr-type__count { color: rgba(255, 255, 255, 0.78) !important; }

.sr-type--c2 { background: var(--sr-yellow) !important; }
.sr-type--c2, .sr-type--c2 .sr-type__icon { color: #412402 !important; }
.sr-type--c2 .sr-type__name { color: #412402 !important; }
.sr-type--c2 .sr-type__count { color: rgba(65, 36, 2, 0.7) !important; }

.sr-type--c3 { background: var(--sr-purple) !important; }
.sr-type--c3, .sr-type--c3 .sr-type__icon { color: #fff !important; }
.sr-type--c3 .sr-type__name { color: #fff !important; }
.sr-type--c3 .sr-type__count { color: rgba(255, 255, 255, 0.78) !important; }

/* ---------- Gender (getinte kaarten + icoon-blok) ---------- */
.sr-genders {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.sr-gender {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: var(--sr-radius);
	text-decoration: none !important;
	background: var(--sr-surface-soft) !important;
	transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.sr-gender:hover {
	transform: translateY(-3px);
	box-shadow: var(--sr-shadow);
}

.sr-gender__icon {
	width: 48px;
	height: 48px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	background: var(--sr-coral) !important;
	color: #fff !important;
}

.sr-gender__icon svg { width: 28px; height: 28px; }

.sr-gender__name {
	display: block;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	color: var(--sr-ink) !important;
	text-transform: capitalize;
}

.sr-gender__count {
	display: block;
	font-size: 0.72rem !important;
	color: var(--sr-muted) !important;
}

/* Per-gender tinten conform ontwerp */
.sr-gender--dames { background: var(--sr-coral-tint) !important; }
.sr-gender--dames .sr-gender__icon { background: var(--sr-coral) !important; }
.sr-gender--dames .sr-gender__name { color: var(--sr-coral-text) !important; }
.sr-gender--dames .sr-gender__count { color: rgba(22, 67, 42, 0.7) !important; }

.sr-gender--heren { background: #E6F1FB !important; }
.sr-gender--heren .sr-gender__icon { background: var(--sr-cobalt) !important; }
.sr-gender--heren .sr-gender__name { color: #042C53 !important; }
.sr-gender--heren .sr-gender__count { color: rgba(4, 44, 83, 0.7) !important; }

.sr-gender--kids { background: #FFF1D1 !important; }
.sr-gender--kids .sr-gender__icon { background: var(--sr-yellow) !important; color: #412402 !important; }
.sr-gender--kids .sr-gender__name { color: #412402 !important; }
.sr-gender--kids .sr-gender__count { color: rgba(65, 36, 2, 0.7) !important; }

.sr-gender--uniseks { background: #EFE9FB !important; }
.sr-gender--uniseks .sr-gender__icon { background: var(--sr-purple) !important; color: #fff !important; }
.sr-gender--uniseks .sr-gender__name { color: #2E1A57 !important; }
.sr-gender--uniseks .sr-gender__count { color: rgba(46, 26, 87, 0.7) !important; }

/* ---------- Deals-grid (hergebruikt .sr-card uit sr-listing.css) ---------- */
.sr-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.sr-empty { color: var(--sr-muted) !important; font-size: 0.95rem !important; }

/* ---------- Zo werkt (3 stappen) ---------- */
.sr-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.sr-step {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.sr-step__num {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
}

.sr-step__num--coral { background: var(--sr-coral) !important; color: #fff !important; }
.sr-step__num--mint { background: var(--sr-mint) !important; color: #04342C !important; }
.sr-step__num--yellow { background: var(--sr-yellow) !important; color: #412402 !important; }

.sr-step__title {
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
	color: var(--sr-ink) !important;
	margin-bottom: 2px;
}

.sr-step__text {
	font-size: 0.85rem !important;
	line-height: 1.45 !important;
	color: var(--sr-muted) !important;
}

/* ---------- Tip van de reus ---------- */
.sr-tip {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border-radius: var(--sr-radius-lg);
	background: var(--sr-coral-tint) !important;
	overflow: hidden;
}

.sr-tip__mascot {
	position: absolute;
	right: 6px;
	bottom: -10px;
	height: 94px;
	width: auto;
	z-index: 1;
	pointer-events: none;
}

.sr-tip__icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--sr-coral) !important;
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	position: relative;
	z-index: 2;
}

.sr-tip__icon svg { width: 24px; height: 24px; }

.sr-tip__body { position: relative; z-index: 2; flex: 1; }

.sr-tip__title {
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
	color: var(--sr-coral-text) !important;
	margin-bottom: 2px;
}

.sr-tip__text {
	font-size: 0.88rem !important;
	line-height: 1.5 !important;
	color: rgba(22, 67, 42, 0.85) !important;
}

/* ---------- Merk-chips ---------- */
.sr-brandchips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sr-brandchip {
	display: inline-flex;
	align-items: center;
	padding: 8px 15px;
	border-radius: var(--sr-radius-pill);
	background: var(--sr-white) !important;
	border: 1px solid var(--sr-line);
	font-family: var(--sr-font-body) !important;
	font-size: 0.85rem !important;
	color: var(--sr-ink) !important;
	text-decoration: none !important;
	transition: border-color 0.14s ease, color 0.14s ease, transform 0.14s ease;
}

.sr-brandchip:hover {
	border-color: var(--sr-coral);
	color: var(--sr-coral) !important;
	transform: translateY(-2px);
}

.sr-brandchip--all {
	background: var(--sr-ink) !important;
	border-color: var(--sr-ink);
	color: #fff !important;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
}

.sr-brandchip--all:hover { color: #fff !important; filter: brightness(1.2); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.sr-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
	.sr-types { grid-template-columns: repeat(2, 1fr); }
	.sr-genders { grid-template-columns: 1fr; }
	.sr-steps { grid-template-columns: 1fr; }
	.sr-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
	.sr-hero { padding: 36px 20px; }
	.sr-hero__inner { max-width: 100%; }
	.sr-hero__mascot { display: none; }
	.sr-hero__circle--purple { display: none; }
}

@media (hover: none) {
	.sr-type:hover,
	.sr-gender:hover,
	.sr-brandchip:hover { transform: none; box-shadow: none; }
}

/* ---------------------------------------------------------------------
 * Logo-stijl iconen op een witte chip (zwarte outline leest op kleur).
 * ------------------------------------------------------------------- */
.sr-type__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 1px 0 rgba(35, 32, 38, 0.06);
}

.sr-type__icon svg { width: 34px; height: 34px; }
.sr-type__icon img.sr-cat-icon { width: 46px; height: 46px; object-fit: contain; display: block; border-radius: 20px; }

.sr-gender .sr-gender__icon {
	background: #fff !important;
	border: 1px solid var(--sr-line);
}

.sr-gender__icon svg { width: 32px; height: 32px; }
.sr-gender__icon img.sr-cat-icon { width: 40px; height: 40px; object-fit: contain; display: block; }

/* ---------------------------------------------------------------------
 * Hero-zoekbalk: Elementor/thema-proof reset (zwarte CTA, geen randen).
 * ------------------------------------------------------------------- */
.sr-hero__search input,
.sr-hero__search button {
	-webkit-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	background-image: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	min-height: 0 !important;
	text-decoration: none !important;
}

.sr-hero__search input {
	border: 0 !important;
	background-color: transparent !important;
	color: var(--sr-ink) !important;
}

.sr-hero__search button {
	border: 0 !important;
	border-radius: 10px !important;
	background-color: var(--sr-ink) !important;
	color: #fff !important;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
}

/* ---------------------------------------------------------------------
 * UX-actie: "Tip van de reus"-box mocht z'n inhoud niet afkappen. De tekst
 * lijnt nu bovenaan, kan wrappen (min-width:0) en houdt ruimte vrij voor de
 * mascotte; op smal scherm verdwijnt de mascotte zodat alles past.
 * ------------------------------------------------------------------- */
.sr-tip {
	align-items: flex-start;
}

.sr-tip__body {
	min-width: 0;
	padding-right: 84px;
}

@media (max-width: 620px) {
	.sr-tip__mascot {
		display: none;
	}

	.sr-tip__body {
		padding-right: 0;
	}
}

/* ---------------------------------------------------------------------
 * Seizoensspotlight (homepage): inspiratie + navigatie naar een bestaande
 * type-pagina, wisselt per seizoen. Eigen koraal-huisstijl, witte tekst.
 * ------------------------------------------------------------------- */
.sr-spotlight {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px 22px;
	border-radius: var(--sr-radius-lg);
	background: linear-gradient(100deg, var(--sr-coral) 0%, #4C9D6C 100%);
	color: #fff;
	text-decoration: none;
	box-shadow: var(--sr-shadow);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sr-spotlight:hover {
	transform: translateY(-2px);
}

.sr-spotlight__icon {
	flex: 0 0 auto;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 16px;
}

.sr-spotlight__icon img {
	width: 46px;
	height: 46px;
}

.sr-spotlight__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.sr-spotlight__kicker {
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.78rem !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.9;
}

.sr-spotlight__title {
	font-family: var(--sr-font-head) !important;
	font-weight: 700 !important;
	font-size: 1.3rem !important;
	color: #fff !important;
}

.sr-spotlight__sub {
	font-size: 0.9rem !important;
	opacity: 0.92;
}

.sr-spotlight__cta {
	flex: 0 0 auto;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	background: rgba(255, 255, 255, 0.18);
	padding: 10px 16px;
	border-radius: 10px;
	white-space: nowrap;
}

@media (max-width: 620px) {
	.sr-spotlight {
		flex-wrap: wrap;
		gap: 12px;
	}

	.sr-spotlight__icon {
		width: 52px;
		height: 52px;
	}

	.sr-spotlight__icon img {
		width: 38px;
		height: 38px;
	}

	.sr-spotlight__title {
		font-size: 1.1rem !important;
	}

	.sr-spotlight__cta {
		width: 100%;
		text-align: center;
	}
}

/* ---------------------------------------------------------------------
 * Inspiratie-elementen: hero-instaptegels, waarde-strip en de "Nu populair"-
 * carrousel met echte productfoto's. Maken van de hero een ontdek-platform.
 * ------------------------------------------------------------------- */

/* Hero: directe instaptegels onder de zoekbalk. */
.sr-hero__chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
}

.sr-hero__chips-label {
	font-size: 0.8rem !important;
	color: rgba(255, 255, 255, 0.85) !important;
	margin-right: 2px;
}

.sr-hero__chip {
	display: inline-block;
	padding: 7px 14px;
	border-radius: var(--sr-radius-pill);
	background: rgba(255, 255, 255, 0.16) !important;
	color: #fff !important;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.82rem !important;
	text-decoration: none;
	transition: background 0.15s ease, transform 0.15s ease;
}

.sr-hero__chip:hover {
	background: #fff !important;
	color: var(--sr-coral-text) !important;
	transform: translateY(-1px);
}

/* Waarde-strip onder de hero. */
.sr-valuestrip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	margin: 0 0 38px;
	padding: 14px 20px;
	background: var(--sr-white);
	border: 1px solid var(--sr-line);
	border-radius: var(--sr-radius-lg);
}

.sr-valuestrip__item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	color: var(--sr-ink) !important;
}

.sr-valuestrip__item svg {
	width: 20px;
	height: 20px;
	color: var(--sr-coral);
	flex: 0 0 auto;
}

@media (max-width: 720px) {
	.sr-valuestrip {
		flex-direction: column;
		gap: 12px;
	}
}

/* ---------------------------------------------------------------------
 * Hero met auto-slidende productcarrousel rechts (max 2 zichtbaar).
 * De hero wordt 2-koloms: tekst links, carrousel rechts (mascotte vervalt).
 * ------------------------------------------------------------------- */
.sr-hero {
	display: flex;
	align-items: center;
	gap: 30px;
}

.sr-hero__inner {
	flex: 1 1 auto;
	max-width: none;
}

.sr-herocar {
	flex: 0 0 32%;
	min-width: 0;
	position: relative;
	z-index: 3;
	overflow: hidden;
	padding: 10px 0;
}

.sr-herocar__label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 10px;
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.78rem !important;
	color: #fff !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.sr-herocar__pulse {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	animation: sr-pulse 1.6s infinite;
}

@keyframes sr-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
	}
	70% {
		box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.sr-herocar__track {
	display: flex;
	gap: 12px;
	transition: transform 0.45s ease;
	will-change: transform;
}

.sr-herocar__tile {
	flex: 0 0 calc(50% - 6px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(35, 32, 38, 0.16);
}

.sr-herocar__img {
	display: block;
	aspect-ratio: 1 / 1;
	background: var(--sr-coral-tint);
}

.sr-herocar__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.sr-herocar__meta {
	padding: 8px 10px 10px;
}

.sr-herocar__brand {
	display: block;
	font-size: 0.66rem !important;
	color: var(--sr-muted) !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.sr-herocar__title {
	font-family: var(--sr-font-head) !important;
	font-weight: 600 !important;
	font-size: 0.8rem !important;
	color: var(--sr-ink) !important;
	line-height: 1.2 !important;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sr-herocar__price {
	display: block;
	margin-top: 3px;
	font-family: var(--sr-font-head) !important;
	font-weight: 700 !important;
	font-size: 0.82rem !important;
	color: var(--sr-coral-text) !important;
}

@media (max-width: 860px) {
	.sr-hero {
		flex-direction: column;
		align-items: stretch;
		gap: 22px;
	}

	.sr-hero__inner {
		flex: none;
	}

	.sr-herocar {
		flex: none;
		width: 100%;
	}
}
