@charset "UTF-8";

/* ==========================================================================
   Booqsa Garnet
   Realization of the saved design direction. Scoped to .booqsa-front so the
   Kadence parent theme is overridden without being stripped.
   ========================================================================== */

/* Faces -------------------------------------------------------------------- */

@font-face {
	font-family: "Cabinet Grotesk";
	src: url("fonts/cabinet-grotesk-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Cabinet Grotesk";
	src: url("fonts/cabinet-grotesk-800.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "General Sans";
	src: url("fonts/general-sans-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "General Sans";
	src: url("fonts/general-sans-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "General Sans";
	src: url("fonts/general-sans-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* Tokens ------------------------------------------------------------------- */

.booqsa-front {
	--bg: #F3F1EF;
	--surface: #FFFFFF;
	--ink: #060911;
	--muted: #6B6560;
	--line: #E2DEDA;
	--accent: #9E2A48;
	--accent-soft: #F6E9EC;
	--accent-tint: #E7B9C4;
	--on-dark: #F3F1EF;
	--on-dark-muted: #A5A099;

	--font-display: "Cabinet Grotesk", "Helvetica Neue", Arial, sans-serif;
	--font-body: "General Sans", "Helvetica Neue", Arial, sans-serif;

	--r-sm: 8px;
	--r-md: 14px;
	--r-lg: 24px;
	--r-pill: 999px;

	--s-xs: 6px;
	--s-sm: 12px;
	--s-md: 20px;
	--s-lg: 40px;
	--s-xl: 88px;

	--wrap: 1240px;
	--gutter: 20px;
	--nav-h: 72px;

	--shadow-card: 0 10px 28px -14px rgba(6, 9, 17, 0.28);
}

/* Kadence neutralisation --------------------------------------------------
   :where() keeps these at zero specificity, so every component rule below
   wins without !important. */

.booqsa-front :where(h1, h2, h3, h4, p, ul, ol, li, figure, blockquote, dl) {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	font: inherit;
	color: inherit;
}
.booqsa-front :where(a) {
	color: inherit;
	text-decoration: none;
}
.booqsa-front :where(img, svg) {
	display: block;
	max-width: 100%;
}
.booqsa-front :where(button, input) {
	font: inherit;
	color: inherit;
	border: 0;
	background: none;
}
.booqsa-front :where(.site, .site-container, .content-area, #wrapper) {
	max-width: none;
	margin: 0;
	padding: 0;
}

/* Base --------------------------------------------------------------------- */

.booqsa-front {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.55;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	overflow-x: clip;
}

.booqsa-front h1,
.booqsa-front h2,
.booqsa-front h3 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.018em;
}

.booqsa-front .wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.booqsa-front .b-sec {
	padding-block: clamp(48px, 6vw, var(--s-xl));
}

.booqsa-front .b-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: var(--s-sm);
}

.booqsa-front .b-skip {
	position: absolute;
	left: -9999px;
}
.booqsa-front .b-skip:focus {
	left: var(--gutter);
	top: 10px;
	z-index: 99;
	background: var(--surface);
	color: var(--ink);
	padding: 10px 16px;
	border-radius: var(--r-pill);
}

/* Buttons and links -------------------------------------------------------- */

.booqsa-front .b-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 26px;
	border-radius: var(--r-pill);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.booqsa-front .b-btn:active {
	transform: translateY(1px);
}
.booqsa-front .b-btn--primary {
	background: var(--accent);
	color: #FFFFFF;
}
.booqsa-front .b-btn--primary:hover {
	background: #85203B;
}
.booqsa-front .b-btn--ghost {
	border: 1px solid var(--ink);
	color: var(--ink);
}
.booqsa-front .b-btn--ghost:hover {
	background: var(--ink);
	color: var(--bg);
}
.booqsa-front .b-btn--sm {
	padding: 11px 20px;
	font-size: 14px;
}

.booqsa-front .b-link {
	font-weight: 500;
	font-size: 15px;
	border-bottom: 1px solid transparent;
	transition: border-color 0.18s ease;
}
.booqsa-front .b-link:hover {
	border-bottom-color: currentColor;
}
.booqsa-front .b-link--light {
	color: var(--on-dark);
}

/* Nav ---------------------------------------------------------------------- */

.booqsa-front .b-nav {
	position: absolute;
	inset-block-start: 0;
	inset-inline: 0;
	z-index: 20;
	color: var(--on-dark);
}
.booqsa-front .b-nav__inner {
	height: var(--nav-h);
	display: flex;
	align-items: center;
	gap: var(--s-lg);
}
.booqsa-front .b-logo {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 25px;
	letter-spacing: -0.035em;
	line-height: 1;
}
.booqsa-front .b-nav__links {
	display: flex;
	gap: 28px;
	font-size: 15px;
	font-weight: 500;
}
.booqsa-front .b-nav__links a {
	opacity: 0.82;
	transition: opacity 0.18s ease;
}
.booqsa-front .b-nav__links a:hover {
	opacity: 1;
}
.booqsa-front .b-nav__actions {
	margin-inline-start: auto;
	display: flex;
	align-items: center;
	gap: var(--s-md);
}
.booqsa-front .b-burger {
	display: none;
	margin-inline-start: auto;
	width: 40px;
	height: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}
.booqsa-front .b-burger span {
	display: block;
	width: 20px;
	height: 1.6px;
	background: currentColor;
}
.booqsa-front .b-nav__mobile {
	display: none;
}

/* Hero --------------------------------------------------------------------- */

.booqsa-front .b-hero {
	position: relative;
	background: var(--ink);
	color: var(--on-dark);
	padding-block: calc(var(--nav-h) + clamp(48px, 8vw, 96px)) 0;
	isolation: isolate;
}

/* The one asymmetric moment: a full bleed panel anchored to the right edge,
   sitting behind the headline rather than beside it. */
.booqsa-front .b-hero__art {
	position: absolute;
	inset-block: 0;
	inset-inline-end: 0;
	width: 46%;
	z-index: -1;
	background:
		radial-gradient(70% 90% at 78% 18%, rgba(158, 42, 72, 0.55) 0%, rgba(158, 42, 72, 0) 62%),
		linear-gradient(202deg, #2A1622 0%, #12151F 52%, #060911 100%);
	clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.booqsa-front .b-hero__art::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--ink) 0%, rgba(6, 9, 17, 0) 46%);
}

.booqsa-front .b-hero__inner {
	position: relative;
	z-index: 2;
}
.booqsa-front .b-hero__title {
	font-size: clamp(38px, 6.2vw, 76px);
	line-height: 1.02;
	max-width: 15ch;
	margin-bottom: var(--s-md);
}
.booqsa-front .b-hero__accent {
	color: var(--accent-tint);
}
.booqsa-front .b-hero__sub {
	max-width: 46ch;
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.5;
	color: var(--on-dark-muted);
	margin-bottom: clamp(32px, 4.5vw, 56px);
}

/* Search panel: the only genuinely elevated object, and the only element that
   crosses a section boundary. */
.booqsa-front .b-search {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: 1.25fr 1fr auto;
	align-items: center;
	gap: var(--s-xs);
	background: var(--surface);
	border-radius: var(--r-pill);
	padding: 8px 8px 8px 10px;
	margin-bottom: -44px;
	box-shadow: 0 26px 60px -26px rgba(6, 9, 17, 0.75);
	color: var(--ink);
}
.booqsa-front .b-search__field {
	position: relative;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 22px;
	border-radius: var(--r-pill);
	transition: background-color 0.18s ease;
}
.booqsa-front .b-search__icon {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	fill: none;
	stroke: var(--muted);
	stroke-width: 1.5;
}
.booqsa-front .b-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}
.booqsa-front .b-search__field::after {
	content: "";
	position: absolute;
	inset-inline-end: 0;
	inset-block: 6px;
	width: 1px;
	background: var(--line);
}
.booqsa-front .b-search__field:last-of-type::after {
	display: none;
}
.booqsa-front .b-search__field:hover {
	background: #FAF8F7;
}
.booqsa-front .b-search__field input {
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	padding: 0;
	background: transparent;
}
.booqsa-front .b-search__field input::placeholder {
	color: var(--ink);
	font-weight: 500;
	opacity: 1;
}
.booqsa-front .b-search__field input:focus {
	outline: none;
}
.booqsa-front .b-search__field:focus-within {
	background: var(--accent-soft);
	box-shadow: inset 0 0 0 2px rgba(158, 42, 72, 0.35);
}
.booqsa-front .b-search__go {
	padding-inline: 34px;
	align-self: stretch;
}

/* Category chips ----------------------------------------------------------- */

.booqsa-front .b-cats {
	padding-block: clamp(72px, 8vw, 92px) 0;
}
.booqsa-front .b-cats__track {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-block: 4px;
}
.booqsa-front .b-cats__track::-webkit-scrollbar {
	display: none;
}
.booqsa-front .b-chip {
	flex: 0 0 auto;
	padding: 10px 20px;
	border-radius: var(--r-pill);
	border: 1px solid var(--line);
	background: var(--surface);
	font-size: 14px;
	font-weight: 500;
	transition: border-color 0.18s ease, color 0.18s ease;
}
.booqsa-front .b-chip:hover {
	border-color: var(--accent);
	color: var(--accent);
}

/* Rails -------------------------------------------------------------------- */

.booqsa-front .b-rail__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--s-md);
	margin-bottom: var(--s-md);
}
.booqsa-front .b-rail__head h2 {
	font-size: clamp(26px, 3vw, 36px);
}
.booqsa-front .b-rail__sub {
	color: var(--muted);
	font-size: 15px;
	margin-top: 6px;
}
.booqsa-front .b-rail__nav {
	display: flex;
	gap: 8px;
	flex: 0 0 auto;
}
.booqsa-front .b-arrow {
	width: 40px;
	height: 40px;
	border-radius: var(--r-pill);
	border: 1px solid var(--line);
	background: var(--surface);
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: border-color 0.18s ease, color 0.18s ease;
}
.booqsa-front .b-arrow svg {
	width: 15px;
	height: 15px;
}
.booqsa-front .b-arrow:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.booqsa-front .b-arrow[disabled] {
	opacity: 0.35;
	cursor: default;
}

.booqsa-front .b-rail__track {
	display: flex;
	gap: var(--s-md);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-block: 6px 14px;
	padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
	scroll-padding-inline-start: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.booqsa-front .b-rail__track::-webkit-scrollbar {
	display: none;
}

.booqsa-front .b-rail__more {
	flex: 0 0 168px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	padding: var(--s-md);
	border-radius: var(--r-md);
	border: 1px dashed var(--line);
	font-weight: 600;
	font-size: 15px;
	color: var(--accent);
}
.booqsa-front .b-rail__more svg {
	width: 16px;
	height: 16px;
}

/* Salon card --------------------------------------------------------------- */

.booqsa-front .s-card {
	flex: 0 0 286px;
	scroll-snap-align: start;
}
.booqsa-front .s-card__link {
	display: block;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.booqsa-front .s-card__link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card);
	border-color: #D5CFCA;
}
.booqsa-front .s-card__media {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.booqsa-front .s-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.booqsa-front .s-card__body {
	display: block;
	padding: 15px 16px 17px;
}
.booqsa-front .s-card__name {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.2;
	letter-spacing: -0.012em;
}
.booqsa-front .s-card__check {
	flex: 0 0 auto;
	width: 15px;
	height: 15px;
	fill: var(--accent);
}
.booqsa-front .s-card__place {
	display: block;
	margin-top: 3px;
	font-size: 14px;
	color: var(--muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.booqsa-front .s-card__cat {
	color: var(--muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.booqsa-front .s-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-sm);
	margin-top: 12px;
	padding-top: 11px;
	border-top: 1px solid var(--line);
	font-size: 14px;
}
.booqsa-front .s-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 7px;
	font-size: 14px;
	font-weight: 600;
}
.booqsa-front .s-card__rating svg {
	width: 12px;
	height: 12px;
	fill: var(--accent);
}
.booqsa-front .s-card__rating--none {
	display: inline-block;
	font-weight: 500;
	color: var(--accent);
	background: var(--accent-soft);
	padding: 3px 10px;
	border-radius: var(--r-pill);
	font-size: 12.5px;
}
.booqsa-front .s-card__price {
	color: var(--muted);
	white-space: nowrap;
}

/* How it works ------------------------------------------------------------ */
/* A stepped band, not feature cards: no containers and no elevation, just a
   hairline over each step with the numeral carrying the hierarchy. */

.booqsa-front .b-steps {
	background: var(--accent-soft);
}
.booqsa-front .b-steps__title {
	font-size: clamp(30px, 3.6vw, 46px);
	max-width: 18ch;
	margin-bottom: clamp(32px, 4vw, 56px);
}
.booqsa-front .b-steps__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-lg);
}
.booqsa-front .b-steps__row li {
	padding-top: var(--s-md);
	border-top: 1px solid rgba(158, 42, 72, 0.24);
}
.booqsa-front .b-steps__n {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(44px, 4.4vw, 60px);
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--accent);
	margin-bottom: var(--s-sm);
}
.booqsa-front .b-steps__row strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.15;
	margin-bottom: 7px;
}
.booqsa-front .b-steps__row li > span:not(.b-steps__n) {
	display: block;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
	max-width: 36ch;
}
.booqsa-front .b-steps__row li {
	position: relative;
}
.booqsa-front .b-steps__row li + li::before {
	content: "";
	position: absolute;
	inset-block-start: 44px;
	inset-inline-start: calc(-1 * var(--s-lg) / 2 - 5px);
	width: 10px;
	height: 10px;
	border-top: 1.6px solid var(--accent);
	border-inline-end: 1.6px solid var(--accent);
	transform: rotate(45deg);
	opacity: 0.45;
}
.booqsa-front .b-steps__note {
	margin-top: clamp(32px, 4vw, 48px);
	font-size: 15px;
	font-weight: 500;
	color: var(--accent);
}

/* City directory ----------------------------------------------------------- */

.booqsa-front .b-cities {
	border-top: 1px solid var(--line);
}
.booqsa-front .b-cities__title {
	font-size: clamp(26px, 3vw, 36px);
	margin-bottom: var(--s-lg);
}
.booqsa-front .b-cities__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
	gap: var(--s-lg) var(--s-md);
}
.booqsa-front .b-cities__col h3 {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding-bottom: 10px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--line);
}
.booqsa-front .b-cities__col li {
	margin-bottom: 7px;
}
.booqsa-front .b-cities__col a {
	font-size: 15px;
	color: var(--muted);
	transition: color 0.16s ease;
}
.booqsa-front .b-cities__col a:hover {
	color: var(--accent);
}

/* For professionals -------------------------------------------------------- */

.booqsa-front .b-pro {
	background: var(--ink);
	color: var(--on-dark);
}
.booqsa-front .b-pro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
}
.booqsa-front .b-pro__text h2 {
	font-size: clamp(30px, 3.6vw, 46px);
	margin-bottom: var(--s-md);
}
.booqsa-front .b-pro__text p {
	color: var(--on-dark-muted);
	max-width: 46ch;
	margin-bottom: var(--s-lg);
}
.booqsa-front .b-pro__actions {
	display: flex;
	align-items: center;
	gap: var(--s-md);
	flex-wrap: wrap;
}
.booqsa-front .b-pro__list li {
	padding-block: var(--s-md);
	border-top: 1px solid rgba(243, 241, 239, 0.16);
}
.booqsa-front .b-pro__list li:last-child {
	border-bottom: 1px solid rgba(243, 241, 239, 0.16);
}
.booqsa-front .b-pro__list strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 4px;
}
.booqsa-front .b-pro__list span {
	color: var(--on-dark-muted);
	font-size: 15px;
}

/* Footer ------------------------------------------------------------------- */

.booqsa-front .b-footer {
	background: var(--ink);
	color: var(--on-dark);
	padding-top: clamp(48px, 6vw, 72px);
	border-top: 1px solid rgba(243, 241, 239, 0.12);
}
.booqsa-front .b-footer__grid {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--s-lg);
	flex-wrap: wrap;
}
.booqsa-front .b-footer__links {
	display: flex;
	gap: var(--s-lg);
	flex-wrap: wrap;
	font-size: 15px;
	font-weight: 500;
}
.booqsa-front .b-footer__links a {
	opacity: 0.86;
	transition: opacity 0.16s ease, color 0.16s ease;
}
.booqsa-front .b-footer__links a:hover {
	opacity: 1;
	color: var(--accent-tint);
}
.booqsa-front .b-footer__brand p {
	margin-top: var(--s-sm);
	color: var(--on-dark-muted);
	font-size: 15px;
	max-width: 30ch;
}
.booqsa-front .b-footer h4 {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--on-dark-muted);
	margin-bottom: var(--s-sm);
}
.booqsa-front .b-footer li {
	margin-bottom: 8px;
}
.booqsa-front .b-footer li a {
	font-size: 15px;
	opacity: 0.86;
}
.booqsa-front .b-footer li a:hover {
	opacity: 1;
	color: var(--accent-tint);
}
.booqsa-front .b-footer__base {
	margin-top: clamp(40px, 5vw, 64px);
	padding-block: var(--s-md);
	border-top: 1px solid rgba(243, 241, 239, 0.12);
	font-size: 13px;
	color: var(--on-dark-muted);
}

/* Reveal ------------------------------------------------------------------- */
/* Hidden only once JS has confirmed it runs, so no script means visible. */

.booqsa-front.js .reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.booqsa-front.js .reveal.is-in {
	opacity: 1;
	transform: none;
}

/* Responsive --------------------------------------------------------------- */

@media (max-width: 1080px) {
	.booqsa-front .b-search {
		grid-template-columns: 1fr 1fr;
		border-radius: var(--r-lg);
		padding: 10px;
		gap: 4px;
	}
	.booqsa-front .b-search__field {
		border-radius: var(--r-md);
	}
	.booqsa-front .b-search__field::after {
		display: none;
	}
	.booqsa-front .b-search__go {
		grid-column: 1 / -1;
		padding-block: 16px;
	}
}

@media (max-width: 860px) {

	.booqsa-front .b-hero__art {
		width: 100%;
		clip-path: none;
		opacity: 0.6;
	}
	.booqsa-front .b-hero__art::after {
		background: linear-gradient(0deg, var(--ink) 6%, rgba(6, 9, 17, 0.25) 70%);
	}

	.booqsa-front .b-pro__grid {
		grid-template-columns: 1fr;
	}
	.booqsa-front .b-steps__row {
		grid-template-columns: 1fr;
		gap: var(--s-md);
	}
	.booqsa-front .b-steps__row li + li::before {
		display: none;
	}

	.booqsa-front .b-rail__nav {
		display: none;
	}
}

@media (max-width: 560px) {
	.booqsa-front .b-search {
		grid-template-columns: 1fr;
	}
	.booqsa-front .s-card {
		flex-basis: 74vw;
	}
	.booqsa-front .b-cities__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.booqsa-front.js .reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Host chrome ------------------------------------------------------------- */
/* The absolutely positioned nav must clear the WordPress admin bar. */

.booqsa-front.admin-bar .b-nav {
	inset-block-start: 32px;
}
@media screen and (max-width: 782px) {
	.booqsa-front.admin-bar .b-nav {
		inset-block-start: 46px;
	}
}

/* Kadence styles inputs by attribute selector, which outranks the :where()
   reset. Match that specificity rather than reaching for !important. */

.booqsa-front .b-search__field input[type="search"],
.booqsa-front .b-search__field input[type="text"],
.booqsa-front .b-search__field input[type="date"] {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
	margin: 0;
	height: auto;
	min-height: 0;
	line-height: 1.4;
	color: var(--ink);
	font-size: 16px;
	-webkit-appearance: none;
	appearance: none;
}
.booqsa-front .b-search__field input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0.45;
	cursor: pointer;
}
.booqsa-front .b-search__field input:focus,
.booqsa-front .b-search__field input:focus-visible {
	outline: none;
	box-shadow: none;
}
