/* Sore Haarkliniek — Icon system (Heroicons/Feather outline, inline SVG via <x-icon>) */

/* ─── Sore outline icon SVG ─── */
.sore-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: middle;
	flex-shrink: 0;
	fill: none !important;
	stroke: currentColor;
}

/* ─── Reset Vamtam "icon-box" styles ─── */
/* Vamtam CSS targets :is(svg, i) with border-radius:100% + background-color + padding
   which turns every SVG into a filled circle. Override all of those. */
:is(.sore-icon),
[class*="vamtam-has-icon-styles"] :is(.sore-icon),
.elementor-element :is(.sore-icon) {
	background-color: transparent !important;
	background: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	font-size: inherit !important;
	color: inherit !important;
}

/* Size overrides for specific Elementor contexts */
.elementor-button-icon .sore-icon,
.elementor-icon-list-icon .sore-icon {
	width: 1.2em;
	height: 1.2em;
}

.e-n-accordion-item-title-icon .sore-icon {
	width: 0.9em;
	height: 0.9em;
}

.elementor-icon .sore-icon {
	width: 1em;
	height: 1em;
}

/* Loading spinner animation */
.sore-icon.e-fas-spinner {
	animation: sore-spin 1.2s linear infinite;
}
@keyframes sore-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* Mobile nav toggle icons */
.elementor-menu-toggle__icon--open.sore-icon,
.elementor-menu-toggle__icon--close.sore-icon {
	width: 1.4em;
	height: 1.4em;
}

.elementor-social-icons-wrapper.elementor-grid {
	display: inline-grid;
	grid-template-columns: var(--grid-template-columns, repeat(auto-fit, minmax(0, auto)));
	column-gap: var(--grid-column-gap, 8px);
	row-gap: var(--grid-row-gap, 8px);
}

.elementor-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.elementor-social-icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.elementor-screen-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
