/* ============================================================================
   Strawberry for Beauty — global chrome
   header · mega · search · drawer · footer · floating WhatsApp

   Scope: everything lives under .sfb-nav / .sfb-drawer / .sfb-foot / .sfb-wa-*
   or a body.sfb-* class. No bare element selectors, so this file cannot leak
   into the 3D landing pages or the WooCommerce block templates.

   #DE2227 is the only accent, and it is used for interaction and emphasis —
   never as a large background field.
   ========================================================================== */

:root {
	--sfb-red:      #DE2227;
	--sfb-red-dark: #B71C20;
	--sfb-ink:      #171314;
	--sfb-ink-2:    #241D1F;
	--sfb-paper:    #FFFFFF;
	--sfb-mute:     #7A7175;
	--sfb-line:     rgba(23, 19, 20, .10);
	--sfb-line-dk:  rgba(255, 255, 255, .12);

	--sfb-nav-h:    76px;
	--sfb-ease:     cubic-bezier(.22, .61, .36, 1);

	--sfb-f-head:   "El Messiri", "Almarai", Tahoma, sans-serif;
	--sfb-f-body:   "Almarai", Tahoma, sans-serif;
	--sfb-f-num:    "Space Grotesk", ui-monospace, SFMono-Regular, monospace;
}

@media (max-width: 782px) {
	:root { --sfb-nav-h: 64px; }
}

/* Never inherit the page's box model. The drawer is exactly 360px wide with
   ~40px of horizontal padding; under content-box that is a 400px panel on a
   360px phone, i.e. guaranteed horizontal scroll. Scoped to our own trees so
   it cannot alter WooCommerce or the 3D pages. */
.sfb-nav, .sfb-nav *,
.sfb-drawer, .sfb-drawer *,
.sfb-scrim,
.sfb-foot, .sfb-foot *,
.sfb-wa-float, .sfb-wa-float * { box-sizing: border-box; }

/* The block pipeline wraps template parts in an extra element; neutralise it
   so it cannot introduce a stray box or margin around a fixed header. */
.wp-block-template-part:has(> .sfb-nav),
.wp-block-template-part:has(> .sfb-foot) { display: contents; }

/* Fixed header would otherwise sit on top of the first section. Pages with a
   full-bleed hero behind the bar opt out. */
body.sfb-chrome:not(.sfb-over-hero) { padding-top: var(--sfb-nav-h); }

.sfb-skip {
	position: absolute; top: -100px; inset-inline-start: 12px; z-index: 200;
	background: var(--sfb-paper); color: var(--sfb-ink);
	font-family: var(--sfb-f-body); font-size: .9rem;
	padding: .7rem 1.1rem; border-radius: 10px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
	transition: top .18s var(--sfb-ease);
}
.sfb-skip:focus { top: 12px; }

/* ---------------------------------------------------------------- header -- */

.sfb-nav {
	position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 70;
	font-family: var(--sfb-f-body);
	background: var(--sfb-paper);
	border-block-end: 1px solid var(--sfb-line);
	/* only transform/opacity/colour animate — never height */
	transition: background .28s var(--sfb-ease), border-color .28s var(--sfb-ease),
	            box-shadow .28s var(--sfb-ease), backdrop-filter .28s var(--sfb-ease);
}

.sfb-nav__in {
	display: flex; align-items: center; gap: 1.25rem;
	block-size: var(--sfb-nav-h);
	max-inline-size: 1440px; margin-inline: auto;
	padding-inline: clamp(1rem, 3vw, 2.25rem);
}

/* Transparent over a hero, solid once she scrolls past it. Height never
   changes between the two states, so nothing below can jump. */
.sfb-nav.is-over-hero {
	background: transparent;
	border-block-end-color: transparent;
	color: #fff;
}
.sfb-nav.is-stuck {
	background: rgba(255, 255, 255, .82);
	-webkit-backdrop-filter: blur(14px) saturate(1.4);
	backdrop-filter: blur(14px) saturate(1.4);
	border-block-end-color: var(--sfb-line);
	box-shadow: 0 1px 18px rgba(23, 19, 20, .06);
	color: var(--sfb-ink);
}

/* brand ------------------------------------------------------------------- */

.sfb-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; flex: 0 0 auto; }
.sfb-logo { display: block; block-size: 44px; inline-size: auto; }
.sfb-brand__words { display: flex; flex-direction: column; line-height: 1.05; }
.sfb-brand__words .n {
	font-family: var(--sfb-f-head); font-weight: 600; font-size: 1.12rem;
	color: var(--sfb-red);
}
.sfb-brand__words .t {
	font-family: var(--sfb-f-num); font-weight: 500; font-size: .58rem;
	letter-spacing: .22em; color: currentColor; opacity: .72;
}
.sfb-nav.is-over-hero:not(.is-stuck) .sfb-brand__words .n { color: #fff; }

@media (max-width: 600px) {
	.sfb-brand__words { display: none; }
	.sfb-logo { block-size: 38px; }
}

/* links ------------------------------------------------------------------- */

.sfb-nav__links { flex: 1 1 auto; display: flex; justify-content: center; }
.sfb-nav__links > ul { display: flex; align-items: center; gap: clamp(.5rem, 1.8vw, 1.6rem); list-style: none; margin: 0; padding: 0; }
.sfb-nav__links li { position: relative; }

.sfb-nav__links a {
	position: relative; display: inline-flex; align-items: center; gap: .28rem;
	padding: .45rem .1rem;
	font-family: var(--sfb-f-body); font-weight: 400; font-size: .95rem;
	color: inherit; text-decoration: none; white-space: nowrap;
	transition: color .2s var(--sfb-ease);
}

/* the red rule is drawn from the right, because the reading order is RTL */
.sfb-nav__links a::after {
	content: ""; position: absolute; inset-block-end: 0; inset-inline: 0;
	block-size: 2px; background: var(--sfb-red);
	transform: scaleX(0); transform-origin: right center;
	transition: transform .3s var(--sfb-ease);
}
.sfb-nav__links a:hover::after,
.sfb-nav__links a:focus-visible::after,
.sfb-nav__links li.is-open > a::after { transform: scaleX(1); }
.sfb-nav__links a:hover { color: var(--sfb-red); }

.sfb-caret { inline-size: 14px; block-size: 14px; transition: transform .25s var(--sfb-ease); }
.sfb-nav__links li.is-open .sfb-caret { transform: rotate(180deg); }

@media (max-width: 980px) {
	.sfb-nav__links { display: none; }
}

/* mega -------------------------------------------------------------------- */

.sfb-mega {
	position: absolute; inset-block-start: calc(100% + 14px); inset-inline-end: 50%;
	transform: translateX(50%) translateY(-6px);
	inline-size: min(620px, 78vw);
	background: var(--sfb-paper); color: var(--sfb-ink);
	border: 1px solid var(--sfb-line); border-radius: 16px;
	box-shadow: 0 18px 50px rgba(23, 19, 20, .13);
	padding: 1.4rem 1.6rem;
	opacity: 0; visibility: hidden;
	transition: opacity .22s var(--sfb-ease), transform .22s var(--sfb-ease), visibility .22s;
}
.sfb-mega[hidden] { display: block; } /* [hidden] is the a11y state; CSS drives the reveal */
.sfb-nav__links li.is-open .sfb-mega {
	opacity: 1; visibility: visible; transform: translateX(50%) translateY(0);
}

.sfb-mega__in { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem 2rem; }
.sfb-mega__h {
	font-family: var(--sfb-f-head); font-weight: 600; font-size: .82rem;
	letter-spacing: .06em; color: var(--sfb-mute);
	margin: 0 0 .7rem; padding-block-end: .55rem;
	border-block-end: 1px solid var(--sfb-line);
}
.sfb-mega ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; }
.sfb-mega a {
	display: flex; align-items: center; justify-content: space-between; gap: .8rem;
	padding: .5rem .6rem; border-radius: 9px;
	font-size: .92rem; color: var(--sfb-ink); text-decoration: none;
	transition: background .18s var(--sfb-ease), color .18s var(--sfb-ease);
}
.sfb-mega a::after { content: none; }
.sfb-mega a:hover { background: rgba(222, 34, 39, .06); color: var(--sfb-red); }
.sfb-num {
	font-family: var(--sfb-f-num); font-weight: 500; font-size: .72rem;
	color: var(--sfb-mute); font-variant-numeric: tabular-nums;
}

/* actions ----------------------------------------------------------------- */

.sfb-nav__acts { display: flex; align-items: center; gap: .15rem; flex: 0 0 auto; }

.sfb-ico {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	inline-size: 44px; block-size: 44px;
	border: 0; background: none; padding: 0; cursor: pointer;
	color: inherit; text-decoration: none; border-radius: 12px;
	transition: background .18s var(--sfb-ease), color .18s var(--sfb-ease);
}
.sfb-ico svg { inline-size: 21px; block-size: 21px; }
.sfb-ico:hover { color: var(--sfb-red); background: rgba(222, 34, 39, .07); }
.sfb-ico--wa:hover { color: #25D366; background: rgba(37, 211, 102, .10); }

.sfb-cart-count {
	position: absolute; inset-block-start: 5px; inset-inline-start: 5px;
	min-inline-size: 18px; block-size: 18px; padding-inline: 4px;
	display: grid; place-items: center;
	background: var(--sfb-red); color: #fff; border-radius: 999px;
	/* 700, not 600: the shared font request ships Space Grotesk at 400/500/700,
	   so 600 would be synthetically bolded and read fuzzy at 10px. */
	font-family: var(--sfb-f-num); font-weight: 700; font-size: .66rem;
	font-variant-numeric: tabular-nums; line-height: 1;
}
.sfb-cart-count[hidden] { display: none; }

.sfb-burger { display: none; }
@media (max-width: 980px) { .sfb-burger { display: inline-flex; } }
@media (max-width: 420px)  { .sfb-ico--wa { display: none; } }

/* search ------------------------------------------------------------------ */

.sfb-search {
	border-block-start: 1px solid var(--sfb-line);
	background: var(--sfb-paper); color: var(--sfb-ink);
}
.sfb-search[hidden] { display: none; }
.sfb-search form {
	display: flex; gap: .6rem; align-items: center;
	max-inline-size: 1440px; margin-inline: auto;
	padding: .85rem clamp(1rem, 3vw, 2.25rem);
}
.sfb-search input[type="search"] {
	flex: 1 1 auto; min-inline-size: 0;
	font-family: var(--sfb-f-body); font-size: 1rem; color: var(--sfb-ink);
	padding: .7rem .95rem;
	border: 1px solid var(--sfb-line); border-radius: 11px; background: #FAF8F8;
}
.sfb-search input[type="search"]:focus { outline: none; border-color: var(--sfb-red); background: #fff; }
.sfb-search button {
	font-family: var(--sfb-f-body); font-weight: 700; font-size: .92rem;
	color: #fff; background: var(--sfb-red);
	border: 0; border-radius: 11px; padding: .72rem 1.4rem; cursor: pointer;
	transition: background .18s var(--sfb-ease);
}
.sfb-search button:hover { background: var(--sfb-red-dark); }

/* ---------------------------------------------------------------- drawer -- */

.sfb-scrim {
	position: fixed; inset: 0; z-index: 85;
	background: rgba(15, 11, 12, .52);
	-webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
	opacity: 0; transition: opacity .34s var(--sfb-ease);
}
.sfb-scrim[hidden] { display: none; }
.sfb-scrim.is-on { opacity: 1; }

.sfb-drawer {
	position: fixed; inset-block: 0; inset-inline-end: 0; z-index: 90;
	inline-size: 360px; max-inline-size: 100vw;
	background: var(--sfb-paper); color: var(--sfb-ink);
	font-family: var(--sfb-f-body);
	display: flex; flex-direction: column; gap: .35rem;
	padding: 1.1rem 1.25rem 2rem;
	overflow-y: auto; overscroll-behavior: contain;
	box-shadow: -18px 0 50px rgba(15, 11, 12, .18);
	/* transform, never `right` — compositor-only, and it cannot reflow */
	transform: translateX(100%);
	transition: transform .38s var(--sfb-ease);
}
.sfb-drawer[hidden] { display: flex; }      /* [hidden] is the a11y state only */
.sfb-drawer:not(.is-open) { visibility: hidden; }
.sfb-drawer.is-open { transform: translateX(0); visibility: visible; }

@media (max-width: 480px) { .sfb-drawer { inline-size: 100vw; } }

.sfb-drawer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.sfb-drawer__brand .sfb-logo { block-size: 78px; }
.sfb-drawer__x {
	inline-size: 44px; block-size: 44px; flex: 0 0 auto;
	display: grid; place-items: center;
	border: 1px solid var(--sfb-line); border-radius: 12px;
	background: none; color: var(--sfb-ink); cursor: pointer;
	transition: background .18s var(--sfb-ease), color .18s var(--sfb-ease);
}
.sfb-drawer__x svg { inline-size: 19px; block-size: 19px; }
.sfb-drawer__x:hover { background: rgba(222, 34, 39, .07); color: var(--sfb-red); }

.sfb-drawer__nav ul { list-style: none; margin: .6rem 0 .3rem; padding: 0; }
.sfb-drawer__nav li {
	opacity: 0; transform: translateX(14px);
	transition: opacity .3s var(--sfb-ease), transform .3s var(--sfb-ease);
	transition-delay: calc(var(--i, 0) * 40ms);
}
.sfb-drawer.is-open .sfb-drawer__nav li { opacity: 1; transform: none; }
.sfb-drawer__nav a {
	display: block; padding: .72rem .2rem;
	font-family: var(--sfb-f-head); font-weight: 600; font-size: 1.12rem;
	color: var(--sfb-ink); text-decoration: none;
	border-block-end: 1px solid var(--sfb-line);
	transition: color .18s var(--sfb-ease);
}
.sfb-drawer__nav a:hover { color: var(--sfb-red); }

.sfb-acc { border-block-end: 1px solid var(--sfb-line); }
.sfb-acc__h {
	inline-size: 100%; display: flex; align-items: center; justify-content: space-between;
	gap: .8rem; padding: .8rem .2rem;
	background: none; border: 0; cursor: pointer;
	font-family: var(--sfb-f-body); font-weight: 700; font-size: .95rem;
	color: var(--sfb-ink); text-align: start;
}
.sfb-acc__h svg { inline-size: 17px; block-size: 17px; flex: 0 0 auto; transition: transform .25s var(--sfb-ease); }
.sfb-acc__h[aria-expanded="true"] svg { transform: rotate(180deg); }
.sfb-acc__h[aria-expanded="true"] { color: var(--sfb-red); }
.sfb-acc__p[hidden] { display: none; }
.sfb-acc__p ul { list-style: none; margin: 0 0 .7rem; padding: 0; display: grid; gap: .1rem; }
.sfb-acc__p a {
	display: flex; align-items: center; justify-content: space-between; gap: .7rem;
	padding: .55rem .6rem; border-radius: 9px;
	font-size: .9rem; color: var(--sfb-ink); text-decoration: none;
	transition: background .18s var(--sfb-ease), color .18s var(--sfb-ease);
}
.sfb-acc__p a:hover { background: rgba(222, 34, 39, .06); color: var(--sfb-red); }

.sfb-drawer__acct { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin: 1rem 0 .2rem; }
.sfb-drawer__acct a {
	position: relative;
	display: flex; flex-direction: column; align-items: center; gap: .35rem;
	padding: .9rem .5rem; border-radius: 13px;
	border: 1px solid var(--sfb-line);
	font-size: .85rem; color: var(--sfb-ink); text-decoration: none;
	transition: border-color .18s var(--sfb-ease), color .18s var(--sfb-ease);
}
.sfb-drawer__acct a:hover { border-color: var(--sfb-red); color: var(--sfb-red); }
.sfb-drawer__acct svg { inline-size: 21px; block-size: 21px; }
.sfb-cart-count--inline { inset-block-start: 8px; inset-inline-start: 8px; }

.sfb-wa-wide {
	display: flex; align-items: center; justify-content: center; gap: .55rem;
	margin: .85rem 0 1rem; padding: .95rem 1rem;
	border-radius: 13px; background: #25D366; color: #fff;
	font-family: var(--sfb-f-body); font-weight: 700; font-size: .98rem;
	text-decoration: none;
	transition: transform .2s var(--sfb-ease), background .2s var(--sfb-ease);
}
.sfb-wa-wide svg { inline-size: 21px; block-size: 21px; }
.sfb-wa-wide:hover { background: #1FB855; transform: translateY(-2px); }

/* --------------------------------------------------------------- social -- */

.sfb-social { list-style: none; display: flex; align-items: center; gap: .35rem; margin: 0; padding: 0; flex-wrap: wrap; }
.sfb-social a {
	display: grid; place-items: center;
	inline-size: 44px; block-size: 44px;      /* ≥44px touch target */
	border-radius: 12px; color: inherit; text-decoration: none;
	transition: color .2s var(--sfb-ease), background .2s var(--sfb-ease), transform .2s var(--sfb-ease);
}
.sfb-social svg {
	inline-size: 20px; block-size: 20px;
	/* per-icon optical correction — see sfb_social_links() */
	transform: scale(var(--sfb-ico-scale, 1));
}
.sfb-social a:hover { transform: translateY(-2px); }
.sfb-social a[aria-label*="فيسبوك"]:hover  { color: #1877F2; background: rgba(24, 119, 242, .10); }
.sfb-social a[aria-label*="إنستغرام"]:hover { color: #E1306C; background: rgba(225, 48, 108, .10); }
.sfb-social a[aria-label*="تيك توك"]:hover  { color: #25F4EE; background: rgba(255, 255, 255, .10); }
.sfb-social a[aria-label*="سناب"]:hover     { color: #111; background: #FFFC00; }
.sfb-social a[aria-label*="يوتيوب"]:hover   { color: #FF0000; background: rgba(255, 0, 0, .10); }

.sfb-social--drawer a { border: 1px solid var(--sfb-line); }

/* ---------------------------------------------------------------- footer -- */

.sfb-foot {
	background: var(--sfb-ink); color: rgba(255, 255, 255, .74);
	font-family: var(--sfb-f-body); font-size: .92rem; line-height: 1.85;
	border-block-start: 1px solid var(--sfb-line-dk);
	margin-block-start: 0;
}
.sfb-foot__in {
	display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.25fr; gap: 2.5rem 2rem;
	max-inline-size: 1440px; margin-inline: auto;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2.25rem) 2.5rem;
}
@media (max-width: 1024px) { .sfb-foot__in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .sfb-foot__in { grid-template-columns: 1fr; gap: 2rem; } }

.sfb-foot__brand { display: inline-block; }
.sfb-foot__brand .sfb-logo { block-size: 96px; }
.sfb-foot__blurb { margin: .9rem 0 1rem; color: rgba(255, 255, 255, .62); max-inline-size: 34ch; }

.sfb-foot__h {
	font-family: var(--sfb-f-head); font-weight: 600; font-size: 1.02rem;
	color: #fff; margin: 0 0 1rem;
}
.sfb-foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.sfb-foot__list a {
	color: rgba(255, 255, 255, .74); text-decoration: none;
	display: inline-flex; align-items: center; gap: .5rem;
	transition: color .18s var(--sfb-ease), transform .18s var(--sfb-ease);
}
.sfb-foot__list a:hover { color: #fff; transform: translateX(-3px); }
.sfb-foot__list--contact li { display: flex; }
.sfb-foot__list--contact svg { inline-size: 18px; block-size: 18px; flex: 0 0 auto; color: var(--sfb-red); }
.sfb-foot__addr { display: flex; align-items: flex-start; gap: .5rem; color: rgba(255, 255, 255, .62); }
.sfb-foot__addr svg { margin-block-start: .45rem; }
.sfb-ltr { direction: ltr; unicode-bidi: isolate; font-family: var(--sfb-f-num); font-weight: 500; }

.sfb-foot .sfb-social { margin-inline-start: -.55rem; }
.sfb-foot .sfb-social a { color: rgba(255, 255, 255, .70); }

/* map facade — the iframe only exists after she asks for it */
.sfb-map {
	position: relative; margin-block-start: 1.1rem;
	aspect-ratio: 16 / 10; inline-size: 100%;
	border-radius: 14px; overflow: hidden;
	border: 1px solid var(--sfb-line-dk);
	background:
		repeating-linear-gradient(45deg, rgba(255,255,255,.030) 0 12px, transparent 12px 24px),
		#20191B;
}
.sfb-map iframe { position: absolute; inset: 0; inline-size: 100%; block-size: 100%; border: 0; }
.sfb-map__btn {
	position: absolute; inset: 0; inline-size: 100%; block-size: 100%;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
	background: none; border: 0; cursor: pointer;
	font-family: var(--sfb-f-body); font-weight: 700; font-size: .92rem;
	color: rgba(255, 255, 255, .88);
	transition: background .2s var(--sfb-ease), color .2s var(--sfb-ease);
}
.sfb-map__btn svg { inline-size: 30px; block-size: 30px; color: var(--sfb-red); }
.sfb-map__btn:hover { background: rgba(222, 34, 39, .10); color: #fff; }

.sfb-foot__bar {
	border-block-start: 1px solid var(--sfb-line-dk);
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem 1.5rem; flex-wrap: wrap;
	max-inline-size: 1440px; margin-inline: auto;
	padding: 1.25rem clamp(1rem, 3vw, 2.25rem);
}
.sfb-foot__copy { margin: 0; font-size: .84rem; color: rgba(255, 255, 255, .55); }
.sfb-pay { list-style: none; display: flex; align-items: center; gap: 1rem; margin: 0; padding: 0; flex-wrap: wrap; }
.sfb-pay li { display: inline-flex; align-items: center; gap: .45rem; font-size: .78rem; color: rgba(255, 255, 255, .58); }
.sfb-pay__i { inline-size: 32px; block-size: 20px; flex: 0 0 auto; color: rgba(255, 255, 255, .45); }

/* ------------------------------------------------- floating WhatsApp CTA -- */

.sfb-wa-float {
	position: fixed;
	/* `left`, deliberately physical. inset-inline-start would resolve to the
	   right-hand edge in this RTL document, which is the one place it must
	   not sit. */
	left: 20px;
	bottom: 24px;
	z-index: 60;                                   /* under the drawer (90) */
	inline-size: 56px; block-size: 56px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: #25D366; color: #fff;
	box-shadow: 0 8px 26px rgba(37, 211, 102, .34);
	text-decoration: none;
	transition: transform .22s var(--sfb-ease), box-shadow .22s var(--sfb-ease), opacity .22s var(--sfb-ease);
}
.sfb-wa-float svg { inline-size: 28px; block-size: 28px; }
.sfb-wa-float:hover { transform: scale(1.07); box-shadow: 0 12px 32px rgba(37, 211, 102, .46); }

/* clears the sticky "أضيفي إلى السلة" bar on the 3D pages */
@media (max-width: 900px) { .sfb-wa-float { bottom: 92px; } }

/* out of the way while the drawer is open */
body.sfb-drawer-open .sfb-wa-float { opacity: 0; pointer-events: none; transform: scale(.8); }

.sfb-wa-float__tip {
	position: absolute; inset-inline-start: calc(100% + 12px);
	white-space: nowrap;
	background: var(--sfb-ink); color: #fff;
	font-family: var(--sfb-f-body); font-size: .8rem;
	padding: .5rem .8rem; border-radius: 9px;
	opacity: 0; transform: translateX(-6px); pointer-events: none;
	transition: opacity .22s var(--sfb-ease), transform .22s var(--sfb-ease);
}
.sfb-wa-float:hover .sfb-wa-float__tip { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) { .sfb-wa-float__tip { display: none; } }

/* a gentle heartbeat, until she interacts with anything */
@keyframes sfb-wa-pulse {
	0%, 88%, 100% { box-shadow: 0 8px 26px rgba(37, 211, 102, .34); }
	92%           { box-shadow: 0 8px 26px rgba(37, 211, 102, .34), 0 0 0 12px rgba(37, 211, 102, .16); }
	96%           { box-shadow: 0 8px 26px rgba(37, 211, 102, .34), 0 0 0 20px rgba(37, 211, 102, 0); }
}
.sfb-wa-float:not(.is-calm) { animation: sfb-wa-pulse 4s ease-in-out infinite; }

/* ------------------------------------------------------------------ a11y -- */

.sfb-nav a:focus-visible,
.sfb-nav button:focus-visible,
.sfb-drawer a:focus-visible,
.sfb-drawer button:focus-visible,
.sfb-foot a:focus-visible,
.sfb-foot button:focus-visible,
.sfb-wa-float:focus-visible {
	outline: 2px solid var(--sfb-red);
	outline-offset: 3px;
	border-radius: 8px;
}
.sfb-nav.is-over-hero:not(.is-stuck) a:focus-visible,
.sfb-nav.is-over-hero:not(.is-stuck) button:focus-visible { outline-color: #fff; }

body.sfb-drawer-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
	.sfb-nav, .sfb-mega, .sfb-drawer, .sfb-drawer__nav li,
	.sfb-scrim, .sfb-wa-float, .sfb-wa-float__tip, .sfb-social a,
	.sfb-foot__list a, .sfb-caret, .sfb-acc__h svg {
		transition-duration: .01ms !important;
		transition-delay: 0ms !important;
	}
	.sfb-wa-float:not(.is-calm) { animation: none; }
	.sfb-nav__links a::after { transition: none; }
}
