/* Boutiquenic Reviews Carousel — transparent by design: no background is set on the widget. */

.bqr,
.bqr h2,
.bqr p,
.bqr span,
.bqr article,
.bqr button {
	font-family: 'Google Sans', 'Google Sans Text', 'Product Sans', 'Assistant', system-ui, -apple-system, sans-serif !important;
}

.bqr {
	background: transparent;
	color: inherit;
	direction: rtl;
}

.bqr *,
.bqr *::before,
.bqr *::after {
	box-sizing: border-box;
}

.bqr-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.bqr-kicker {
	display: block;
	font-size: 12px;
	letter-spacing: 0.28em;
	opacity: 0.65;
}

.bqr-heading {
	margin: 14px 0 0;
	font-size: clamp(24px, 3vw, 42px);
	font-weight: 200;
	line-height: 1.2;
	color: inherit;
}

.bqr-head-side {
	display: flex;
	align-items: flex-end;
	gap: 28px;
}

.bqr-rating {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bqr-rating-num {
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
}

.bqr-rating-meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.bqr-stars {
	color: #a1b994;
	letter-spacing: 0.18em;
	font-size: 13px;
	line-height: 1;
}

.bqr-source {
	font-size: 12.5px;
	opacity: 0.75;
	letter-spacing: 0.06em;
}

/* Nav */
.bqr-nav {
	display: flex;
	gap: 10px;
}

.bqr-nav button {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: inherit;
	border: 1px solid currentColor;
	border-radius: 999px;
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.bqr-nav button svg {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}

.bqr-nav button:hover {
	transform: translateY(-1px);
}

.bqr-nav button[aria-disabled="true"] {
	opacity: 0.3;
	cursor: default;
	transform: none;
}

/* Track */
.bqr-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	padding-bottom: 4px;
	cursor: grab;
}

.bqr-track::-webkit-scrollbar {
	display: none;
}

.bqr-track:active {
	cursor: grabbing;
}

.bqr-track:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 6px;
}

/* Card — transparent unless a background colour is chosen in Elementor */
.bqr-card {
	flex: 0 0 auto;
	scroll-snap-align: start;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 2px;
	padding: 32px 28px 26px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 280px;
}

.bqr-quote {
	margin: 0;
	flex: 1 1 auto;
	font-size: 17.5px;
	font-weight: 300;
	line-height: 1.7;
	text-wrap: pretty;
}

.bqr-author {
	padding-top: 16px;
	border-top: 1px solid currentColor;
	font-size: 14px;
	font-weight: 500;
}

@media (max-width: 1024px) {
	.bqr-head {
		margin-bottom: 28px;
	}
}

@media (max-width: 767px) {
	.bqr-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.bqr-head-side {
		width: 100%;
		justify-content: space-between;
		gap: 16px;
	}

	.bqr-card {
		padding: 26px 22px 22px;
		min-height: 250px;
	}

	.bqr-quote {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bqr-nav button {
		transition: none;
	}
}
