/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */


.pf-filters {
	--pf-text: #332F20;
	--pf-border: #E5E5E5;
	--pf-count: #9A968A;
	--pf-blue: #3B82F6;
	--pf-black: #1A1A1A;

	font-family: 'Roboto', sans-serif;
	max-width: 340px;
	width: 100%;
	box-sizing: border-box;
	color: var(--pf-text);
}

.pf-filters * {
	box-sizing: border-box;
}

.pf-section {
	padding: 20px 0;
}

.pf-section:first-child {
	padding-top: 0;
}

.pf-heading {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 27px;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--pf-text);
	margin: 0 0 18px 0;
}

.pf-divider {
	border: none;
	border-top: 3px solid var(--pf-border);
	margin: 0;
}

/* ---- Toggle rows (Availability) ---- */
.pf-toggle-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.pf-label {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--pf-text);
}

.pf-toggle {
	position: relative;
	display: inline-block;
	cursor: pointer;
	flex-shrink: 0;
}

.pf-toggle input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.pf-toggle-track {
	display: block;
	width: 50px;
	height: 28px;
	border-radius: 999px;
	background: #E0635A;
	position: relative;
	transition: background-color 0.2s ease;
}

.pf-toggle-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
	transition: transform 0.2s ease;
}

.pf-toggle input:checked + .pf-toggle-track {
	background: var(--pf-blue);
}

.pf-toggle input:checked + .pf-toggle-track .pf-toggle-thumb {
	transform: translateX(22px);
}

.pf-toggle input:focus-visible + .pf-toggle-track {
	outline: 2px solid var(--pf-blue);
	outline-offset: 2px;
}

/* ---- Checkbox rows (Series / Layouts) ---- */
.pf-check-row {
	display: flex;
	align-items: center;
	padding: 9px 0;
	cursor: pointer;
	gap: 8px;
}

.pf-check-label {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 19px;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--pf-text);
}

.pf-check-count {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: var(--pf-count);
	margin-left: 2px;
	text-align: right;
}

.pf-check-row--no-count .pf-check-label {
	flex: 1;
}

.pf-check-row:not(.pf-check-row--no-count) .pf-check-count {
	flex: 1;
}

.pf-checkbox {
	position: relative;
	display: inline-flex;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin-left: auto;
}

.pf-checkbox input {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

.pf-checkbox-box {
	width: 24px;
	height: 24px;
	border-radius: 5px;
	border: 1.5px solid #C9C6BC;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.pf-check-icon {
	width: 12px;
	height: 10px;
	opacity: 0;
	transition: opacity 0.15s ease;
}

.pf-checkbox input:checked + .pf-checkbox-box {
	background: var(--pf-black);
	border-color: var(--pf-black);
}

.pf-checkbox input:checked + .pf-checkbox-box .pf-check-icon {
	opacity: 1;
}

.pf-checkbox input:focus-visible + .pf-checkbox-box {
	outline: 2px solid var(--pf-blue);
	outline-offset: 2px;
}

.pf-checkbox-box.is-checked {
    background: var(--pf-black);
    border-color: var(--pf-black);
}

.pf-checkbox-box.is-checked .pf-check-icon {
    opacity: 1;
}

.pf-toggle-track.is-on {
    background: var(--pf-blue);
}

.pf-toggle-track.is-on .pf-toggle-thumb {
    transform: translateX(22px);
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
	.pf-filters {
		max-width: 100%;
	}

	.pf-heading {
		font-size: 22px;
	}

	.pf-label,
	.pf-check-label {
		font-size: 20px;
	}

	.pf-check-count {
		font-size: 15px;
	}

	.pf-toggle-track {
		width: 44px;
		height: 25px;
	}

	.pf-toggle-thumb {
		width: 19px;
		height: 19px;
	}

	.pf-toggle input:checked + .pf-toggle-track .pf-toggle-thumb {
		transform: translateX(19px);
	}
}