/* =========================================================================
   Bloom de Fleur
   Palette and type families carried over from the previous BeTheme setup.
   House rules for this theme:
     - no single-side borders, a border is on all four sides or not at all
     - no small uppercase label text above headings
   ========================================================================= */

@font-face {
	font-family: 'Google Sans';
	font-style: normal;
	font-weight: 400 500;
	font-display: swap;
	src: url('../fonts/google-sans-normal-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Google Sans';
	font-style: normal;
	font-weight: 400 500;
	font-display: swap;
	src: url('../fonts/google-sans-normal-cyrillic.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Google Sans';
	font-style: italic;
	font-weight: 400 500;
	font-display: swap;
	src: url('../fonts/google-sans-italic-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Google Sans';
	font-style: italic;
	font-weight: 400 500;
	font-display: swap;
	src: url('../fonts/google-sans-italic-cyrillic.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Forum';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/forum-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Forum';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/forum-cyrillic.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
	/* Brand */
	--bdf-gold:            #a4916d;
	--bdf-gold-hover:      #917a4d;
	--bdf-gold-light:      #c4b392;
	--bdf-cream:           #e7e0d3;
	--bdf-cream-deep:      #e7decc;

	/* Buttons */
	--bdf-btn-bg:          #e7dece;
	--bdf-btn-text:        #6a5c42;

	/* Neutrals */
	--bdf-text:            #808080;
	--bdf-text-strong:     #4a4a4a;
	--bdf-heading:         #000000;
	--bdf-note:            #a8a8a8;
	--bdf-neutral:         #f4f4f4;
	--bdf-dark:            #373737;
	--bdf-white:           #ffffff;

	/* Chrome */
	--bdf-header-bg:       #fcfcfc;
	--bdf-menu:            #585858;
	--bdf-menu-active:     #000000;
	--bdf-topbar-bg:       #211f1b;
	--bdf-footer-bg:       #ffffff;
	--bdf-footer-copy-bg:  #f6f6f4;
	--bdf-form-focus:      #9c875f;

	/* Lines and surfaces */
	--bdf-line:            #e6e6e6;
	--bdf-line-soft:       #f0f0f0;
	--bdf-surface:         #f9f9f9;
	--bdf-surface-hover:   #f2f2f2;

	/* Type */
	--bdf-font-body:       "Google Sans", Arial, sans-serif;
	--bdf-font-head:       "Google Sans", Arial, sans-serif;
	--bdf-font-accent:     "Forum", Georgia, "Times New Roman", serif;

	/* Rhythm */
	--bdf-container:       1240px;
	--bdf-container-wide:  1560px;
	--bdf-gutter:          clamp(20px, 4vw, 48px);
	--bdf-gap:             clamp(20px, 2.4vw, 34px);
	--bdf-section:         clamp(56px, 7vw, 104px);
	--bdf-radius:          4px;
	--bdf-radius-lg:       8px;

	/* Motion */
	--bdf-ease:            cubic-bezier(0.22, 0.61, 0.36, 1);
	--bdf-speed:           0.32s;

	/* Elevation */
	--bdf-shadow-sm:       0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.04);
	--bdf-shadow-md:       0 2px 6px rgba(0, 0, 0, 0.05), 0 12px 32px rgba(0, 0, 0, 0.07);
	--bdf-shadow-lg:       0 4px 12px rgba(0, 0, 0, 0.06), 0 24px 56px rgba(0, 0, 0, 0.10);

	/* WooCommerce ships its own brand variables, used by the price slider,
	   badges and block components. Point them at the Bloom de Fleur gold so
	   nothing renders in the default purple. */
	--wc-primary:          #a4916d;
	--wc-primary-text:     #ffffff;
	--wc-secondary:        #e7dece;
	--wc-secondary-text:   #6a5c42;
	--wc-highlight:        #a4916d;
	--wc-content-bg:       #ffffff;
	--wc-subtext:          #808080;
	--woocommerce:         #a4916d;
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bdf-white);
	color: var(--bdf-text);
	font-family: var(--bdf-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

b,
strong { font-weight: 500; }

img,
svg,
video,
iframe { max-width: 100%; height: auto; display: block; }

a {
	color: var(--bdf-gold);
	text-decoration: none;
	transition: color var(--bdf-speed) var(--bdf-ease);
}

a:hover { color: var(--bdf-gold-hover); }

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

figure { margin: 0; }

hr {
	border: 0;
	height: 1px;
	background: var(--bdf-line);
	margin: var(--bdf-gap) 0;
}

::selection {
	background: var(--bdf-cream-deep);
	color: var(--bdf-heading);
}

:focus-visible {
	outline: 2px solid var(--bdf-gold);
	outline-offset: 3px;
}

.bdf-sr {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bdf-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--bdf-white);
	color: var(--bdf-heading);
	padding: 12px 20px;
	border: 1px solid transparent;
}

.bdf-skip:focus { left: 12px; top: 12px; }

/* -------------------------------------------------------------------------
   Typography
   ------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6,
.bdf-h1, .bdf-h2, .bdf-h3, .bdf-h4 {
	font-family: var(--bdf-font-head);
	color: var(--bdf-heading);
	font-weight: 300;
	line-height: 1.2;
	margin: 0 0 0.5em;
	text-wrap: balance;
}

h1, .bdf-h1 { font-size: clamp(30px, 3.6vw, 44px); }
h2, .bdf-h2 { font-size: clamp(27px, 3.3vw, 42px); }
h3, .bdf-h3 { font-size: clamp(23px, 2.4vw, 30px); }
h4, .bdf-h4 { font-size: clamp(20px, 1.9vw, 24px); }

h5 {
	font-size: 16px;
	font-weight: 500;
	color: var(--bdf-gold);
	line-height: 1.4;
}

h6 {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* Forum, the brand's decorative heading and accent face. */
.highlight-font,
.bdf-accent {
	font-family: var(--bdf-font-accent);
	font-weight: 400;
	font-style: italic;
}

.themecolor,
.bdf-gold { color: var(--bdf-gold); }

blockquote {
	margin: var(--bdf-gap) 0;
	padding: clamp(20px, 3vw, 32px);
	background: var(--bdf-neutral);
	border-radius: var(--bdf-radius-lg);
	font-family: var(--bdf-font-accent);
	font-style: italic;
	font-size: 18px;
	color: var(--bdf-text-strong);
}

blockquote p:last-child { margin-bottom: 0; }

code, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.92em;
}

pre {
	background: var(--bdf-neutral);
	padding: 18px;
	border-radius: var(--bdf-radius);
	overflow-x: auto;
}

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

.bdf-container {
	width: 100%;
	max-width: var(--bdf-container);
	margin-inline: auto;
	padding-inline: clamp(18px, 4vw, 40px);
}

.bdf-container--wide { max-width: var(--bdf-container-wide); }
.bdf-container--narrow { max-width: 860px; }

.bdf-section { padding-block: var(--bdf-section); }
.bdf-section--tight { padding-block: clamp(34px, 4vw, 60px); }
.bdf-section--flush-top { padding-top: 0; }
.bdf-section--soft { background: var(--bdf-neutral); }

.bdf-grid {
	display: grid;
	gap: var(--bdf-gap);
}

.bdf-stack > * + * { margin-top: var(--bdf-gap); }

#bdf-main { display: block; min-height: 40vh; }

/* -------------------------------------------------------------------------
   Section heading
   Centred, with a short rule underneath. No eyebrow text by design.
   ------------------------------------------------------------------------- */

.bdf-sec-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(30px, 4vw, 52px);
}

.bdf-sec-head__title { margin-bottom: 0.35em; }

.bdf-sec-head__title::after {
	content: "";
	display: block;
	width: 54px;
	height: 2px;
	margin: 0.55em auto 0;
	background: var(--bdf-gold);
}

.bdf-sec-head__text {
	margin: 0;
	color: var(--bdf-text);
}

.bdf-sec-head--start {
	text-align: left;
	margin-inline: 0;
}

.bdf-sec-head--start .bdf-sec-head__title::after { margin-inline: 0 auto; }

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

.bdf-btn,
a.button,
button.button,
input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.wpcf7-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 30px;
	min-height: 48px;
	background: var(--bdf-btn-bg);
	color: var(--bdf-btn-text);
	font-family: var(--bdf-font-head);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border: 1px solid var(--bdf-line);
	border-radius: var(--bdf-radius);
	cursor: pointer;
	transition: background var(--bdf-speed) var(--bdf-ease),
	            color var(--bdf-speed) var(--bdf-ease),
	            border-color var(--bdf-speed) var(--bdf-ease);
	-webkit-appearance: none;
	appearance: none;
}

/* Hover darkens the background. Nothing moves. */
.bdf-btn:hover,
a.button:hover,
button.button:hover,
input.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.wpcf7-form input[type="submit"]:hover {
	background: var(--bdf-gold);
	color: var(--bdf-white);
}

.bdf-btn--solid,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .single_add_to_cart_button {
	background: var(--bdf-gold);
	color: var(--bdf-white);
}

.bdf-btn--solid:hover,
.woocommerce .single_add_to_cart_button:hover {
	background: var(--bdf-gold-hover);
	color: var(--bdf-white);
}

.bdf-btn--outline {
	background: transparent;
	color: var(--bdf-gold);
	border-color: var(--bdf-gold);
}

.bdf-btn--outline:hover {
	background: var(--bdf-gold);
	color: var(--bdf-white);
}

.bdf-btn--ghost {
	background: transparent;
	color: var(--bdf-heading);
	border-color: var(--bdf-line);
}

.bdf-btn--ghost:hover {
	background: var(--bdf-heading);
	border-color: var(--bdf-heading);
	color: var(--bdf-white);
}

.bdf-btn--block { width: 100%; }
.bdf-btn--sm { padding: 10px 20px; min-height: 40px; font-size: 13px; }

.bdf-btn[disabled],
.woocommerce button.button[disabled],
.woocommerce button.button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

/* -------------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------------- */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container .select2-selection--single {
	width: 100%;
	padding: 10px 16px;
	min-height: 44px;
	background: var(--bdf-surface);
	color: var(--bdf-text-strong);
	font-family: var(--bdf-font-body);
	font-size: 15px;
	line-height: 1.5;
	border: 1px solid var(--bdf-line);
	border-radius: var(--bdf-radius);
	transition: background-color var(--bdf-speed) var(--bdf-ease),
	            border-color var(--bdf-speed) var(--bdf-ease),
	            box-shadow var(--bdf-speed) var(--bdf-ease);
	-webkit-appearance: none;
	appearance: none;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
select:hover,
textarea:hover,
.woocommerce form .form-row input.input-text:hover,
.woocommerce form .form-row textarea:hover,
.select2-container .select2-selection--single:hover { background: var(--bdf-surface-hover); }

textarea { min-height: 132px; resize: vertical; }

input:focus,
select:focus,
textarea:focus,
.woocommerce form .form-row input.input-text:focus {
	outline: none;
	border-color: var(--bdf-form-focus);
	box-shadow: none;
}

input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

::placeholder { color: #929292; opacity: 1; }

label {
	display: block;
	margin-bottom: 6px;
	font-family: var(--bdf-font-head);
	font-size: 14px;
	font-weight: 500;
	color: var(--bdf-text-strong);
}

select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23808080' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 42px;
}

.bdf-combobox {
	position: relative;
	display: inline-block;
	width: 100%;
	min-width: 0;
	text-align: left;
}

.bdf-combobox__native {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	min-height: 0 !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.bdf-combobox__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 48px;
	padding: 11px 15px 11px 17px;
	background: var(--bdf-white);
	color: var(--bdf-text-strong);
	font-family: var(--bdf-font-body);
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
	border: 1px solid var(--bdf-line);
	border-radius: var(--bdf-radius);
	box-shadow: 0 2px 12px rgba(49, 43, 34, 0.03);
	cursor: pointer;
	transition: border-color var(--bdf-speed) var(--bdf-ease),
	            box-shadow var(--bdf-speed) var(--bdf-ease),
	            background var(--bdf-speed) var(--bdf-ease);
}

.bdf-combobox__trigger:hover,
.bdf-combobox.is-open .bdf-combobox__trigger {
	background: #fffdf9;
	border-color: var(--bdf-gold);
}

.bdf-combobox__trigger:focus-visible {
	outline: none;
	border-color: var(--bdf-form-focus);
	box-shadow: 0 0 0 3px rgba(164, 145, 109, 0.14);
}

.bdf-combobox__trigger:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.bdf-combobox__value {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bdf-combobox__chevron {
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	margin: -4px 3px 0 0;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform var(--bdf-speed) var(--bdf-ease),
	            margin var(--bdf-speed) var(--bdf-ease);
}

.bdf-combobox.is-open .bdf-combobox__chevron {
	margin-top: 4px;
	transform: rotate(225deg);
}

.bdf-combobox__list {
	position: absolute;
	z-index: 320;
	top: calc(100% + 7px);
	left: 0;
	right: 0;
	display: none;
	max-height: min(320px, 55vh);
	padding: 7px;
	overflow-y: auto;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line);
	border-radius: var(--bdf-radius);
	box-shadow: 0 18px 48px rgba(49, 43, 34, 0.14);
}

.bdf-combobox.is-open .bdf-combobox__list { display: block; }

.bdf-combobox__option {
	position: relative;
	padding: 10px 36px 10px 12px;
	color: var(--bdf-text-strong);
	font-size: 14px;
	line-height: 1.4;
	border-radius: max(2px, calc(var(--bdf-radius) - 2px));
	cursor: pointer;
}

.bdf-combobox__option:hover,
.bdf-combobox__option:focus {
	outline: none;
	background: var(--bdf-cream);
}

.bdf-combobox__option[aria-selected="true"] {
	background: var(--bdf-cream);
	color: var(--bdf-heading);
	font-weight: 500;
}

.bdf-combobox__option[aria-selected="true"]::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	width: 9px;
	height: 5px;
	border-left: 1.5px solid var(--bdf-gold);
	border-bottom: 1.5px solid var(--bdf-gold);
	transform: translateY(-65%) rotate(-45deg);
}

.bdf-combobox__option[aria-disabled="true"] {
	opacity: 0.45;
	cursor: not-allowed;
}

.bdf-combobox__group {
	padding: 10px 12px 5px;
	color: var(--bdf-note);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
}

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

.bdf-header {
	position: relative;
	z-index: 200;
	background: var(--bdf-header-bg);
	border: 0;
}

.bdf-topbar {
	background: var(--bdf-topbar-bg);
	color: var(--bdf-white);
}

.bdf-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 32px;
	gap: 20px;
}

.bdf-topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--bdf-white);
	font-family: var(--bdf-font-head);
	font-size: 13px;
}

.bdf-topbar__phone:hover,
.bdf-topbar .bdf-lang__item:hover { color: var(--bdf-gold-light); }

.bdf-topbar__phone svg {
	width: 13px;
	height: 13px;
}

.bdf-header__bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--bdf-gap);
	padding-block: 10px;
	transition: padding var(--bdf-speed) var(--bdf-ease);
}

.bdf-header__brand { display: inline-flex; align-items: center; }

.bdf-header__logo {
	width: auto;
	max-height: 72px;
	transition: max-height var(--bdf-speed) var(--bdf-ease);
}

.bdf-header__brand-text {
	font-family: var(--bdf-font-accent);
	font-style: italic;
	font-size: 26px;
	color: var(--bdf-heading);
}

.bdf-header__tools {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-self: end;
}

.bdf-header__search { display: none; }

.bdf-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 44px;
	height: 44px;
	background: transparent;
	color: var(--bdf-menu);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: background var(--bdf-speed) var(--bdf-ease),
	            color var(--bdf-speed) var(--bdf-ease);
}

.bdf-iconbtn:hover,
.bdf-iconbtn[aria-expanded="true"] {
	background: var(--bdf-neutral);
	color: var(--bdf-gold);
}

.bdf-iconbtn svg { width: 21px; height: 21px; }

.bdf-cart-count {
	position: absolute;
	top: 4px;
	right: 3px;
	width: 17px;
	min-width: 17px;
	height: 17px;
	padding: 0;
	background: var(--bdf-gold);
	color: var(--bdf-white);
	font-family: var(--bdf-font-head);
	font-size: 9px;
	font-weight: 500;
	line-height: 17px;
	text-align: center;
	border-radius: 50%;
}

.bdf-cart-count:empty,
.bdf-cart-count[data-count="0"] { display: none; }

/* Language switcher */
.bdf-lang {
	display: flex;
	align-items: center;
	margin-left: 4px;
}

.bdf-lang__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	padding: 5px 7px;
	font-family: var(--bdf-font-body);
	font-size: 12px;
	font-weight: 500;
	color: var(--bdf-text-strong);
	border-radius: 0;
	transition: color var(--bdf-speed) var(--bdf-ease),
	            background var(--bdf-speed) var(--bdf-ease);
}

.bdf-lang__item:hover { color: var(--bdf-gold); background: var(--bdf-neutral); }

.bdf-lang__flag {
	display: block;
	flex: 0 0 27px;
	width: 27px;
	height: 18px;
	overflow: hidden;
	background: var(--bdf-white);
	border: 1px solid rgba(74, 74, 74, 0.16);
	border-radius: 0;
	box-shadow: 0 1px 3px rgba(49, 43, 34, 0.08);
}

.bdf-lang__flag svg {
	display: block;
	width: 100%;
	height: 100%;
}

.bdf-lang--topbar { margin-left: auto; }
.bdf-lang--topbar .bdf-lang__item {
	min-height: 26px;
	padding: 1px 0;
	color: var(--bdf-white);
	font-size: 13px;
	font-weight: 400;
}
.bdf-lang--topbar .bdf-lang__item:hover { background: transparent; }
.bdf-lang--topbar .bdf-lang__flag {
	flex-basis: 18px;
	width: 18px;
	height: 12px;
	border: 0;
	box-shadow: none;
}

/* Desktop cart popup. The link still reaches the full cart without JS and on mobile. */
.bdf-cart-shell { position: relative; }

.bdf-mini-cart[hidden] { display: none !important; }

.bdf-mini-cart {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 90;
	width: min(390px, calc(100vw - 32px));
	padding: 20px;
	background: var(--bdf-white);
	color: var(--bdf-text-strong);
	border: 1px solid var(--bdf-line);
	box-shadow: var(--bdf-shadow-lg);
}

.bdf-mini-cart__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
	font-family: var(--bdf-font-head);
	font-size: 19px;
	font-weight: 500;
	color: var(--bdf-heading);
}

.bdf-mini-cart__close {
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
}

.bdf-mini-cart__close svg { width: 18px; height: 18px; }

.bdf-mini-cart .woocommerce-mini-cart {
	display: grid;
	gap: 10px;
	max-height: min(440px, 58vh);
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-y: auto;
}

.bdf-mini-cart .woocommerce-mini-cart-item {
	position: relative;
	min-height: 76px;
	margin: 0;
	padding: 10px 30px 10px 10px;
	background: var(--bdf-surface);
	line-height: 1.4;
}

.bdf-mini-cart .woocommerce-mini-cart-item > a:not(.remove) {
	display: block;
	padding-right: 4px;
	color: var(--bdf-text-strong);
}

.bdf-mini-cart .woocommerce-mini-cart-item img {
	display: none;
}

.bdf-mini-cart .remove_from_cart_button {
	position: absolute;
	top: 8px;
	right: 8px;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	color: var(--bdf-text);
	font-size: 20px;
	line-height: 1;
}

.bdf-mini-cart .quantity { display: block; margin-top: 5px; color: var(--bdf-text); }
.bdf-mini-cart__empty-message { margin: 4px 0 0; }
.bdf-mini-cart .woocommerce-mini-cart__total { margin: 18px 0 12px; color: var(--bdf-heading); }
.bdf-mini-cart .woocommerce-mini-cart__buttons { display: flex; gap: 10px; margin: 0; }
.bdf-mini-cart .woocommerce-mini-cart__buttons .button { flex: 1; margin: 0; text-align: center; }

/* Header banner image, carried over from the previous header. */
.bdf-header__banner { justify-self: center; }
.bdf-header__banner img { max-height: 56px; width: auto; }

/* -------------------------------------------------------------------------
   Primary navigation
   ------------------------------------------------------------------------- */

.bdf-nav {
	border: 0;
}

.bdf-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(4px, 1.4vw, 22px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.bdf-nav__list a {
	display: block;
	position: relative;
	padding: 16px 8px;
	font-family: var(--bdf-font-head);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--bdf-menu);
	white-space: nowrap;
}

.bdf-nav__list a::after {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 10px;
	height: 2px;
	background: var(--bdf-gold-light);
	opacity: 0;
	transition: opacity var(--bdf-speed) var(--bdf-ease);
}

.bdf-nav__list a:hover,
.bdf-nav__list .current-menu-item > a,
.bdf-nav__list .current-menu-parent > a,
.bdf-nav__list .current-menu-ancestor > a { color: var(--bdf-menu-active); }

.bdf-nav__list a:hover::after,
.bdf-nav__list .current-menu-item > a::after,
.bdf-nav__list .current-menu-parent > a::after,
.bdf-nav__list .current-menu-ancestor > a::after { opacity: 1; }

.bdf-nav__list li { position: relative; }

.bdf-nav__list .menu-item-has-children > a { padding-right: 18px; }

.bdf-nav__list .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 3px;
	top: 50%;
	width: 5px;
	height: 5px;
	margin-top: -4px;
	border: 0;
	border: 0;
	transform: rotate(45deg);
	opacity: 0.6;
}

/* Submenu */
.bdf-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 60;
	min-width: 232px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
	box-shadow: var(--bdf-shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	transition: opacity var(--bdf-speed) var(--bdf-ease),
	            visibility var(--bdf-speed);
}

.bdf-nav__list li:hover > .sub-menu,
.bdf-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%);
}

.bdf-nav__list .sub-menu a {
	padding: 10px 14px;
	font-size: 13px;
	border-radius: var(--bdf-radius);
	white-space: normal;
}

.bdf-nav__list .sub-menu a::after { display: none; }
.bdf-nav__list .sub-menu a:hover { background: var(--bdf-neutral); color: var(--bdf-menu-active); }

/* Sticky state */
.bdf-header {
	position: sticky;
	top: 0;
	transition: transform 250ms ease;
}

.bdf-header--hidden { transform: translateY(calc(-100% + var(--bdf-nav-height, 50px))); }
.admin-bar .bdf-header { top: 32px; }
.admin-bar .bdf-header--hidden { transform: translateY(calc(-100% + var(--bdf-nav-height, 50px))); }
@media (max-width: 1024px) {
	.bdf-header--hidden { transform: translateY(-100%); }
	.admin-bar .bdf-header--hidden { transform: translateY(calc(-100% - 32px)); }
}
@media (max-width: 782px) {
	.admin-bar .bdf-header { top: 46px; }
	.admin-bar .bdf-header--hidden { transform: translateY(calc(-100% - 46px)); }
}
@media (max-width: 600px) { .admin-bar .bdf-header { top: 0; } }

/* Header search */
.bdf-search-panel[hidden] { display: none !important; }
.bdf-search-panel {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: grid;
	place-items: start center;
	padding: calc(env(safe-area-inset-top, 0px) + 24px) 20px 20px;
	background: rgba(33, 31, 27, .94);
	opacity: 0;
	transition: opacity var(--bdf-speed) var(--bdf-ease);
}

.bdf-search-panel.is-open { opacity: 1; }
.bdf-search-panel__inner { width: min(100%, 680px); }
.bdf-search-panel__form { display: flex; align-items: center; position: relative; min-height: 56px; border: 1px solid var(--bdf-line); background: var(--bdf-surface); transition: background-color var(--bdf-speed) var(--bdf-ease), border-color var(--bdf-speed) var(--bdf-ease); }
.bdf-search-panel__form:hover { background: var(--bdf-surface-hover); }
.bdf-search-panel__form:focus-within { border-color: var(--bdf-form-focus); background: var(--bdf-surface); }
.bdf-search-panel__form input[type="search"] { flex: 1; min-width: 0; align-self: stretch; border: 0; background: transparent; padding: 0 20px; color: var(--bdf-heading); }
.bdf-search-panel__form input[type="search"]:focus { outline: 0; }
.bdf-search-panel__submit { display: grid; place-items: center; width: 56px; min-height: 56px; border: 0; background: transparent; color: var(--bdf-heading); cursor: pointer; }
.bdf-search-panel__submit svg { width: 22px; height: 22px; }
body.bdf-search-open { overflow: hidden; }

.bdf-search-results { position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 2; height: 0; max-height: min(55vh, 440px); max-height: min(55dvh, 440px); overflow: auto; background: var(--bdf-surface); box-shadow: 0 14px 34px rgba(20, 18, 15, .18); opacity: 0; transform: translateY(-8px); visibility: hidden; pointer-events: none; transition: height 240ms var(--bdf-ease), opacity 180ms ease, transform 180ms ease, visibility 0s linear 240ms; }
.bdf-search-results.is-visible { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
.bdf-search-results.is-loading { pointer-events: none; }
.bdf-search-results__list { list-style: none; margin: 0; padding: 0; }
.bdf-search-results__item { margin: 0; border-bottom: 1px solid rgba(48, 45, 40, .08); }
.bdf-search-results__item:last-child { border-bottom: 0; }
.bdf-search-results__item a { display: flex; align-items: center; gap: 14px; padding: 10px; color: var(--bdf-heading); text-decoration: none; transition: background-color var(--bdf-speed) var(--bdf-ease); }
.bdf-search-results__item a:hover { background: var(--bdf-surface-hover); color: var(--bdf-heading); }
.bdf-search-results__image { display: block; flex: 0 0 62px; width: 62px; height: 62px; overflow: hidden; background: var(--bdf-white); }
.bdf-search-results__image--empty { background: var(--bdf-surface-hover); }
.bdf-search-results__image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bdf-search-results__copy { display: grid; gap: 3px; min-width: 0; }
.bdf-search-results__title { font-size: 15px; line-height: 1.25; }
.bdf-search-results__price { font-size: 14px; color: var(--bdf-text); }
.bdf-search-results__empty { margin: 0; padding: 17px 18px; color: var(--bdf-text); font-size: 15px; }
.bdf-search-results__footer { position: sticky; bottom: 0; padding: 10px; background: var(--bdf-surface); border-top: 1px solid rgba(48, 45, 40, .1); }
.bdf-search-results__view-all { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 44px; padding: 10px 16px; background: var(--bdf-gold); color: var(--bdf-white); text-align: center; }
.bdf-search-results__view-all:hover { background: var(--bdf-gold-hover); color: var(--bdf-white); }

@media (min-width: 1100px) {
	.bdf-header__bar { grid-template-columns: auto minmax(220px, 360px) auto; }
	.bdf-header__search { display: flex; align-items: center; position: relative; justify-self: center; width: min(100%, 360px); min-height: 44px; border: 1px solid var(--bdf-line); background: var(--bdf-surface); transition: background-color var(--bdf-speed) var(--bdf-ease), border-color var(--bdf-speed) var(--bdf-ease); }
	.bdf-header__search:hover { background: var(--bdf-surface-hover); }
	.bdf-header__search:focus-within { border-color: var(--bdf-form-focus); background: var(--bdf-surface); }
	.bdf-header__search input[type="search"] { flex: 1; min-width: 0; align-self: stretch; border: 0; background: transparent; padding: 0 0 0 14px; color: var(--bdf-heading); }
	.bdf-header__search input[type="search"]:focus { outline: 0; }
	.bdf-header__search button { display: grid; place-items: center; width: 44px; min-height: 42px; border: 0; background: transparent; color: var(--bdf-menu); cursor: pointer; }
	.bdf-header__search button svg { width: 21px; height: 21px; }
	.bdf-header__tools [data-bdf-search-toggle] { display: none; }
}

/* Mobile drawer */
.bdf-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; }
.bdf-burger__bar { display: block; width: 24px; height: 1.5px; background: currentColor; transition: transform .2s var(--bdf-ease), opacity .15s var(--bdf-ease); }
.bdf-burger.is-open .bdf-burger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.bdf-burger.is-open .bdf-burger__bar:nth-child(2) { opacity: 0; }
.bdf-burger.is-open .bdf-burger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.bdf-drawer {
	position: fixed;
	top: var(--bdf-drawer-top, 0);
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 190;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: #302d28;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s var(--bdf-ease), visibility .3s var(--bdf-ease);
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 24px 0;
}

.bdf-drawer.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.bdf-drawer__head {
	display: none;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border: 0;
	margin-bottom: 12px;
}

.bdf-drawer__title {
	font-family: var(--bdf-font-accent);
	font-style: italic;
	font-size: 20px;
	color: var(--bdf-heading);
}

.bdf-drawer ul { list-style: none; margin: 0; padding: 0; }
.bdf-drawer__list { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(14px, 2.4vh, 22px); width: 100%; }
.bdf-drawer__list > .menu-item { width: 100%; text-align: center; }

.bdf-drawer .menu-item > a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px var(--bdf-gutter);
	font-family: var(--bdf-font-head);
	font-size: clamp(20px, 5vw, 24px);
	font-weight: 400;
	color: #d8c7a7;
	border: 0;
	text-align: center;
	transition: color .15s var(--bdf-ease);
}

.bdf-drawer .menu-item > a:hover,
.bdf-drawer .current-menu-item > a { color: var(--bdf-white); }
.bdf-drawer .bdf-menu-chevron { transition: transform .15s var(--bdf-ease); }
.bdf-drawer .is-submenu-open > a .bdf-menu-chevron { transform: rotate(180deg); }
.bdf-drawer .sub-menu { width: 100%; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s var(--bdf-ease), opacity .2s var(--bdf-ease); }
.bdf-drawer .is-submenu-open > .sub-menu { max-height: var(--bdf-submenu-height, 320px); opacity: 1; }
.bdf-drawer .sub-menu a { padding-block: 10px; font-weight: 400; font-size: clamp(20px, 5vw, 24px); }

.bdf-scrim {
	position: fixed;
	inset: 0;
	z-index: 180;
	background: transparent;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--bdf-speed) var(--bdf-ease), visibility var(--bdf-speed);
}

.bdf-scrim.is-open { opacity: 1; visibility: visible; }

.bdf-header.is-menu-open {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	background: var(--bdf-header-bg);
	transform: translateY(0) !important;
}
.bdf-header.is-menu-open .bdf-header__tools .bdf-iconbtn { color: var(--bdf-heading); }

body.bdf-locked { overflow: hidden; }

/* -------------------------------------------------------------------------
   Page head
   ------------------------------------------------------------------------- */

.bdf-pagehead {
	padding-block: clamp(34px, 5vw, 66px);
	background: var(--bdf-neutral);
	text-align: center;
}

.bdf-pagehead__title { margin: 0; }

.bdf-crumbs {
	margin-top: 12px;
	font-size: 13px;
	color: var(--bdf-note);
}

.bdf-crumbs a { color: var(--bdf-text); }
.bdf-crumbs a:hover { color: var(--bdf-gold); }
.bdf-crumbs__sep { margin: 0 7px; opacity: 0.6; }

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

.bdf-hero {
	position: relative;
	overflow: hidden;
	background: #e7e7e7;
}

.bdf-hero__track {
	position: relative;
	height: clamp(320px, 52vw, 660px);
}

.bdf-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.9s var(--bdf-ease);
	pointer-events: none;
}

.bdf-hero__slide.is-active { opacity: 1; pointer-events: auto; }

.bdf-hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.bdf-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: clamp(16px, 2.4vw, 28px);
	display: flex;
	justify-content: center;
	gap: 9px;
	z-index: 3;
}

.bdf-hero__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 50%;
	cursor: pointer;
	transition: background var(--bdf-speed) var(--bdf-ease),
	            border-color var(--bdf-speed) var(--bdf-ease);
}

.bdf-hero__dot.is-active {
	background: var(--bdf-gold);
	border-color: var(--bdf-gold);
}

.bdf-hero__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-top: -23px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--bdf-heading);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	transition: opacity var(--bdf-speed) var(--bdf-ease),
	            background var(--bdf-speed) var(--bdf-ease);
}

.bdf-hero:hover .bdf-hero__arrow,
.bdf-hero__arrow:focus-visible { opacity: 1; }

.bdf-hero__arrow:hover { background: var(--bdf-white); color: var(--bdf-gold); }
.bdf-hero__arrow--prev { left: clamp(10px, 2vw, 26px); }
.bdf-hero__arrow--next { right: clamp(10px, 2vw, 26px); }
.bdf-hero__arrow svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
	.bdf-hero__arrow { display: none; }
}

/* -------------------------------------------------------------------------
   Category tiles
   ------------------------------------------------------------------------- */

.bdf-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--bdf-gap);
}

.bdf-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	min-height: 340px;
	padding: 32px 26px;
	background: var(--bdf-neutral);
	border-radius: var(--bdf-radius-lg);
	overflow: hidden;
	text-align: center;
	transition: box-shadow var(--bdf-speed) var(--bdf-ease);
}

.bdf-tile:hover {
	box-shadow: var(--bdf-shadow-md);
}

.bdf-tile__media {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-bottom: 18px;
}

.bdf-tile__media img {
	max-height: 210px;
	width: auto;
}

.bdf-tile__kicker {
	display: block;
	font-family: var(--bdf-font-accent);
	font-style: italic;
	font-size: 20px;
	color: var(--bdf-gold);
	line-height: 1.3;
}

.bdf-tile__name {
	display: block;
	margin-top: 4px;
	font-family: var(--bdf-font-head);
	font-size: 17px;
	font-weight: 500;
	color: var(--bdf-heading);
}

.bdf-tile--dark { background: var(--bdf-dark); }
.bdf-tile--dark .bdf-tile__name { color: var(--bdf-white); }

/* -------------------------------------------------------------------------
   Promo banner
   ------------------------------------------------------------------------- */

.bdf-promo {
	display: block;
	border-radius: var(--bdf-radius-lg);
	overflow: hidden;
	box-shadow: var(--bdf-shadow-sm);
	transition: box-shadow var(--bdf-speed) var(--bdf-ease);
}

.bdf-promo:hover { box-shadow: var(--bdf-shadow-md); }
.bdf-promo img { width: 100%; }

/* -------------------------------------------------------------------------
   About block
   ------------------------------------------------------------------------- */

.bdf-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}

.bdf-about__media img { border-radius: var(--bdf-radius-lg); width: 100%; }
.bdf-about__body h3 { margin-bottom: 0.4em; }
.bdf-about__body h5 { margin-bottom: 1em; }
.bdf-about__body .bdf-btn { margin-top: 8px; }

@media (max-width: 860px) {
	.bdf-about { grid-template-columns: 1fr; }
	.bdf-about__media { order: -1; }
}

/* -------------------------------------------------------------------------
   Service tiles (the three hover boxes)
   ------------------------------------------------------------------------- */

.bdf-services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--bdf-gap);
}

/* Three icon tiles on the left, the call block filling the remaining half. */
@media (min-width: 981px) {
	.bdf-services--with-call {
		grid-template-columns: repeat(3, 1fr) 1.5fr;
	}
}

@media (min-width: 641px) and (max-width: 980px) {
	.bdf-services--with-call { grid-template-columns: repeat(3, 1fr); }
	.bdf-services--with-call .bdf-call { grid-column: 1 / -1; }
}

.bdf-service {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px;
	min-height: 190px;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
	transition: border-color var(--bdf-speed) var(--bdf-ease),
	            box-shadow var(--bdf-speed) var(--bdf-ease);
}

.bdf-service:hover {
	border-color: var(--bdf-cream);
	box-shadow: var(--bdf-shadow-sm);
}

.bdf-service__swap { position: relative; }
.bdf-service__swap img { transition: opacity var(--bdf-speed) var(--bdf-ease); }

.bdf-service__swap img + img {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.bdf-service:hover .bdf-service__swap img { opacity: 0; }
.bdf-service:hover .bdf-service__swap img + img { opacity: 1; }

/* -------------------------------------------------------------------------
   Call block
   ------------------------------------------------------------------------- */

.bdf-call {
	padding: clamp(30px, 4vw, 52px);
	background: var(--bdf-neutral);
	border-radius: var(--bdf-radius-lg);
	text-align: center;
}

.bdf-call__label {
	font-family: var(--bdf-font-accent);
	font-style: italic;
	font-size: clamp(20px, 2.2vw, 26px);
	color: var(--bdf-gold);
	margin-bottom: 6px;
}

.bdf-call__number {
	display: inline-block;
	font-family: var(--bdf-font-head);
	font-size: clamp(26px, 3.4vw, 40px);
	font-weight: 500;
	color: var(--bdf-heading);
	margin-bottom: 8px;
}

.bdf-call__number:hover { color: var(--bdf-gold); }
.bdf-call__note { margin: 0; font-size: 14px; }

/* -------------------------------------------------------------------------
   Product carousel
   ------------------------------------------------------------------------- */

.bdf-carousel { position: relative; }

.bdf-carousel__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	margin-inline: calc(var(--bdf-gap) / -2);
	padding-inline: calc(var(--bdf-gap) / 2);
	padding-bottom: 6px;
}

.bdf-carousel__viewport::-webkit-scrollbar { display: none; }

/* Flex rather than grid: a percentage flex-basis resolves against the scroll
   container, so each card keeps a full slot width instead of shrinking to fit
   every item on screen at once. */
/* The track fills the scroll container, so a percentage width on each card
   resolves against the visible width. Cards overflow to the right and the
   container scrolls. */
.bdf-carousel__track {
	display: flex;
	gap: var(--bdf-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bdf-carousel__track > * {
	scroll-snap-align: start;
	flex: 0 0 auto;
	width: calc(78% - var(--bdf-gap));
}

@media (min-width: 640px)  { .bdf-carousel__track > * { width: calc(50% - var(--bdf-gap) * 1 / 2); } }
@media (min-width: 900px)  { .bdf-carousel__track > * { width: calc(33.333% - var(--bdf-gap) * 2 / 3); } }
@media (min-width: 1200px) { .bdf-carousel__track > * { width: calc(25% - var(--bdf-gap) * 3 / 4); } }

.bdf-carousel__nav {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 26px;
}

.bdf-carousel__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: var(--bdf-white);
	color: var(--bdf-heading);
	border: 1px solid var(--bdf-line);
	border-radius: 50%;
	cursor: pointer;
	transition: background var(--bdf-speed) var(--bdf-ease),
	            color var(--bdf-speed) var(--bdf-ease),
	            border-color var(--bdf-speed) var(--bdf-ease);
}

.bdf-carousel__btn:hover {
	background: var(--bdf-gold);
	border-color: var(--bdf-gold);
	color: var(--bdf-white);
}

.bdf-carousel__btn svg { width: 17px; height: 17px; }

/* -------------------------------------------------------------------------
   Product card
   ------------------------------------------------------------------------- */

.bdf-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
	overflow: hidden;
	text-align: center;
	transition: border-color var(--bdf-speed) var(--bdf-ease),
	            box-shadow var(--bdf-speed) var(--bdf-ease);
}

.bdf-card:hover {
	border-color: var(--bdf-cream);
	box-shadow: var(--bdf-shadow-md);
}

.bdf-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: var(--bdf-neutral);
	overflow: hidden;
}

.bdf-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bdf-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 5px 11px;
	background: var(--bdf-gold);
	color: var(--bdf-white);
	font-family: var(--bdf-font-head);
	font-size: 11px;
	font-weight: 500;
	border-radius: 20px;
}

.bdf-card__badge--out { background: var(--bdf-dark); }

.bdf-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 8px;
	padding: 20px 18px 22px;
}

.bdf-card__title {
	margin: 0;
	font-family: var(--bdf-font-head);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
}

.bdf-card__title a { color: var(--bdf-heading); }
.bdf-card__title a:hover { color: var(--bdf-gold); }

.bdf-card__price {
	font-family: var(--bdf-font-head);
	font-size: 16px;
	font-weight: 500;
	color: var(--bdf-gold);
}

.bdf-card__price del { color: var(--bdf-note); font-weight: 400; margin-right: 6px; }
.bdf-card__price ins { text-decoration: none; font-weight: 400; }

.bdf-card__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 6px;
}

.bdf-card__actions .button,
.bdf-card__actions .bdf-btn {
	padding: 10px 18px;
	min-height: 40px;
	font-size: 13px;
}

/* Carousels sit between full-padding sections, so they take the tighter
   rhythm to keep the page from feeling stretched out. */
.bdf-carousel-section { padding-block: clamp(34px, 4.4vw, 64px); }

.bdf-card .star-rating { display: inline-block; margin: 0 auto; }

/* -------------------------------------------------------------------------
   WooCommerce, shared
   ------------------------------------------------------------------------- */

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 var(--bdf-gap);
	padding: 16px 20px;
	background: var(--bdf-neutral);
	border: 1px solid var(--bdf-line);
	border-radius: var(--bdf-radius-lg);
	list-style: none;
	color: var(--bdf-text-strong);
	font-size: 14px;
}

.woocommerce .woocommerce-error {
	background: #fdf3f3;
	border-color: #f0d9d9;
	flex-direction: column;
	align-items: flex-start;
}

.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-info .button { margin-left: auto; }

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before { display: none; }

.woocommerce .star-rating { color: var(--bdf-gold); }

.woocommerce .price,
.woocommerce span.amount {
	font-family: var(--bdf-font-head);
	color: var(--bdf-gold);
}

/* Shop layout */
.bdf-shop {
	display: grid;
	grid-template-columns: 264px minmax(0, 1fr);
	gap: clamp(24px, 3vw, 46px);
	align-items: start;
}

.bdf-shop--full { grid-template-columns: minmax(0, 1fr); }

@media (max-width: 980px) {
	.bdf-shop { grid-template-columns: minmax(0, 1fr); }
	.bdf-shop__aside { order: 2; }
}

.bdf-shop__aside { position: sticky; top: 18px; }

.bdf-shop__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: var(--bdf-gap);
	padding-bottom: 16px;
	border: 0;
}

.bdf-shop__toolbar:empty { display: none; }

.woocommerce .woocommerce-result-count {
	margin: 0;
	font-size: 14px;
	color: var(--bdf-note);
}

.woocommerce .woocommerce-ordering { margin: 0; }
.woocommerce .woocommerce-ordering .bdf-combobox { min-width: 250px; }

.bdf-shop__main { position: relative; }

.bdf-filters {
	position: relative;
	margin: -8px 0 var(--bdf-gap);
	padding: 17px 0 20px;
	border-top: 1px solid var(--bdf-line-soft);
	border-bottom: 1px solid var(--bdf-line-soft);
}

.bdf-filters__top {
	position: absolute;
	z-index: 2;
	top: 52px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 0;
}

.bdf-filters__toggle {
	display: none;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 0;
	background: transparent;
	color: var(--bdf-heading);
	font-family: var(--bdf-font-head);
	font-size: 15px;
	font-weight: 500;
	border: 0;
	cursor: pointer;
}

.bdf-filters__toggle svg {
	width: 19px;
	height: 19px;
	color: var(--bdf-gold);
}

.bdf-filters__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	background: var(--bdf-gold);
	color: var(--bdf-white);
	font-family: var(--bdf-font-body);
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	border-radius: 999px;
}

.bdf-filters__clear {
	margin: 0;
	color: var(--bdf-note);
	font-size: 13px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bdf-filters__panel {
	display: flex;
	align-items: end;
	gap: 14px;
}

.bdf-filters__field {
	flex: 0 1 240px;
	min-width: 190px;
}

.bdf-filters__field label {
	margin-bottom: 7px;
	color: var(--bdf-note);
	font-family: var(--bdf-font-body);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}

.bdf-filters__check {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	margin: 0 0 0 4px;
	padding: 0 4px;
	color: var(--bdf-text-strong);
	font-family: var(--bdf-font-body);
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
}

.bdf-filters__check input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.bdf-filters__checkbox {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line);
	border-radius: 3px;
	transition: background var(--bdf-speed) var(--bdf-ease),
	            border-color var(--bdf-speed) var(--bdf-ease),
	            box-shadow var(--bdf-speed) var(--bdf-ease);
}

.bdf-filters__check input:checked + .bdf-filters__checkbox {
	background: var(--bdf-gold);
	border-color: var(--bdf-gold);
}

.bdf-filters__check input:checked + .bdf-filters__checkbox::after {
	position: absolute;
	top: 3px;
	left: 6px;
	width: 6px;
	height: 10px;
	border-right: 2px solid var(--bdf-white);
	border-bottom: 2px solid var(--bdf-white);
	content: "";
	transform: rotate(45deg);
}

.bdf-filters__check input:focus-visible + .bdf-filters__checkbox {
	box-shadow: 0 0 0 3px rgba(164, 145, 109, 0.18);
}

.bdf-filters__active {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.bdf-filters__active a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 34px;
	padding: 6px 10px 6px 13px;
	background: var(--bdf-cream);
	color: var(--bdf-text-strong);
	font-size: 13px;
	border: 1px solid transparent;
	border-radius: 999px;
}

.bdf-filters__active a:hover {
	background: var(--bdf-white);
	color: var(--bdf-heading);
	border-color: var(--bdf-gold);
}

.bdf-filters__active a span {
	color: var(--bdf-note);
	font-size: 18px;
	line-height: 1;
}

.bdf-js .bdf-filters__apply { display: none; }

.bdf-shop__main.is-loading {
	cursor: progress;
}

.bdf-shop__main.is-loading ul.products,
.bdf-shop__main.is-loading .woocommerce-pagination {
	opacity: 0.38;
	transition: opacity 120ms ease;
}

@media (max-width: 720px) {
	.bdf-shop__toolbar {
		align-items: stretch;
		margin-bottom: 18px;
	}

	.woocommerce .woocommerce-result-count {
		width: 100%;
	}

	.woocommerce .woocommerce-ordering,
	.woocommerce .woocommerce-ordering .bdf-combobox {
		width: 100%;
		min-width: 0;
	}

	.bdf-filters {
		margin-top: 0;
		padding: 0;
		border: 1px solid var(--bdf-line-soft);
		border-radius: var(--bdf-radius-lg);
	}

	.bdf-filters__top {
		position: static;
		justify-content: space-between;
		min-height: 54px;
		padding: 0 15px;
	}

	.bdf-filters__toggle { display: inline-flex; }
	.bdf-filters__clear { margin: 0; }

	.bdf-filters__panel {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
		padding: 4px 15px 17px;
		border-top: 1px solid var(--bdf-line-soft);
	}

	.bdf-js .bdf-filters__panel:not(.is-open) { display: none; }
	.bdf-filters__field { min-width: 0; }
	.bdf-filters__check { margin-left: 0; }
	.bdf-filters__active { margin: 0; padding: 0 15px 16px; }
}

/* Product grid */
.woocommerce ul.products,
.bdf-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
	gap: var(--bdf-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0;
	clear: none !important;
}

/* Widgets in the shop sidebar */
.bdf-widget {
	padding: 20px;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
}

.bdf-widget + .bdf-widget { margin-top: 18px; }

.bdf-widget__title {
	margin: 0 0 14px;
	font-family: var(--bdf-font-head);
	font-size: 15px;
	font-weight: 500;
	color: var(--bdf-heading);
}

.bdf-widget ul { list-style: none; margin: 0; padding: 0; font-size: 14px; }
.bdf-widget ul li { padding: 6px 0; }
.bdf-widget ul li a { color: var(--bdf-text); }
.bdf-widget ul li a:hover { color: var(--bdf-gold); }
.bdf-widget .count { color: var(--bdf-note); font-size: 12px; }

/* The old theme hid nested category lists in this widget. Kept. */
.bdf-widget .product-categories .children { display: none; }

.bdf-widget .price_slider_wrapper .ui-slider {
	position: relative;
	height: 4px;
	background: var(--bdf-line);
	border-radius: 3px;
	margin: 18px 0;
}

.bdf-widget .ui-slider .ui-slider-range,
.woocommerce .price_slider .ui-slider-range {
	position: absolute;
	height: 4px;
	background: var(--bdf-gold);
}

.bdf-widget .ui-slider .ui-slider-handle,
.woocommerce .price_slider .ui-slider-handle {
	position: absolute;
	top: -6px;
	width: 16px;
	height: 16px;
	margin-left: -8px;
	background: var(--bdf-white);
	border: 2px solid var(--bdf-gold);
	border-radius: 50%;
	cursor: grab;
}

.bdf-widget .price_slider_amount {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 13px;
}

.bdf-widget .price_slider_amount .button { padding: 8px 16px; min-height: 36px; font-size: 12px; }

/* Pagination */
.woocommerce nav.woocommerce-pagination,
.bdf-pagination {
	margin-top: clamp(30px, 4vw, 52px);
	text-align: center;
}

.woocommerce nav.woocommerce-pagination ul,
.bdf-pagination .page-numbers {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	margin: 0;
	overflow: visible;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.bdf-pagination .page-numbers > * {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	background: var(--bdf-white);
	color: var(--bdf-text);
	font-family: var(--bdf-font-head);
	font-size: 14px;
	font-weight: 500;
	border: 1px solid var(--bdf-line);
	border-radius: var(--bdf-radius);
	transition: background var(--bdf-speed) var(--bdf-ease),
	            color var(--bdf-speed) var(--bdf-ease),
	            border-color var(--bdf-speed) var(--bdf-ease);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current,
.bdf-pagination .page-numbers > .current,
.bdf-pagination .page-numbers > a:hover {
	background: var(--bdf-gold);
	border-color: var(--bdf-gold);
	color: var(--bdf-white);
}

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

.bdf-product {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	align-items: start;
}

.bdf-product > .summary {
	padding-left: clamp(26px, 4vw, 60px);
}

@media (max-width: 900px) {
	.bdf-product { grid-template-columns: minmax(0, 1fr); }
	.bdf-product > .summary { padding-left: 0; }
}

.woocommerce div.product div.images { margin: 0; float: none; width: auto; }

.woocommerce div.product div.images img {
	border-radius: var(--bdf-radius-lg);
	width: 100%;
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
	gap: 10px;
	margin-top: 12px;
	padding: 0;
	list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: auto;
	float: none;
	margin: 0;
}

.woocommerce div.product div.images .flex-control-thumbs img {
	border: 1px solid transparent;
	border-radius: var(--bdf-radius);
	opacity: 0.7;
	transition: opacity var(--bdf-speed) var(--bdf-ease),
	            border-color var(--bdf-speed) var(--bdf-ease);
}

.woocommerce div.product div.images .flex-control-thumbs img:hover,
.woocommerce div.product div.images .flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: var(--bdf-gold);
}

.woocommerce div.product div.summary { margin: 0; float: none; width: auto; }

.woocommerce div.product .product_title {
	font-size: clamp(24px, 2.8vw, 34px);
	margin-bottom: 0.35em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 26px;
	font-weight: 500;
	color: var(--bdf-gold);
	margin-bottom: 0.6em;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: var(--bdf-note);
	font-size: 19px;
	font-weight: 400;
	margin-right: 8px;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	text-decoration: none;
	font-weight: 400;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: var(--bdf-gap) 0;
}

.woocommerce div.product form.cart .button { float: none; margin: 0; }
.woocommerce div.product form.cart div.quantity { float: none; margin: 0; }

.woocommerce .quantity input.qty {
	width: 84px;
	min-height: 48px;
	text-align: center;
	padding-inline: 8px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	padding-bottom: var(--bdf-gap);
	border: 0;
	margin-bottom: var(--bdf-gap);
}

.woocommerce div.product .product_meta {
	font-size: 13px;
	color: var(--bdf-note);
}

.woocommerce div.product .product_meta > span { display: block; margin-bottom: 5px; }
.woocommerce div.product .product_meta a { color: var(--bdf-text); }
.woocommerce div.product .product_meta a:hover { color: var(--bdf-gold); }

/* Tabs */
.woocommerce div.product .woocommerce-tabs { margin-top: clamp(34px, 4vw, 62px); }

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 var(--bdf-gap);
	padding: 0;
	border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 13px 20px;
	font-family: var(--bdf-font-head);
	font-size: 14px;
	font-weight: 500;
	color: var(--bdf-text);
	border-radius: var(--bdf-radius) var(--bdf-radius) 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	background: var(--bdf-neutral);
	color: var(--bdf-heading);
}

.woocommerce div.product .woocommerce-tabs .panel { margin: 0; padding: 0; }
.woocommerce div.product .woocommerce-tabs .panel > h2:first-child { display: none; }

/* Related and upsells */
.woocommerce .related > h2,
.woocommerce .upsells > h2,
.woocommerce .cross-sells > h2 {
	text-align: center;
	margin-bottom: clamp(22px, 3vw, 40px);
}

.woocommerce .related,
.woocommerce .upsells { margin-top: clamp(40px, 5vw, 76px); }

/* Reviews */
.woocommerce #reviews #comments ol.commentlist { padding: 0; }

.woocommerce #reviews #comments ol.commentlist li {
	margin-bottom: 18px;
	padding: 20px;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	margin: 0 0 0 62px;
	padding: 0;
	border: 0;
	border-radius: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	position: absolute;
	width: 46px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 50%;
}

/* -------------------------------------------------------------------------
   Cart, checkout, account
   ------------------------------------------------------------------------- */

.woocommerce table.shop_table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--bdf-line);
	border-radius: var(--bdf-radius-lg);
	overflow: hidden;
	margin: 0 0 var(--bdf-gap);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 16px;
	border: 0;
	border: 0;
	text-align: left;
	vertical-align: middle;
	font-size: 14px;
}

.woocommerce table.shop_table th {
	background: var(--bdf-neutral);
	font-family: var(--bdf-font-head);
	font-weight: 500;
	color: var(--bdf-heading);
}

.woocommerce table.shop_table tbody tr:last-child td { border: 0; }

.woocommerce table.cart img,
.woocommerce #content table.cart img {
	width: 74px;
	border-radius: var(--bdf-radius);
}

.woocommerce a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	color: var(--bdf-note) !important;
	font-size: 18px;
	line-height: 1;
	border-radius: 50%;
	text-decoration: none;
}

.woocommerce a.remove:hover {
	background: var(--bdf-gold);
	color: var(--bdf-white) !important;
}

.woocommerce .cart-collaterals { margin-top: var(--bdf-gap); }

.woocommerce .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce .cart-collaterals .cross-sells { width: auto; float: none; }

.woocommerce .cart_totals h2,
.woocommerce-checkout #order_review_heading {
	font-size: 22px;
	margin-bottom: 0.6em;
}

.bdf-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
	gap: clamp(24px, 3vw, 44px);
	align-items: start;
}

@media (max-width: 900px) {
	.bdf-cart-layout { grid-template-columns: minmax(0, 1fr); }
}

.bdf-panel {
	padding: clamp(20px, 2.6vw, 30px);
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
	box-shadow: var(--bdf-shadow-sm);
}

.woocommerce-checkout .col2-set,
.woocommerce-page .col2-set {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--bdf-gap);
	width: auto;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2,
.woocommerce-page .col2-set .col-1,
.woocommerce-page .col2-set .col-2 { width: auto; float: none; }

.woocommerce form .form-row { margin: 0 0 16px; padding: 0; }
.woocommerce form .form-row label { margin-bottom: 6px; }

.woocommerce form .form-row-first,
.woocommerce form .form-row-last { width: 100%; float: none; }

@media (min-width: 620px) {
	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last {
		display: inline-block;
		width: calc(50% - 8px);
		vertical-align: top;
	}
	.woocommerce form .form-row-first { margin-right: 12px; }
}

.woocommerce #payment {
	background: var(--bdf-neutral);
	border-radius: var(--bdf-radius-lg);
	padding: 20px;
}

.woocommerce #payment ul.payment_methods {
	padding: 0;
	border: 0;
	list-style: none;
}

.woocommerce #payment ul.payment_methods li {
	margin-bottom: 10px;
	padding: 14px;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line);
	border-radius: var(--bdf-radius);
}

.woocommerce #payment ul.payment_methods li label {
	display: inline;
	font-weight: 500;
	cursor: pointer;
}

.woocommerce #payment div.payment_box {
	margin: 12px 0 0;
	padding: 14px;
	background: var(--bdf-neutral);
	border-radius: var(--bdf-radius);
	font-size: 13px;
	color: var(--bdf-text);
}

.woocommerce #payment div.payment_box::before { display: none; }

.woocommerce #payment #place_order { width: 100%; margin-top: 16px; }

.woocommerce-additional-fields { margin-top: 32px; }

/* The old build coloured this label red on purpose, it flags the wishes field. */
.woocommerce label[for="order_comments"] { color: #c0392b; }

/* Account */
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 240px;
	float: none;
}

.woocommerce-account .woocommerce-MyAccount-content { width: auto; float: none; }

.bdf-account {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: clamp(22px, 3vw, 44px);
	align-items: start;
}

@media (max-width: 860px) {
	.bdf-account { grid-template-columns: minmax(0, 1fr); }
	.woocommerce-account .woocommerce-MyAccount-navigation { width: auto; }
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
	overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 13px 18px;
	font-family: var(--bdf-font-head);
	font-size: 14px;
	font-weight: 500;
	color: var(--bdf-text);
	border: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child a { border: 0; }

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	background: var(--bdf-neutral);
	color: var(--bdf-gold);
}

/* Buy One Click plugin button, kept inline with the cart button. */
.wc_quick_buy_button { font-size: 13px; }

/* -------------------------------------------------------------------------
   Editor content
   ------------------------------------------------------------------------- */

.bdf-prose { max-width: 860px; }
.bdf-prose--wide { max-width: none; }

.bdf-prose h2,
.bdf-prose h3,
.bdf-prose h4 { margin-top: 1.6em; }

.bdf-prose > *:first-child { margin-top: 0; }

.bdf-prose ul,
.bdf-prose ol { padding-left: 1.3em; margin: 0 0 1.1em; }
.bdf-prose li { margin-bottom: 0.45em; }
.bdf-prose li::marker { color: var(--bdf-gold); }

.bdf-prose img { border-radius: var(--bdf-radius-lg); margin-block: 1.2em; }

.bdf-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4em 0;
	font-size: 14px;
}

.bdf-prose th,
.bdf-prose td {
	padding: 12px 14px;
	border: 1px solid var(--bdf-line);
	text-align: left;
}

.bdf-prose th { background: var(--bdf-neutral); color: var(--bdf-heading); font-family: var(--bdf-font-head); }

.bdf-prose .aligncenter { margin-inline: auto; }
.bdf-prose .alignleft { float: left; margin: 0 1.4em 1em 0; }
.bdf-prose .alignright { float: right; margin: 0 0 1em 1.4em; }

.bdf-table-scroll { overflow-x: auto; }

/* -------------------------------------------------------------------------
   Wedding packages
   ------------------------------------------------------------------------- */

.bdf-hero-static {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(300px, 42vw, 520px);
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: var(--bdf-gap);
}

.bdf-hero-static::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.44));
}

.bdf-hero-static__title {
	position: relative;
	z-index: 2;
	margin: 0;
	color: var(--bdf-white);
	font-size: clamp(26px, 4vw, 50px);
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.bdf-packages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--bdf-gap);
	align-items: stretch;
}

.bdf-package {
	display: flex;
	flex-direction: column;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
	overflow: hidden;
	transition: box-shadow var(--bdf-speed) var(--bdf-ease);
}

.bdf-package:hover { box-shadow: var(--bdf-shadow-md); }

.bdf-package__head {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 68px;
	padding: 18px 20px;
	background: var(--bdf-cream-deep);
	text-align: center;
}

.bdf-package__name {
	margin: 0;
	font-size: 17px;
	font-weight: 500;
	color: var(--bdf-btn-text);
}

.bdf-package__price {
	padding: 22px 20px 6px;
	text-align: center;
	font-family: var(--bdf-font-head);
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 300;
	color: var(--bdf-heading);
}

.bdf-package__cta { padding: 0 20px 20px; text-align: center; }

.bdf-package__list {
	flex: 1;
	margin: 0;
	padding: 20px 24px 26px;
	border: 0;
	list-style: none;
	font-size: 14px;
}

.bdf-package__list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
	line-height: 1.5;
}

.bdf-package__list li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 8px;
	width: 7px;
	height: 7px;
	background: var(--bdf-gold);
	border-radius: 50%;
}

.bdf-package__list li:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------- */

.bdf-map {
	width: 100%;
	height: clamp(300px, 40vw, 480px);
	border: 0;
	filter: grayscale(1);
	transition: filter 0.5s var(--bdf-ease);
}

.bdf-map:hover { filter: grayscale(0); }

.bdf-contact {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
	gap: clamp(26px, 3.4vw, 52px);
	align-items: start;
}

@media (max-width: 900px) {
	.bdf-contact { grid-template-columns: minmax(0, 1fr); }
}

.bdf-info__row {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border: 0;
	font-size: 14px;
}

.bdf-info__row:last-child { border: 0; }

.bdf-info__label {
	flex: 0 0 88px;
	font-family: var(--bdf-font-head);
	font-weight: 500;
	color: var(--bdf-heading);
}

.bdf-info__value { flex: 1; }
.bdf-info__value p { margin: 0 0 4px; }
.bdf-info__value p:last-child { margin-bottom: 0; }

.bdf-info__brand {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 18px;
	margin-bottom: 6px;
	border: 0;
}

.bdf-info__brand img { width: 90px; max-width: 90px; height: auto; }
.bdf-info__brand h5 { margin: 0 0 3px; }
.bdf-info__brand p { margin: 0; font-size: 13px; }

/* Contact Form 7 */
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form label { width: 100%; }

.wpcf7-form fieldset { margin: 0; padding: 0; border: 0; }

/* The saved form content still carries the old theme's column classes.
   Neutralise them so the fields stack and size normally. */
.wpcf7-form .column,
.wpcf7-form .column.one,
.wpcf7-form .column.one-second,
.wpcf7-form .column.one-third {
	width: 100%;
	float: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 620px) {
	.wpcf7-form .column.one-second,
	.wpcf7-form .column.one-third {
		display: inline-block;
		width: calc(50% - 8px);
		vertical-align: top;
	}
}

.wpcf7-not-valid-tip { color: #c0392b; font-size: 13px; margin-top: 5px; }

.wpcf7-response-output {
	margin: 16px 0 0 !important;
	padding: 14px 18px !important;
	border: 1px solid var(--bdf-line) !important;
	border-radius: var(--bdf-radius) !important;
	font-size: 14px;
}

.wpcf7-spinner { margin-left: 10px; }

/* -------------------------------------------------------------------------
   Blog
   ------------------------------------------------------------------------- */

.bdf-posts {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--bdf-gap);
}

.bdf-post {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--bdf-white);
	border: 1px solid var(--bdf-line-soft);
	border-radius: var(--bdf-radius-lg);
	overflow: hidden;
	transition: box-shadow var(--bdf-speed) var(--bdf-ease);
}

.bdf-post:hover { box-shadow: var(--bdf-shadow-md); }

.bdf-post__media { display: block; aspect-ratio: 16 / 10; background: var(--bdf-neutral); }
.bdf-post__media img { width: 100%; height: 100%; object-fit: cover; }
.bdf-post__body { display: flex; flex-direction: column; gap: 10px; padding: 22px; flex: 1; }
.bdf-post__title { margin: 0; font-size: 21px; line-height: 1.3; }
.bdf-post__title a { color: var(--bdf-heading); }
.bdf-post__title a:hover { color: var(--bdf-gold); }
.bdf-post__meta { font-size: 13px; color: var(--bdf-note); }
.bdf-post__excerpt { margin: 0; font-size: 14px; }
.bdf-post__more { margin-top: auto; padding-top: 8px; }

.bdf-entry__meta {
	margin-bottom: var(--bdf-gap);
	font-size: 13px;
	color: var(--bdf-note);
}

.bdf-entry__thumb { margin-bottom: var(--bdf-gap); }
.bdf-entry__thumb img { width: 100%; border-radius: var(--bdf-radius-lg); }

/* -------------------------------------------------------------------------
   404 and empty states
   ------------------------------------------------------------------------- */

.bdf-empty {
	text-align: center;
	padding-block: clamp(46px, 7vw, 96px);
	max-width: 620px;
	margin-inline: auto;
}

.bdf-empty__code {
	font-family: var(--bdf-font-accent);
	font-style: italic;
	font-size: clamp(64px, 12vw, 130px);
	line-height: 1;
	color: var(--bdf-cream);
	margin-bottom: 8px;
}

.bdf-empty__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}

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

.bdf-footer {
	background: var(--bdf-footer-bg);
	color: #58534b;
	font-size: 14px;
	margin-top: clamp(40px, 5vw, 80px);
	border-top: 1px solid var(--bdf-line);
}

.bdf-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	justify-items: stretch;
	gap: clamp(26px, 3vw, 46px);
	padding-block: clamp(38px, 5vw, 62px);
}

.bdf-footer__title {
	margin: 0 0 16px;
	font-family: var(--bdf-font-head);
	font-size: 22px;
	font-weight: 500;
	color: var(--bdf-heading);
}

.bdf-footer ul { list-style: none; margin: 0; padding: 0; }
.bdf-footer li { margin-bottom: 16px; line-height: 1.5; }
.bdf-footer a { color: #58534b; }
.bdf-footer a:hover { color: var(--bdf-gold-hover); }

.bdf-footer__brand { text-align: left; }
.bdf-footer__brand img { margin: 0 0 18px; max-width: 150px; }
.bdf-footer__brand > p { font-size: 1rem; }

.bdf-footer__brand .bdf-social { justify-content: flex-start; }

.bdf-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.bdf-social a,
.bdf-chat a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: transparent;
	color: var(--bdf-gold);
	border: 0;
	border-radius: 50%;
	transition: background var(--bdf-speed) var(--bdf-ease),
	            color var(--bdf-speed) var(--bdf-ease),
	            border-color var(--bdf-speed) var(--bdf-ease);
}

.bdf-social a:hover,
.bdf-chat a:hover {
	background: transparent;
	color: var(--bdf-gold-hover);
}

.bdf-social a {
	border: 0 !important;
	outline: 0;
	box-shadow: none;
}

.bdf-social svg,
.bdf-footer__contact .bdf-chat svg {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	margin: 0;
}

[data-bdf-style="outline"] > * {
	vector-effect: non-scaling-stroke;
}

.bdf-footer__contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.bdf-footer__address > span {
	font-size: 1rem;
}

.bdf-footer__contact svg {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	margin-top: 4px;
	color: var(--bdf-gold);
}

.bdf-chat {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}

.bdf-newsletter {
	padding: 24px 20px;
	background: var(--bdf-white);
	border: 3px solid var(--bdf-cream);
	border-radius: var(--bdf-radius-lg);
	text-align: center;
}

.bdf-newsletter__brand {
	margin: 0 0 4px;
	font-family: var(--bdf-font-accent);
	font-style: italic;
	font-weight: 400;
	font-size: 24px;
	color: var(--bdf-heading);
}

.bdf-newsletter__label {
	margin: 0 0 14px;
	font-family: var(--bdf-font-head);
	font-size: 15px;
	font-weight: 500;
	color: var(--bdf-heading);
}

.bdf-newsletter .wpcf7-form p { margin-bottom: 10px; }
.bdf-newsletter input[type="email"],
.bdf-newsletter input[type="text"] { text-align: center; }
.bdf-newsletter input[type="submit"] { width: 100%; }

.bdf-paycards {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.bdf-paycards .bdf-paycards__logo {
	width: auto;
	height: 16px;
	margin: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.bdf-paycards .bdf-paycards__logo--jcc { width: 58px; object-fit: contain; }

.bdf-footer__copy {
	background: var(--bdf-footer-copy-bg);
	padding-block: 0;
	font-size: 13px;
	color: #625e57;
}

.bdf-footer__copy p { margin: 0; }
.bdf-footer__copy a { color: #4c4842; font-size: inherit; }
.bdf-footer__copy a:hover { color: var(--bdf-gold-hover); }

.bdf-footer__copy-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 32px;
	gap: 24px;
	padding-right: 72px;
}

.bdf-totop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: var(--bdf-gold);
	color: var(--bdf-white);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	box-shadow: var(--bdf-shadow-md);
	transition: opacity var(--bdf-speed) var(--bdf-ease),
	            visibility var(--bdf-speed),
	            background var(--bdf-speed) var(--bdf-ease);
}

.bdf-totop.is-visible { opacity: 1; visibility: visible; }
.bdf-totop:hover { background: var(--bdf-gold-hover); }
.bdf-totop svg { width: 18px; height: 18px; }

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

@media (max-width: 1024px) {
	.bdf-header__banner { display: none; }

	.bdf-header__bar { grid-template-columns: auto 1fr; }

	.bdf-nav { display: none; }

	.bdf-burger { display: inline-flex; }
	.bdf-mini-cart { display: none !important; }
}

@media (max-width: 600px) {
	.bdf-topbar__inner { min-height: 30px; }
	.bdf-topbar__phone,
	.bdf-lang--topbar .bdf-lang__item { font-size: 12px; }
	.bdf-topbar__phone svg { display: none; }
	.bdf-lang--topbar .bdf-lang__item { gap: 6px; }
	.bdf-lang--topbar .bdf-lang__flag { flex-basis: 18px; width: 18px; height: 12px; }

	.bdf-header__bar { padding-block: 8px; }
	.bdf-header__logo { max-height: 54px; }

	.bdf-lang { margin-left: 0; }

	.bdf-tile { min-height: 290px; }

	.woocommerce ul.products,
	.bdf-products { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }

	.bdf-card__body { padding: 14px 12px 16px; }
	.bdf-card__title { font-size: 15px; }
	.bdf-card__price { font-size: 15px; }

	.woocommerce table.shop_table th,
	.woocommerce table.shop_table td { padding: 12px 10px; font-size: 13px; }

	.bdf-footer__copy { font-size: 12px; }
	.bdf-footer__copy-inner { min-height: 30px; flex-direction: row; padding-right: 52px; gap: 10px; }
	.bdf-footer__copy-inner p { white-space: nowrap; }
	.bdf-paycards { flex-wrap: nowrap; gap: 8px; }
	.bdf-paycards .bdf-paycards__logo { height: 14px; }
	.bdf-paycards .bdf-paycards__logo--jcc { width: 50px; }
}

@media (max-width: 767px) {
	.bdf-footer__grid {
		grid-template-columns: 1fr;
		row-gap: 56px;
		padding-block: 48px 56px;
	}
}

/* Print */
@media print {
	.bdf-header,
	.bdf-footer,
	.bdf-totop,
	.bdf-drawer,
	.bdf-scrim { display: none !important; }
}
