/* Fabric Boutique. Design tokens per docs/design-spec.md section 2. */

:root {
	/* Colour */
	--fb-blush: #f9cfd6;
	--fb-blush-light: #fbe3e7;
	--fb-pink: #e8a0ac;
	--fb-cream: #faf7f2;
	--fb-grey: #edeae6;
	--fb-charcoal: #55423d;
	--fb-text: #3a3a3a;
	--fb-muted: #7d7570;
	--fb-white: #ffffff;
	--fb-border: #e5e0da;

	/* Type */
	--fb-font-heading: "Cormorant Garamond", "Times New Roman", serif;
	--fb-font-script: "Ephesis", cursive;
	--fb-font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

	/* Spacing */
	--fb-space-1: 0.25rem;
	--fb-space-2: 0.5rem;
	--fb-space-3: 1rem;
	--fb-space-4: 2rem;
	--fb-space-5: 4rem;

	--fb-container: 1280px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--fb-font-body);
	font-weight: 300;
	color: var(--fb-text);
	background: var(--fb-white);
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4 {
	font-family: var(--fb-font-heading);
	font-weight: 500;
	line-height: 1.2;
	color: var(--fb-text);
}

a {
	color: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	width: auto;
	height: auto;
	clip: auto;
	padding: var(--fb-space-2) var(--fb-space-3);
	background: var(--fb-charcoal);
	color: var(--fb-white);
}

/* ---------- Buttons ---------- */

.fb-btn,
.button,
button[type="submit"] {
	display: inline-block;
	padding: 0.8rem 1.9rem;
	border: 0;
	border-radius: 0;
	background: var(--fb-charcoal);
	color: var(--fb-white);
	font-family: var(--fb-font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.fb-btn:hover,
.button:hover {
	opacity: 0.85;
	color: var(--fb-white);
}

.fb-btn--pink {
	background: var(--fb-pink);
}

/* ---------- Header ---------- */

/* CURCY currency select, inline with header icons */
.fb-currency select {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid var(--fb-border);
	border-radius: 0;
	background: var(--fb-white) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='m1 1 4 4 4-4' stroke='%233a3a3a'/%3E%3C/svg%3E") no-repeat right 0.55rem center;
	padding: 0.45rem 1.5rem 0.45rem 0.7rem;
	font-family: var(--fb-font-body);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--fb-text);
	cursor: pointer;
}

/* (Logo scaling and mobile header compaction live in the responsive
   section at the END of this file so they win the cascade.) */

.fb-header {
	background: var(--fb-white);
	border-bottom: 1px solid var(--fb-border);
	position: relative;
}

.fb-header__inner {
	max-width: var(--fb-container);
	margin: 0 auto;
	padding: var(--fb-space-3);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: var(--fb-space-3);
}

/* Logo */
.fb-header__logo {
	grid-column: 2;
	text-align: center;
}

.fb-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	text-decoration: none;
}

.fb-logo__monogram {
	display: flex;
	flex-direction: column;
	font-family: var(--fb-font-heading);
	font-size: 1.15rem;
	line-height: 1.05;
	padding-right: 0.9rem;
	border-right: 1px solid var(--fb-text);
}

.fb-logo__wordmark {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.fb-logo__name {
	font-family: var(--fb-font-body);
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	line-height: 1.1;
}

.fb-logo__tagline {
	font-size: 0.62rem;
	font-weight: 400;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: var(--fb-muted);
}

.custom-logo {
	max-height: 60px;
	width: auto;
}

/* Actions */
.fb-header__actions {
	grid-column: 3;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: var(--fb-space-2);
}

.fb-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--fb-text);
	cursor: pointer;
	position: relative;
	text-decoration: none;
}

.fb-icon-btn:hover {
	color: var(--fb-pink);
}

.fb-cart-count,
.fb-wl-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--fb-pink);
	color: var(--fb-white);
	font-size: 0.65rem;
	font-weight: 500;
	line-height: 17px;
	text-align: center;
}

/* Burger (mobile only) */
.fb-header__menu-toggle {
	grid-column: 1;
	justify-self: start;
	display: none;
	width: 40px;
	height: 40px;
	padding: 8px;
	border: 0;
	background: none;
	cursor: pointer;
}

.fb-burger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 22px;
	height: 15px;
}

.fb-burger span {
	display: block;
	height: 1.5px;
	background: var(--fb-text);
}

/* Primary nav */
.fb-header__nav {
	border-top: 1px solid var(--fb-border);
}

.fb-nav {
	max-width: var(--fb-container);
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: var(--fb-space-4);
}

.fb-nav > li {
	position: relative;
}

.fb-nav a {
	display: inline-block;
	padding: 0.8rem 0;
	font-size: 0.76rem;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
}

.fb-nav a:hover {
	color: var(--fb-pink);
}

/* Dropdown */
.fb-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 950;
	min-width: 220px;
	margin: 0;
	padding: var(--fb-space-2) 0;
	list-style: none;
	background: var(--fb-white);
	border: 1px solid var(--fb-border);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease;
}

.fb-nav li:hover > .sub-menu,
.fb-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
}

.fb-nav .sub-menu a {
	display: block;
	padding: 0.45rem 1.25rem;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
}

/* Search panel */
.fb-search-panel {
	border-top: 1px solid var(--fb-border);
	background: var(--fb-cream);
}

.fb-search-panel__inner {
	max-width: 640px;
	margin: 0 auto;
	padding: var(--fb-space-3);
}

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

.fb-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 990;
	width: min(320px, 85vw);
	background: var(--fb-white);
	transform: translateX(-100%);
	transition: transform 0.25s ease;
	overflow-y: auto;
}

body.fb-nav-open .fb-drawer {
	transform: translateX(0);
}

.fb-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--fb-space-3);
	border-bottom: 1px solid var(--fb-border);
}

.fb-drawer__title {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.fb-drawer__nav {
	list-style: none;
	margin: 0;
	padding: var(--fb-space-2) 0;
}

.fb-drawer__nav a {
	display: block;
	padding: 0.7rem var(--fb-space-3);
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid var(--fb-border);
}

.fb-drawer__nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 var(--fb-space-3);
}

.fb-drawer__nav .sub-menu a {
	font-size: 0.74rem;
	text-transform: none;
	letter-spacing: 0.06em;
	color: var(--fb-muted);
}

.fb-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 980;
	background: rgba(0, 0, 0, 0.35);
}

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

.fb-footer {
	margin-top: var(--fb-space-5);
	background: var(--fb-cream);
	border-top: 1px solid var(--fb-border);
	font-size: 0.85rem;
}

.fb-footer__inner {
	max-width: var(--fb-container);
	margin: 0 auto;
	padding: var(--fb-space-5) var(--fb-space-3) var(--fb-space-4);
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--fb-space-4);
}

.fb-footer__logo {
	margin: 0 0 var(--fb-space-2);
	font-weight: 500;
	font-size: 1.1rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.fb-footer__logo span {
	display: block;
	font-size: 0.6rem;
	letter-spacing: 0.4em;
	color: var(--fb-muted);
}

.fb-footer__est {
	margin: -0.4rem 0 var(--fb-space-2);
	font-size: 0.68rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--fb-muted);
}

.fb-footer__strap {
	max-width: 38ch;
	color: var(--fb-muted);
}

.fb-footer__help {
	color: var(--fb-muted);
}

.fb-footer__whatsapp {
	font-weight: 400;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--fb-text);
}

.fb-footer__social {
	display: flex;
	gap: 0.75rem;
	margin-top: var(--fb-space-2);
}

.fb-footer__social a {
	color: var(--fb-text);
}

.fb-footer__social a:hover {
	color: var(--fb-pink);
}

.fb-footer__heading {
	margin: 0 0 var(--fb-space-3);
	font-family: var(--fb-font-body);
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.fb-footer-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fb-footer-nav li {
	margin-bottom: 0.4rem;
	color: var(--fb-muted);
}

.fb-footer-nav a {
	text-decoration: none;
	color: var(--fb-muted);
}

.fb-footer-nav a:hover {
	color: var(--fb-text);
}

.fb-footer__bottom {
	border-top: 1px solid var(--fb-border);
	padding: var(--fb-space-3);
	text-align: center;
	font-size: 0.72rem;
	color: var(--fb-muted);
}

.fb-footer__bottom p {
	margin: 0;
}

/* ---------- GTranslate (kept per decision, pinned bottom left) ---------- */

.gtranslate_wrapper,
div[id^="gt-wrapper-"] {
	position: fixed !important;
	left: 20px !important;
	bottom: 20px !important;
	top: auto !important;
	right: auto !important;
	z-index: 900;
}

/* ---------- WhatsApp bubble ---------- */

.fb-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: var(--fb-white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.15s ease;
}

.fb-whatsapp:hover {
	transform: scale(1.06);
	color: var(--fb-white);
}

/* ---------- Sections ---------- */

.fb-section {
	max-width: var(--fb-container);
	margin: var(--fb-space-5) auto 0;
	padding: 0 var(--fb-space-3);
}

.fb-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: var(--fb-space-4);
}

.fb-section__title {
	margin: 0;
	font-size: 2rem;
}

.fb-section__title--centre {
	text-align: center;
	margin-bottom: var(--fb-space-4);
}

.fb-section__more {
	font-size: 0.76rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
}

.fb-section__more:hover {
	color: var(--fb-pink);
}

.fb-grid {
	display: grid;
	gap: var(--fb-space-4) var(--fb-space-3);
}

.fb-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.fb-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

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

.fb-hero {
	position: relative;
	overflow: hidden;
}

.fb-hero__slide {
	display: none;
	position: relative;
	min-height: 520px;
}

.fb-hero__slide.is-active {
	display: block;
}

.fb-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.fb-hero__content {
	position: relative;
	z-index: 2;
	max-width: var(--fb-container);
	margin: 0 auto;
	padding: clamp(3rem, 9vw, 7rem) var(--fb-space-4);
	max-width: min(var(--fb-container), 100%);
}

.fb-hero__content > * {
	max-width: 430px;
}

.fb-hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(250, 247, 242, 0.88) 0%, rgba(250, 247, 242, 0.55) 38%, rgba(250, 247, 242, 0) 65%);
}

.fb-hero__script {
	margin: 0;
	font-family: var(--fb-font-script);
	font-size: 2.6rem;
	color: var(--fb-pink);
}

.fb-hero__heading {
	margin: 0.25rem 0 0.75rem;
	font-size: clamp(2.1rem, 4.5vw, 3.2rem);
	font-weight: 500;
}

.fb-hero__text {
	margin: 0 0 1.5rem;
	color: var(--fb-muted);
}

.fb-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	color: var(--fb-text);
	cursor: pointer;
}

.fb-hero__arrow--prev {
	left: 14px;
}

.fb-hero__arrow--next {
	right: 14px;
}

/* ---------- Discount strip ---------- */

.fb-discounts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--fb-blush);
}

.fb-discounts__tier {
	padding: var(--fb-space-4) var(--fb-space-3);
	text-align: center;
}

.fb-discounts__tier + .fb-discounts__tier {
	border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.fb-discounts__tier p {
	margin: 0;
}

.fb-discounts__spend {
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.fb-discounts__get {
	font-family: var(--fb-font-heading);
	font-size: 1.8rem;
	margin: 0.15rem 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.fb-discounts__code {
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fb-charcoal);
}

/* ---------- Product cards ---------- */

.fb-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	height: 100%; /* equal card heights so buttons align despite long titles */
}

.fb-bestsellers__all {
	text-align: center;
	margin: var(--fb-space-4) 0 0;
}

.fb-card__media {
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--fb-cream);
}

.fb-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.fb-card__media:hover img {
	transform: scale(1.04);
}

.fb-card__title {
	margin: var(--fb-space-3) 0 0.2rem;
	font-family: var(--fb-font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fb-card__title a {
	text-decoration: none;
}

.fb-card__price {
	margin: 0 0 0.5rem;
	font-size: 0.85rem;
	color: var(--fb-muted);
}

.fb-card__sizes {
	list-style: none;
	margin: 0 0 0.75rem;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 0.35rem;
}

.fb-card__sizes li {
	min-width: 26px;
	padding: 0.1rem 0.3rem;
	border: 1px solid var(--fb-border);
	font-size: 0.66rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fb-muted);
}

.fb-card__actions {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.fb-card__btn {
	padding: 0.65rem 1.4rem;
	font-size: 0.7rem;
}

/* YITH wishlist button, restyled as a square heart */
.fb-wishlist-heart {
	position: relative;
	width: 38px;
	height: 38px;
}

.fb-wishlist-heart .yith-wcwl-add-to-wishlist {
	margin: 0;
	width: 100%;
	height: 100%;
}

.fb-wishlist-heart .yith-wcwl-add-button > a,
.fb-wishlist-heart a.add_to_wishlist,
.fb-wishlist-heart .yith-wcwl-wishlistaddedbrowse a,
.fb-wishlist-heart .yith-wcwl-wishlistexistsbrowse a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--fb-border);
	background: var(--fb-white);
	font-size: 0 !important;
	line-height: 0;
	text-decoration: none;
}

.fb-wishlist-heart .yith-wcwl-add-to-wishlist a::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: currentColor;
	color: var(--fb-text);
	-webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Cpath d='M12 20s-7-4.6-9.2-8.8C1.2 8 3 4.5 6.4 4.5c2 0 3.6 1.2 4.4 2.6H12c.8-1.4 2.4-2.6 4.4-2.6 3.4 0 5.2 3.5 3.6 6.7C17.8 15.4 12 20 12 20Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Cpath d='M12 20s-7-4.6-9.2-8.8C1.2 8 3 4.5 6.4 4.5c2 0 3.6 1.2 4.4 2.6H12c.8-1.4 2.4-2.6 4.4-2.6 3.4 0 5.2 3.5 3.6 6.7C17.8 15.4 12 20 12 20Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fb-wishlist-heart .yith-wcwl-add-to-wishlist a:hover::before,
.fb-wishlist-heart .yith-wcwl-wishlistaddedbrowse a::before,
.fb-wishlist-heart .yith-wcwl-wishlistexistsbrowse a::before {
	color: var(--fb-pink);
}

.fb-wishlist-heart .yith-wcwl-add-to-wishlist a:hover {
	border-color: var(--fb-pink);
}

.fb-wishlist-heart .feedback,
.fb-wishlist-heart .yith-wcwl-icon,
.fb-wishlist-heart a i,
.fb-wishlist-heart a svg,
.fb-wishlist-heart a img,
.fb-wishlist-heart a span {
	display: none !important;
}

/* Wishlist page table */
.woocommerce table.shop_table.wishlist_table {
	border: 1px solid var(--fb-border);
	border-radius: 0;
	font-size: 0.85rem;
}

.wishlist_table .product-add-to-cart a {
	border-radius: 0 !important;
	background: var(--fb-charcoal) !important;
	color: var(--fb-white) !important;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.72rem !important;
}

.wishlist-title h2 {
	font-family: var(--fb-font-heading);
	font-weight: 500;
}

/* ---------- Reviews ---------- */

.fb-reviews {
	margin-top: var(--fb-space-5);
}

.fb-review {
	margin: 0;
	padding: var(--fb-space-4);
	background: var(--fb-blush-light);
	color: var(--fb-text);
	display: flex;
	flex-direction: column;
	gap: var(--fb-space-2);
	text-align: center;
}

.fb-review__stars {
	color: var(--fb-pink);
	letter-spacing: 0.2em;
	font-size: 0.9rem;
}

.fb-review__quote {
	margin: 0;
	font-family: var(--fb-font-heading);
	font-size: 1.05rem;
	line-height: 1.55;
}

.fb-review__author {
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fb-muted);
}

/* ---------- Values banner ---------- */

.fb-values {
	margin-top: var(--fb-space-5);
	padding: var(--fb-space-4) var(--fb-space-3);
	background: var(--fb-grey);
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: var(--fb-space-3);
}

.fb-values span {
	font-family: var(--fb-font-heading);
	font-size: clamp(1.3rem, 2.6vw, 1.9rem);
	color: var(--fb-charcoal);
}

/* ---------- Seen on our customers ---------- */

.fb-customers__heart {
	color: var(--fb-pink);
	font-size: 0.7em;
	vertical-align: middle;
}

.fb-customers__strip {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--fb-space-2);
}

.fb-customers__photo {
	margin: 0;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--fb-cream);
}

.fb-customers__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 900px) {
	.fb-customers__strip {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---------- USP strip (pink band under the hero) ---------- */

.fb-usps {
	background: var(--fb-blush);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--fb-space-2);
	padding: var(--fb-space-4) var(--fb-space-3);
	text-align: center;
}

.fb-usps__item {
	display: block;
	border: 0;
	background: none;
	font: inherit;
	color: inherit;
	padding: 0;
	text-decoration: none;
}

.fb-usps__item--link {
	cursor: pointer;
}

.fb-usps__item--link:hover .fb-usps__title {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fb-usps__icon {
	color: var(--fb-charcoal);
}

.fb-usps__item p {
	margin: 0;
}

.fb-usps__title {
	margin-top: 0.4rem;
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fb-charcoal);
}

.fb-usps__text {
	font-size: 0.72rem;
	color: var(--fb-charcoal);
	opacity: 0.75;
}

/* Discount strip in its lower slot */
.fb-discounts {
	margin-top: var(--fb-space-5);
}

/* ---------- Confidence dialog ---------- */

.fb-dialog {
	max-width: 440px;
	width: calc(100vw - 2rem);
	border: 0;
	padding: var(--fb-space-4);
	font-family: var(--fb-font-body);
	color: var(--fb-text);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.fb-dialog::backdrop {
	background: rgba(58, 58, 58, 0.5);
}

.fb-dialog__title {
	margin: 0 0 var(--fb-space-2);
	font-size: 1.6rem;
}

.fb-dialog__close {
	position: absolute;
	top: 10px;
	right: 10px;
	border: 0;
	background: none;
	cursor: pointer;
	color: var(--fb-muted);
	padding: 6px;
}

.fb-dialog__ticks {
	list-style: none;
	margin: 0 0 var(--fb-space-3);
	padding: 0;
}

.fb-dialog__ticks li {
	padding-left: 1.6rem;
	position: relative;
	margin-bottom: 0.35rem;
}

.fb-dialog__ticks li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--fb-pink);
	font-weight: 600;
}

/* CURCY's inline product page switcher (header select is the one we keep) */
.wmc-price-switcher {
	display: none !important;
}

/* ---------- Variation buttons ---------- */

.fb-var-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.fb-var-btn {
	min-width: 42px;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--fb-border);
	background: var(--fb-white);
	font-family: var(--fb-font-body);
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--fb-text);
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.fb-var-btn:hover {
	border-color: var(--fb-charcoal);
}

.fb-var-btn.is-active {
	background: var(--fb-charcoal);
	border-color: var(--fb-charcoal);
	color: var(--fb-white);
}

.fb-var-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	text-decoration: line-through;
}

/* ---------- Single product ---------- */

.fb-shop div.product.type-product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--fb-space-4) var(--fb-space-5);
	align-items: start;
}

.fb-shop div.product div.images,
.fb-shop div.product .woocommerce-product-gallery {
	float: none;
	width: 100%;
	margin-bottom: 0;
	opacity: 1 !important;
}

.fb-shop div.product .woocommerce-product-gallery__wrapper img {
	width: 100%;
	height: auto;
}

.fb-shop div.product div.summary,
.fb-shop div.product .entry-summary {
	float: none;
	width: 100%;
	margin: 0;
}

.fb-shop div.product .woocommerce-tabs,
.fb-shop div.product .related.products,
.fb-shop div.product .up-sells,
.fb-shop div.product .woocommerce-noreviews,
.fb-shop div.product > .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
	float: none;
	width: 100%;
}

.fb-shop div.product .product_title {
	margin: 0 0 0.4rem;
	font-size: 2.1rem;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--fb-text);
	font-family: var(--fb-font-heading);
	font-size: 1.5rem;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: var(--fb-muted);
	font-size: 0.8em;
}

/* Variations table */
.fb-shop div.product table.variations {
	border: 0;
	margin-bottom: 0.5rem;
}

.fb-shop div.product table.variations th,
.fb-shop div.product table.variations td {
	border: 0;
	padding: 0 0 0.4rem;
	display: block;
	text-align: left;
}

.fb-shop div.product table.variations label {
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.fb-shop div.product table.variations tr {
	display: block;
	margin-bottom: 0.6rem;
}

.fb-shop .reset_variations {
	font-size: 0.72rem;
	color: var(--fb-muted);
}

/* One Size row + attribute labels outside the variations table */
.fb-var-label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.fb-one-size {
	margin: 0 0 var(--fb-space-3);
	flex-basis: 100%;
}

span.fb-var-btn {
	cursor: default;
	display: inline-block;
}

/* About page logo, reined in (Michelle, 9 July) */
.page-id-9506 .fb-page-content img:not(.fb-about-photo) {
	max-width: 300px;
	display: block;
	margin: var(--fb-space-3) auto;
}

/* About page signature + photo (Michelle, 20 July) */
.fb-signature {
	font-family: var(--fb-font-script);
	font-size: 3.2rem;
	line-height: 1.1;
	margin: var(--fb-space-4) 0 var(--fb-space-3);
}

img.fb-about-photo {
	display: block;
	max-width: 420px;
	width: 100%;
	margin: 0 auto var(--fb-space-4);
	padding: 12px 12px 40px;
	background: var(--fb-white);
	border: 1px solid var(--fb-border);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Add to cart row */
.fb-shop div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.6rem;
	margin: var(--fb-space-3) 0 var(--fb-space-2);
}

.fb-shop div.product form.cart.variations_form {
	display: block;
}

.fb-shop div.product form.cart .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.6rem;
}

.fb-shop div.product .quantity .qty {
	width: 70px;
	height: 100%;
	min-height: 46px;
	padding: 0.5rem 0.25rem;
	border: 1px solid var(--fb-border);
	border-radius: 0;
	background: var(--fb-white);
	font-family: var(--fb-font-body);
	font-size: 0.9rem;
	text-align: center;
}

/* Woo's purple .alt buttons → charcoal */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt.disabled,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
	background: var(--fb-charcoal);
	color: var(--fb-white);
	border-radius: 0;
	font-family: var(--fb-font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.8rem 1.9rem;
}

.woocommerce div.product .stock {
	font-size: 0.8rem;
	color: var(--fb-charcoal);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.woocommerce div.product .stock.out-of-stock {
	color: #b3474f;
}

/* Meta + description in summary */
.fb-shop div.product .product_meta {
	margin-top: var(--fb-space-2);
	font-size: 0.74rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fb-muted);
}

.fb-shop div.product .product_meta a {
	color: var(--fb-text);
}

.fb-product-desc {
	margin-top: var(--fb-space-3);
	padding-top: var(--fb-space-3);
	border-top: 1px solid var(--fb-border);
	color: var(--fb-muted);
	font-size: 0.92rem;
	line-height: 1.7;
}

.fb-whatsapp-product {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.75rem;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1faa59;
	text-decoration: none;
}

.fb-whatsapp-product:hover {
	text-decoration: underline;
}

/* Tabs (Additional information only) */
.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 var(--fb-space-3);
	border-bottom: 1px solid var(--fb-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
	border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: 0;
	background: none;
	border-radius: 0;
	margin: 0 1.25rem 0 0;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 0.6rem 0;
	font-size: 0.76rem;
	font-weight: 400;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fb-muted);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--fb-text);
	box-shadow: inset 0 -2px 0 var(--fb-charcoal);
}

/* Sale badge */
.woocommerce span.onsale {
	border-radius: 0;
	background: var(--fb-pink);
	color: var(--fb-white);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	min-height: 0;
	min-width: 0;
	padding: 0.35rem 0.7rem;
	line-height: 1;
}

/* Related products heading */
.fb-shop .related.products > h2,
.fb-shop .up-sells > h2 {
	font-size: 1.7rem;
	margin: var(--fb-space-5) 0 var(--fb-space-3);
}

@media (max-width: 900px) {
	.fb-shop div.product.type-product {
		grid-template-columns: 1fr;
	}
}

/* ---------- Shop archives ---------- */

.fb-shop {
	max-width: var(--fb-container);
	margin: 0 auto;
	padding: var(--fb-space-4) var(--fb-space-3) 0;
}

.fb-shop .woocommerce-breadcrumb {
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--fb-muted);
	margin-bottom: var(--fb-space-3);
}

.fb-shop .woocommerce-breadcrumb a {
	color: var(--fb-muted);
	text-decoration: none;
}

.fb-shop .woocommerce-products-header {
	text-align: center;
	margin-bottom: var(--fb-space-4);
}

.fb-shop .woocommerce-products-header__title {
	margin: 0;
	font-size: 2.2rem;
}

.fb-shop .term-description {
	max-width: 60ch;
	margin: var(--fb-space-2) auto 0;
	color: var(--fb-muted);
}

.fb-shop .woocommerce-result-count {
	margin: 0;
	font-size: 0.76rem;
	color: var(--fb-muted);
}

.fb-shop .woocommerce-ordering {
	margin: 0;
}

.fb-shop .woocommerce-ordering select {
	border: 1px solid var(--fb-border);
	border-radius: 0;
	padding: 0.45rem 0.7rem;
	font-family: var(--fb-font-body);
	font-size: 0.74rem;
	background: var(--fb-white);
}

.fb-shop .woocommerce-notices-wrapper:empty {
	display: none;
}

/* Product grid (defeat Woo's float layout) */
.fb-shop ul.products {
	list-style: none;
	margin: var(--fb-space-3) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--fb-space-4) var(--fb-space-3);
}

.fb-shop ul.products::before,
.fb-shop ul.products::after {
	content: none;
	display: none;
}

/* !important: Woo's columns-N selectors (desktop and smallscreen CSS)
   out-specify any sane theme selector, and we want grid in charge. */
.fb-shop ul.products li.product {
	width: 100% !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0;
}

/* Pagination (hidden when infinite scroll is active; kept for
   crawlers and no-JS visitors) */
.fb-infinite .woocommerce-pagination {
	display: none;
}

.fb-loadmore-sentinel {
	height: 1px;
}

.fb-loadmore-spinner {
	display: none;
	margin: var(--fb-space-3) auto;
	width: 28px;
	height: 28px;
	border: 2px solid var(--fb-border);
	border-top-color: var(--fb-charcoal);
	border-radius: 50%;
	animation: fb-spin 0.8s linear infinite;
}

.fb-infinite--loading .fb-loadmore-spinner {
	display: block;
}

@keyframes fb-spin {
	to { transform: rotate(360deg); }
}

/* Pagination */
.fb-shop .woocommerce-pagination {
	margin: var(--fb-space-4) 0 0;
	text-align: center;
}

.fb-shop .woocommerce-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	gap: 0.4rem;
}

.fb-shop .woocommerce-pagination a,
.fb-shop .woocommerce-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 0.5rem;
	border: 1px solid var(--fb-border);
	font-size: 0.78rem;
	text-decoration: none;
}

.fb-shop .woocommerce-pagination span.current {
	background: var(--fb-charcoal);
	border-color: var(--fb-charcoal);
	color: var(--fb-white);
}

@media (max-width: 900px) {
	.fb-shop ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- Cart and checkout ---------- */

/* All Woo buttons: squared charcoal */
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
	border-radius: 0;
	background: var(--fb-charcoal);
	color: var(--fb-white);
	font-family: var(--fb-font-body);
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.85rem 1.5rem;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
	background: var(--fb-charcoal);
	color: var(--fb-white);
	opacity: 0.85;
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce button.button:disabled:hover {
	background: var(--fb-charcoal);
	color: var(--fb-white);
	opacity: 0.4;
	padding: 0.85rem 1.5rem;
}

/* Tables */
.woocommerce table.shop_table {
	border: 1px solid var(--fb-border);
	border-radius: 0;
}

.woocommerce table.shop_table th {
	font-family: var(--fb-font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

/* Quantity boxes everywhere (cart included) */
.woocommerce .quantity .qty {
	min-height: 44px;
	padding: 0.5rem 0.25rem;
	border: 1px solid var(--fb-border);
	border-radius: 0;
	background: var(--fb-white);
	font-family: var(--fb-font-body);
	text-align: center;
}

/* Coupon field: match the qty box */
.woocommerce .cart td.actions .coupon {
	display: flex;
	align-items: stretch;
	gap: 0.6rem;
}

.woocommerce .cart td.actions .coupon .input-text {
	width: 220px;
	min-height: 44px;
	padding: 0.5rem 0.9rem;
	border: 1px solid var(--fb-border);
	border-radius: 0;
	background: var(--fb-white);
	font-family: var(--fb-font-body);
	font-size: 0.85rem;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
	font-size: 1.5rem;
}

/* Checkout and account forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	border: 1px solid var(--fb-border);
	border-radius: 0;
	padding: 0.65rem 0.8rem;
	background: var(--fb-white);
	font-family: var(--fb-font-body);
	font-size: 0.9rem;
}

.woocommerce form .form-row label {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
}

.woocommerce-billing-fields h3,
#order_review_heading,
.woocommerce-additional-fields h3 {
	font-family: var(--fb-font-heading);
	font-size: 1.5rem;
	font-weight: 500;
}

#place_order {
	width: 100%;
}

/* ---------- Static pages ---------- */

.fb-page-head {
	background: var(--fb-cream);
	border-bottom: 1px solid var(--fb-border);
	padding: var(--fb-space-4) var(--fb-space-3);
	text-align: center;
}

.fb-page-title {
	margin: 0;
	font-size: 2.4rem;
}

.fb-page-content {
	max-width: 820px;
	margin: var(--fb-space-4) auto var(--fb-space-5);
	padding: 0 var(--fb-space-3);
	font-size: 0.95rem;
	line-height: 1.75;
}

.fb-page-content h2 {
	font-size: 1.7rem;
	margin: var(--fb-space-4) 0 var(--fb-space-2);
}

.fb-page-content h3 {
	font-size: 1.25rem;
	margin: var(--fb-space-3) 0 var(--fb-space-2);
}

.fb-page-content a {
	text-underline-offset: 3px;
}

.fb-page-content img {
	margin: var(--fb-space-3) 0;
}

.fb-page-content hr {
	border: 0;
	border-top: 1px solid var(--fb-border);
	margin: var(--fb-space-4) 0;
}

/* FAQ accordion */
.fb-faq {
	border-bottom: 1px solid var(--fb-border);
}

.fb-faq summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--fb-space-3);
	padding: 0.9rem 0;
	cursor: pointer;
	font-weight: 500;
	list-style: none;
}

.fb-faq summary::-webkit-details-marker {
	display: none;
}

.fb-faq summary::after {
	content: "+";
	flex-shrink: 0;
	font-family: var(--fb-font-heading);
	font-size: 1.3rem;
	color: var(--fb-muted);
	transition: transform 0.15s ease;
}

.fb-faq[open] summary::after {
	transform: rotate(45deg);
}

.fb-faq__body {
	padding: 0 0 var(--fb-space-3);
	color: var(--fb-muted);
}

/* Fluent Forms, matched to theme fields */
.fluentform .ff-el-form-control {
	border: 1px solid var(--fb-border);
	border-radius: 0;
	background: var(--fb-white);
	font-family: var(--fb-font-body);
	font-size: 0.9rem;
	padding: 0.65rem 0.8rem;
}

.fluentform .ff-el-input--label label {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	font-weight: 400;
}

.fluentform .ff-btn-submit {
	border-radius: 0 !important;
	background: var(--fb-charcoal) !important;
	border-color: var(--fb-charcoal) !important;
	color: var(--fb-white) !important;
	font-family: var(--fb-font-body) !important;
	font-size: 0.78rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.85rem 1.9rem !important;
}

/* ---------- Layout helpers ---------- */

.fb-main {
	min-height: 50vh;
}

.fb-placeholder {
	max-width: var(--fb-container);
	margin: var(--fb-space-5) auto;
	padding: 0 var(--fb-space-3);
	text-align: center;
	font-family: var(--fb-font-heading);
	font-size: 1.5rem;
}

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

/* Logo bigger on desktop only (Michelle round 2) */
@media (min-width: 901px) {
	.fb-logo__name {
		font-size: 2.4rem;
	}

	.fb-logo__tagline {
		font-size: 0.9rem;
		letter-spacing: 0.44em;
	}

	.fb-logo__monogram {
		font-size: 1.7rem;
		line-height: 1.1;
	}

	.custom-logo {
		max-height: 90px;
	}
}

@media (max-width: 900px) {
	.fb-header__menu-toggle {
		display: block;
	}

	.fb-header__nav {
		display: none;
	}

	.fb-footer__inner {
		grid-template-columns: 1fr;
		padding-top: var(--fb-space-4);
	}

	.fb-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.fb-grid--3 {
		grid-template-columns: 1fr;
	}

	.fb-usps {
		grid-template-columns: repeat(2, 1fr);
	}

	.fb-discounts {
		grid-template-columns: 1fr;
	}

	.fb-discounts__tier + .fb-discounts__tier {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.7);
	}

	.fb-hero__slide {
		min-height: 420px;
	}
}

@media (max-width: 600px) {
	/* Product cards: tighter, one line buttons */
	.fb-card__btn {
		padding: 0.6rem 0.8rem;
		font-size: 0.62rem;
		letter-spacing: 0.08em;
		white-space: nowrap;
	}

	.fb-card__title {
		font-size: 0.7rem;
		letter-spacing: 0.08em;
	}

	.fb-card__actions {
		gap: 0.35rem;
	}

	.fb-wishlist-heart,
	.fb-wishlist-heart .yith-wcwl-add-button > a,
	.fb-wishlist-heart a.add_to_wishlist,
	.fb-wishlist-heart .yith-wcwl-wishlistaddedbrowse a,
	.fb-wishlist-heart .yith-wcwl-wishlistexistsbrowse a {
		width: 34px;
		height: 34px;
	}

	.fb-grid,
	.fb-shop ul.products {
		gap: var(--fb-space-4) var(--fb-space-2);
	}

	.fb-section__title {
		font-size: 1.6rem;
	}

	.fb-page-title {
		font-size: 1.8rem;
	}

	.fb-shop .woocommerce-products-header__title {
		font-size: 1.7rem;
	}

	.fb-discounts__get {
		font-size: 1.5rem;
	}

	.fb-hero__script {
		font-size: 2.1rem;
	}

	/* Mobile header: currency visible, everything fits (Michelle, 9 July) */
	.fb-currency select {
		padding: 0.35rem 1.25rem 0.35rem 0.45rem;
		font-size: 0.62rem;
		background-position: right 0.35rem center;
	}

	.fb-icon-btn {
		width: 32px;
	}

	.fb-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.fb-header__logo {
		justify-self: center;
		min-width: 0;
	}

	.fb-logo__monogram {
		display: none;
	}

	/* Hero: readable text over busy images on small screens */
	.fb-hero__slide::after {
		background: linear-gradient(180deg, rgba(250, 247, 242, 0.88) 0%, rgba(250, 247, 242, 0.6) 55%, rgba(250, 247, 242, 0.2) 100%);
	}

	.fb-hero__slide {
		min-height: 480px;
	}

	.fb-hero__content {
		text-align: center;
		padding: 2.5rem 1.25rem;
	}

	.fb-hero__content > * {
		max-width: 100%;
	}

	/* Discounts: three compact columns, not a stack (Michelle) */
	.fb-discounts {
		grid-template-columns: repeat(3, 1fr);
	}

	.fb-discounts__tier {
		padding: var(--fb-space-3) 0.4rem;
	}

	.fb-discounts__tier + .fb-discounts__tier {
		border-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.7);
	}

	.fb-discounts__spend {
		font-size: 0.62rem;
		letter-spacing: 0.08em;
		font-weight: 600;
	}

	.fb-discounts__get {
		font-size: 1.1rem;
		font-weight: 600;
	}

	.fb-discounts__code {
		font-size: 0.62rem;
		letter-spacing: 0.06em;
		font-weight: 700;
		color: var(--fb-text);
	}

	/* Values banner: single row with separators (Michelle) */
	.fb-values {
		flex-wrap: nowrap;
		justify-content: center;
		gap: 0;
		padding: var(--fb-space-3) var(--fb-space-2);
	}

	.fb-values span {
		font-size: 0.95rem;
		white-space: nowrap;
	}

	.fb-values span + span::before {
		content: "|";
		margin: 0 0.6em;
		color: var(--fb-muted);
	}

	/* Reviews: horizontal swipe carousel (Michelle) */
	.fb-reviews .fb-grid--3 {
		display: flex;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: var(--fb-space-2);
		padding-bottom: var(--fb-space-2);
		scrollbar-width: none;
	}

	.fb-reviews .fb-grid--3::-webkit-scrollbar {
		display: none;
	}

	.fb-reviews .fb-review {
		flex: 0 0 82%;
		scroll-snap-align: center;
	}
}

@media (max-width: 480px) {
	.fb-logo__name {
		font-size: 1.25rem;
		letter-spacing: 0.26em;
	}

	.fb-logo__tagline {
		font-size: 0.52rem;
		letter-spacing: 0.3em;
	}

	.fb-logo__monogram {
		font-size: 0.95rem;
		padding-right: 0.6rem;
	}

	.fb-logo {
		gap: 0.6rem;
	}

	.fb-header__inner {
		gap: var(--fb-space-2);
		padding: 0.8rem var(--fb-space-2);
	}

	.fb-header__actions {
		gap: 0;
	}
}
