/* 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: #FFE4DC !important; }
.sr-gender--dames .sr-gender__icon { background: var(--sr-coral) !important; }
.sr-gender--dames .sr-gender__name { color: #4A1B0C !important; }
.sr-gender--dames .sr-gender__count { color: rgba(74, 27, 12, 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: #FFE4DC !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: #4A1B0C !important;
	margin-bottom: 2px;
}

.sr-tip__text {
	font-size: 0.88rem !important;
	line-height: 1.5 !important;
	color: rgba(74, 27, 12, 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;
}
