/*
Theme Name: Bamby Stone GeneratePress Child
Theme URI: https://bambystone.com.au/
Description: Lightweight, accessible Bamby Stone presentation layer for GeneratePress.
Author: Bamby Stone
Author URI: https://bambystone.com.au/
Template: generatepress
Version: 1.0.66
Text Domain: bamby-generatepress-child
Requires at least: 6.7
Requires PHP: 7.4
*/

:root {
	--bamby-ink: #111111;
	--bamby-muted: #5f5b56;
	--bamby-gold: #a77b51;
	--bamby-gold-dark: #765435;
	--bamby-sand: #ffffff;
	--bamby-paper: #ffffff;
	--bamby-white: #ffffff;
	--bamby-line: #ded8d1;
	--bamby-success: #1d6f42;
	--bamby-error: #a52a2a;
	--bamby-content: 1280px;
	--bamby-reading: 780px;
	--bamby-radius: 16px;
	--bamby-shadow: 0 18px 55px rgba(17, 17, 17, 0.1);
	--bamby-xs: clamp(0.5rem, 0.45rem + 0.2vw, 0.75rem);
	--bamby-sm: clamp(0.75rem, 0.62rem + 0.45vw, 1.25rem);
	--bamby-md: clamp(1.25rem, 1rem + 0.9vw, 2.1rem);
	--bamby-lg: clamp(2rem, 1.55rem + 1.9vw, 4rem);
	--bamby-xl: clamp(3.5rem, 2.5rem + 3.8vw, 7rem);
}

/* Keep the expanded phone search above hero media and make its controls
   reliably tappable while the search field extends below the header. */
@media (max-width: 767px) {
	.bamby-site-header.is-search-open {
		position: fixed !important;
		z-index: 2147483000 !important;
		overflow: visible !important;
	}

	.bamby-site-header.is-search-open .bamby-header-search,
	.bamby-site-header.is-search-open .bpls-wrapper,
	.bamby-site-header.is-search-open .bpls-search-shell,
	.bamby-site-header.is-search-open .bpls-input,
	.bamby-site-header.is-search-open .bpls-submit,
	.bamby-site-header.is-search-open .bpls-results {
		pointer-events: auto !important;
	}
}

/* Project-journey headings are useful internal links without looking like ads. */
.bamby-section--let-s-bring-it-to-life-section .bamby-journey-link {
	color: inherit;
	text-decoration: none;
}

.bamby-section--let-s-bring-it-to-life-section .bamby-journey-link:hover,
.bamby-section--let-s-bring-it-to-life-section .bamby-journey-link:focus-visible {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bamby-paper);
	color: var(--bamby-ink);
	font-family: "Open Sans", Arial, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--bamby-gold-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
	color: var(--bamby-ink);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--bamby-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 0.65em;
}

h1 {
	font-size: clamp(2.15rem, 1.6rem + 2.4vw, 4.4rem);
}

h2 {
	font-size: clamp(1.75rem, 1.35rem + 1.65vw, 3.15rem);
}

h3 {
	font-size: clamp(1.35rem, 1.15rem + 0.65vw, 1.9rem);
}

p,
ul,
ol,
blockquote {
	margin-top: 0;
}

blockquote {
	border-left: 3px solid var(--bamby-gold);
	color: var(--bamby-muted);
	margin-inline: 0;
	padding: 0.35rem 0 0.35rem 1.15rem;
}

table {
	border-collapse: collapse;
	display: block;
	overflow-x: auto;
	width: 100%;
}

th,
td {
	border: 1px solid var(--bamby-line);
	padding: 0.8rem;
	vertical-align: top;
}

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

.bamby-visually-hidden,
.bamby-honeypot {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bamby-skip-link {
	background: var(--bamby-white);
	left: 1rem;
	padding: 0.7rem 1rem;
	position: fixed;
	top: -10rem;
	z-index: 100000;
}

.bamby-skip-link:focus {
	top: 1rem;
}

/* Header */
.bamby-site-header {
	background: var(--bamby-white);
	border-radius: 0 0 50px 50px;
	box-shadow: 0 2px 60px rgba(0, 0, 0, 0.55);
	left: 50%;
	max-width: 1280px;
	overflow: hidden;
	position: fixed;
	top: 0;
	transform: translateX(-50%);
	width: 90%;
	z-index: 9999;
}

.bamby-header-top {
	background: var(--bamby-ink);
	color: var(--bamby-white);
}

.bamby-header-inner {
	align-items: center;
	display: grid;
	gap: var(--bamby-sm);
	margin-inline: auto;
	max-width: none;
	padding-inline: clamp(1.2rem, 3.5vw, 3.7rem);
	width: 100%;
}

.bamby-header-inner--top {
	grid-template-columns: 1fr auto 1fr;
	min-height: 62px;
}

.bamby-header-inner--main {
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: center;
	min-height: 86px;
	padding-block: 8px 9px;
}

.bamby-logo img {
	height: 54px;
	object-fit: contain;
	transition: height 180ms ease;
	width: auto;
}

.is-condensed .bamby-logo img {
	height: 48px;
}

.bamby-socials,
.bamby-header-actions {
	align-items: center;
	display: flex;
	gap: 0.85rem;
}

.bamby-socials a {
	color: currentColor;
	display: inline-grid;
	place-items: center;
}

.bamby-socials svg {
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.bamby-header-actions {
	justify-content: flex-end;
}

.bamby-header-action {
	color: var(--bamby-white);
	font-size: 0.75rem;
	font-weight: 650;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.bamby-header-action:hover,
.bamby-header-action:focus-visible {
	color: #e8c9a8;
}

.bamby-cart-link {
	align-items: center;
	display: flex;
	gap: 0.35rem;
}

.bamby-cart-icon {
	display: none;
}

.bamby-cart-count {
	background: var(--bamby-gold);
	border-radius: 999px;
	color: var(--bamby-white);
	display: inline-grid;
	font-size: 0.65rem;
	height: 1.35rem;
	place-items: center;
	width: 1.35rem;
}

.bamby-primary-nav,
.bamby-menu {
	min-width: 0;
}

.bamby-menu {
	align-items: center;
	display: flex;
	gap: clamp(1rem, 2.3vw, 2.25rem);
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bamby-menu a {
	color: var(--bamby-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	text-decoration: none;
}

.bamby-menu .current-menu-item > a,
.bamby-menu a:hover,
.bamby-menu a:focus-visible {
	color: var(--bamby-gold-dark);
}

.bamby-menu-toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: none;
	padding: 0.65rem;
}

.bamby-menu-toggle > span:not(.bamby-visually-hidden) {
	background: var(--bamby-ink);
	display: block;
	height: 2px;
	margin: 4px 0;
	width: 24px;
}

.bamby-header-search form,
.bamby-header-search .bamby-live-product-search {
	margin: 0;
}

.bamby-header-search {
	margin: 0 auto;
	max-width: 515px;
	width: 100%;
}

.bamby-header-search input[type="search"],
.bamby-header-search input[type="text"] {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 4px 0 0 4px;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
	font-size: 0.9rem;
	min-height: 35px;
	padding: 0.55rem 1rem;
	width: 100%;
}

.bamby-primary-nav {
	margin-top: 3px;
}

body:not(.home) #page {
	padding-top: 120px;
}

/* GeneratePress shell reset */
#page.site,
.site.grid-container,
.site-content,
.content-area,
.site-main,
.inside-article {
	max-width: none;
	width: 100%;
}

.site-content {
	display: block;
	padding: 0;
}

.site-main,
.site-main .page,
.site-main .post,
.inside-article,
.entry-content {
	margin: 0;
}

.inside-article {
	background: transparent;
	padding: 0;
}

.separate-containers .site-main,
.separate-containers .inside-article {
	margin: 0;
	padding: 0;
}

.entry-content:not(:first-child) {
	margin-top: 0;
}

.site-main > article:not(.page),
.site-main > .page-header,
.site-main > .woocommerce,
.woocommerce.archive .site-main,
.single-product .site-main,
.blog .site-main,
.archive:not(.woocommerce) .site-main,
.single-post .site-main,
.search .site-main {
	margin-inline: auto;
	max-width: var(--bamby-content);
	padding: var(--bamby-xl) var(--bamby-sm);
}

/* Converted page system */
.bamby-section {
	background-position: center;
	background-repeat: no-repeat;
	padding: var(--bamby-xl) 0;
	position: relative;
}

.bamby-section:nth-of-type(even) {
	background-color: var(--bamby-sand);
}

.bamby-row {
	margin-inline: auto;
	max-width: var(--bamby-content);
	padding-inline: var(--bamby-sm);
	width: 100%;
}

.bamby-row + .bamby-row {
	margin-top: var(--bamby-lg);
}

.bamby-grid {
	align-items: stretch;
	display: grid;
	gap: var(--bamby-md);
}

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

.bamby-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.bamby-grid--5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bamby-column {
	min-width: 0;
}

.bamby-rich-text > :last-child,
.bamby-card__content > :last-child {
	margin-bottom: 0;
}

.bamby-rich-text:has(> h1:first-child),
.bamby-rich-text:has(> h2:first-child) {
	margin-inline: auto;
	max-width: 950px;
}

.bamby-rich-text > h1:first-child,
.bamby-rich-text > h2:first-child,
.bamby-page-heading,
.bamby-section--commerce > .bamby-row > h1,
.bamby-section--account > .bamby-row > h1 {
	text-align: center;
}

.bamby-media {
	margin: 0;
}

.bamby-media img,
.bamby-card > img {
	border-radius: var(--bamby-radius);
	height: auto;
	object-fit: cover;
	width: 100%;
}

.bamby-card {
	background: var(--bamby-white);
	border: 1px solid var(--bamby-line);
	border-radius: var(--bamby-radius);
	box-shadow: 0 12px 35px rgba(17, 17, 17, 0.06);
	height: 100%;
	overflow: hidden;
}

.bamby-card > img {
	aspect-ratio: 4 / 3;
	border-radius: 0;
}

.bamby-card__content {
	padding: var(--bamby-md);
}

.bamby-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: var(--bamby-md) 0 0;
}

.bamby-actions--center {
	justify-content: center;
}

.bamby-button,
button.bamby-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
	align-items: center;
	background: var(--bamby-ink);
	border: 1px solid var(--bamby-ink);
	border-radius: 999px;
	color: var(--bamby-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.08em;
	min-height: 46px;
	padding: 0.75rem 1.35rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.bamby-button:hover,
.bamby-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover {
	background: var(--bamby-gold-dark);
	border-color: var(--bamby-gold-dark);
	color: var(--bamby-white);
	transform: translateY(-1px);
}

.bamby-button--secondary {
	background: transparent;
	color: var(--bamby-ink);
}

.bamby-divider {
	border: 0;
	border-top: 1px solid var(--bamby-line);
	margin: var(--bamby-lg) 0;
}

.bamby-video {
	background: #000;
	border-radius: var(--bamby-radius);
	overflow: hidden;
	position: relative;
}

.bamby-video iframe {
	aspect-ratio: 16 / 9;
	border: 0;
	height: auto;
	width: 100%;
}

.bamby-video video {
	height: auto;
	max-height: calc(100vh - 110px);
	object-fit: cover;
	width: 100%;
}

.bamby-section--desktop-tablet-header-video,
.bamby-section--mobile-header-video {
	background: #000;
	margin-left: calc(50% - 50vw);
	min-height: 100vh;
	padding: 0;
	width: 100vw;
}

.bamby-section--desktop-tablet-header-video .bamby-video,
.bamby-section--mobile-header-video .bamby-video {
	border-radius: 0;
}

.bamby-section--desktop-tablet-header-video .bamby-video,
.bamby-section--mobile-header-video .bamby-video,
.bamby-section--desktop-tablet-header-video video,
.bamby-section--mobile-header-video video {
	height: 100vh;
	max-height: none;
	width: 100%;
}

.bamby-section--desktop-tablet-header-video video,
.bamby-section--mobile-header-video video {
	object-fit: cover;
}

@media (min-width: 768px) {
	.bamby-section--desktop-tablet-header-video,
	.bamby-section--desktop-tablet-header-video .bamby-video,
	.bamby-section--desktop-tablet-header-video video {
		height: 54.4vw;
		min-height: 0;
	}
}

/* Homepage: reproduce the live Divi composition without a page builder. */
.home .bamby-section--our-products-section {
	padding: 10px 0 54px;
}

.home .bamby-section--our-products-section .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.home .bamby-section--our-products-section .bamby-row + .bamby-row {
	margin-top: 0;
}

.home .bamby-section--our-products-section > .bamby-row:first-child {
	padding-top: 15px;
}

.home .bamby-section--our-products-section > .bamby-grid--1 {
	padding-block: 27px;
}

.home .bamby-section--our-products-section > .bamby-grid--1:first-child {
	padding-top: 15px;
}

.home .bamby-section--our-products-section > .bamby-grid--1 .bamby-rich-text {
	max-width: none;
	text-align: center;
	text-transform: uppercase;
}

.home .bamby-section--our-products-section h2 {
	font-size: 28px;
	letter-spacing: 0.01em;
	margin-bottom: 0.55rem;
}

.home .bamby-section--our-products-section > .bamby-grid--1 p {
	font-size: 13px;
	line-height: 1.85;
	margin-bottom: 0;
}

.home .bamby-section--our-products-section > .bamby-grid--2 {
	align-items: center;
	min-height: 377px;
	padding-bottom: 27px;
}

.home .bamby-section--our-products-section > .bamby-grid--2 .bamby-column:last-child {
	text-align: center;
}

.home .bamby-section--our-products-section > .bamby-grid--2 .bamby-media img {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	height: auto;
	margin-inline: auto;
	max-width: 338px;
	object-fit: cover;
}

.home .bamby-section--our-products-section h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
}

.home .bamby-section--our-products-section .bamby-grid--2 p {
	font-size: 14px;
	line-height: 1.65;
}

.home .bamby-section--our-products-section .bamby-actions {
	justify-content: center;
}

.home .bamby-section--our-products-section .bamby-button {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	min-height: 31px;
	padding: 0.35rem 1rem;
	text-transform: none;
}

.home .bamby-section--our-products-section .bamby-divider {
	border-top-color: #b8b8b8;
	margin: 0;
}

.home .bamby-section--our-products-section > .bamby-grid--3 {
	gap: 5.5%;
	padding-bottom: 27px;
}

.home .bamby-section--our-products-section .bamby-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.home .bamby-section--our-products-section .bamby-card > img {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin-inline: auto;
	max-width: 213px;
	object-fit: cover;
}

.home .bamby-section--our-products-section .bamby-card__content {
	font-size: 13px;
	line-height: 1.7;
	padding: 24px 0 0;
	text-align: center;
}

.home .bamby-section--our-products-section .bamby-card__content blockquote {
	border: 0;
	padding: 0;
}

.home .bamby-section--our-products-section > .bamby-grid--5 {
	gap: 3%;
}

.home .bamby-section--our-products-section > .bamby-grid--5 .bamby-card > img {
	max-width: 170px;
}

.home .bamby-section--our-products-section > .bamby-grid--5 .bamby-card__content {
	font-size: 12px;
	line-height: 1.6;
	padding-top: 16px;
}

.home .bamby-section--our-products-section > .bamby-grid--5 h3 {
	font-size: 15px;
}

.home .bamby-section--featured-products-section {
	padding: 54px 0 0;
}

.home .bamby-section--featured-products-section .bamby-row {
	max-width: 1200px;
	padding: 0 0 27px;
	width: calc(100% - 110px);
}

.home .bamby-section--featured-products-section h2,
.home .bamby-section--featured-products-section h3 {
	font-size: 28px;
	letter-spacing: 0.01em;
	text-align: center;
	text-transform: uppercase;
}

.home .bamby-section--featured-products-section .woocommerce ul.products {
	column-gap: 3.7%;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	row-gap: 0;
}

.home .bamby-section--featured-products-section .woocommerce ul.products li.product .onsale {
	display: none;
}

.home .bamby-section--featured-products-section .woocommerce ul.products li.product a img {
	box-shadow: none;
}

/* Collections & Products is a curated landing page on live, not a generic
   shop archive. Keep its supplied content and remove the duplicate shell. */
.post-type-archive-product .woocommerce-breadcrumb,
.post-type-archive-product .woocommerce-products-header > .woocommerce-products-header__title,
.post-type-archive-product .bamby-shop-filters,
.post-type-archive-product .woocommerce-result-count,
.post-type-archive-product .woocommerce-ordering,
.post-type-archive-product ul.products,
.post-type-archive-product .woocommerce-pagination {
	display: none !important;
}

.post-type-archive-product .woocommerce-archive-wrapper {
	max-width: none;
	width: 100%;
}

.post-type-archive-product .site-main {
	padding-block: 0;
}

.post-type-archive-product .woocommerce-products-header {
	margin: 0;
}

.post-type-archive-product .page-description {
	margin: 0;
}

.page-id-987508412 .entry-header {
	margin: 0 auto;
	max-width: 1080px;
	padding: 24px 0 20px;
	width: 80%;
}

.page-id-987508412 .entry-title {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 30px;
	margin: 0;
	text-align: left;
	text-transform: none;
}

.post-type-archive-product .bamby-section--our-products-section-desktop {
	padding: 76px 0 54px;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-row + .bamby-row {
	margin-top: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--1 {
	padding-block: 27px;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--1:first-child {
	padding-top: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--1 .bamby-rich-text {
	max-width: none;
	text-align: center;
	text-transform: uppercase;
}

.post-type-archive-product .bamby-section--our-products-section-desktop h1 {
	font-size: 32px;
	letter-spacing: 0.01em;
	margin-bottom: 0.35rem;
	text-transform: uppercase;
}

.post-type-archive-product .bamby-section--our-products-section-desktop h2 {
	font-size: 26px;
	letter-spacing: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--1 p {
	font-size: 13px;
	line-height: 1.9;
	margin-bottom: 0.7rem;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--2 {
	align-items: center;
	gap: 5.5%;
	padding-bottom: 27px;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--2 .bamby-media img {
	border-radius: 15px;
	box-shadow: 0 12px 13px -7px #000;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--2 p {
	font-size: 14px;
	line-height: 1.7;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--2 .bamby-actions {
	justify-content: flex-end;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-button {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	min-height: 31px;
	padding: 0.35rem 1rem;
	text-transform: uppercase;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-divider {
	border-top-color: #b8b8b8;
	margin: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--5 {
	gap: 5.5%;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-card > img {
	aspect-ratio: 3 / 2;
	border-radius: 0;
	object-fit: contain;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-card__content {
	font-size: 13px;
	line-height: 1.65;
	padding: 22px 0 0;
	text-align: center;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-card__content h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-actions {
	justify-content: center;
}

@media (min-width: 768px) {
	body.post-type-archive-product.woocommerce.archive .site-main {
		padding-block: 0;
	}

	body.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-row {
		width: 95%;
	}
}

/* Specialised services */
.bamby-section--services-section-desktop-header {
	padding: 78px 0 86px;
}

.bamby-section--services-section-desktop-header .bamby-row,
.bamby-section--our-services-and-fees-section .bamby-row,
.bamby-section--our-services-section-desktop .bamby-row,
.bamby-section--let-s-bring-it-to-life-section .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.bamby-section--services-section-desktop-header .bamby-grid--2 {
	align-items: center;
	gap: 5.5%;
}

.bamby-section--services-section-desktop-header .bamby-media img {
	border-radius: 15px;
	box-shadow: 0 12px 13px -7px #000;
	height: 380px;
	object-fit: cover;
}

.bamby-section--services-section-desktop-header h1 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0;
	text-align: left;
}

.bamby-section--services-section-desktop-header .bamby-rich-text > h1:first-child {
	text-align: left;
}

.bamby-section--services-section-desktop-header p {
	font-size: 14px;
	line-height: 1.75;
}

.bamby-section--services-section-desktop-header .bamby-actions {
	justify-content: flex-end;
}

.bamby-section--services-section-desktop-header .bamby-button,
.bamby-section--our-services-section-desktop .bamby-button,
.bamby-section--let-s-bring-it-to-life-section .bamby-button {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	min-height: 39px;
	padding: 0.45rem 1.15rem;
	text-transform: none;
}

.bamby-section--our-services-and-fees-section {
	padding: 27px 0 54px;
}

.bamby-section--our-services-and-fees-section .bamby-rich-text {
	max-width: none;
	text-align: center;
}

.bamby-section--our-services-and-fees-section h1,
.bamby-section--our-services-and-fees-section h2 {
	font-size: 30px;
	letter-spacing: 0.01em;
	margin-bottom: 0.35rem;
	text-transform: none;
}

.bamby-section--our-services-and-fees-section .bamby-rich-text p {
	font-size: 13px;
	line-height: 1.7;
}

.bamby-section--our-services-and-fees-section .woocommerce ul.products {
	column-gap: 3.8%;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	row-gap: 0;
}

.bamby-section--our-services-and-fees-section .woocommerce ul.products li.product a img {
	box-shadow: 0 12px 13px -7px #000;
}

.bamby-section--our-services-and-fees-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.1;
}

.bamby-products--hide-price .price,
.bamby-products--hide-price .onsale {
	display: none !important;
}

.bamby-section--our-services-section-desktop {
	padding: 80px 0 54px;
}

.bamby-section--our-services-section-desktop .bamby-row + .bamby-row {
	margin-top: 28px;
}

.bamby-section--our-services-section-desktop > .bamby-grid--1 .bamby-rich-text {
	max-width: none;
	text-align: center;
}

.bamby-section--our-services-section-desktop h2 {
	font-size: 48px;
	font-style: italic;
	font-weight: 700;
}

.bamby-section--our-services-section-desktop > .bamby-grid--1 p {
	font-size: 18px;
	line-height: 1.8;
}

.bamby-section--our-services-section-desktop > .bamby-grid--3 {
	gap: 5.5%;
}

.bamby-section--our-services-section-desktop .bamby-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.bamby-section--our-services-section-desktop .bamby-card > img {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin-inline: auto;
	max-width: 213px;
	object-fit: cover;
}

.bamby-section--our-services-section-desktop .bamby-card__content {
	font-size: 13px;
	line-height: 1.75;
	padding: 24px 0 0;
	text-align: center;
}

.bamby-section--our-services-section-desktop .bamby-card__content h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
}

.bamby-section--our-services-section-desktop .bamby-card__content blockquote {
	border-left-color: #d7a22a;
	font-size: 13px;
	margin-top: 1.3rem;
}

.bamby-section--our-services-section-desktop .bamby-actions {
	justify-content: center;
}

.bamby-section--let-s-bring-it-to-life-section {
	min-height: 548px;
	padding: 54px 0;
}

.bamby-section--let-s-bring-it-to-life-section .bamby-row + .bamby-row {
	margin-top: 27px;
}

.bamby-section--let-s-bring-it-to-life-section h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 400;
}

.bamby-section--let-s-bring-it-to-life-section p {
	font-size: 13px;
	line-height: 1.75;
}

.bamby-section--let-s-bring-it-to-life-section .bamby-grid--5 {
	gap: 3%;
}

.bamby-section--let-s-bring-it-to-life-section h4 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
}

/* Contact & bookings */
.bamby-section--contact-form-map {
	padding: 81px 0 54px;
}

.bamby-section--contact-form-map .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.bamby-section--contact-form-map > .bamby-row:first-child .bamby-rich-text {
	max-width: none;
	text-align: center;
}

.bamby-section--contact-form-map > .bamby-row:first-child h1 {
	font-size: 32px;
	letter-spacing: 0.08em;
	line-height: 1.4;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.bamby-section--contact-form-map .bamby-embed iframe {
	min-height: 800px;
}

.bamby-section--contact-form-map > .bamby-grid--2 {
	gap: 5.5%;
	margin-top: 104px;
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-card__content {
	padding: 0 0 0 2.4rem;
	position: relative;
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-column:first-child .bamby-card__content::before,
.bamby-section--contact-form-map > .bamby-grid--2 .bamby-column:last-child .bamby-card__content::before {
	font-size: 1.15rem;
	left: 0;
	position: absolute;
	top: 0;
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-column:first-child .bamby-card__content::before {
	content: "📍";
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-column:last-child .bamby-card__content::before {
	content: "☎";
}

.bamby-section--contact-form-map > .bamby-grid--2 h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.bamby-section--contact-form-map > .bamby-grid--2 p {
	font-size: 14px;
}

.bamby-section--contact-form-map > .bamby-grid--1:last-child {
	margin-top: 124px;
}

.bamby-section--contact-form-map > .bamby-grid--1:last-child .bamby-rich-text {
	max-width: none;
}

.bamby-section--contact-form-map > .bamby-grid--1:last-child h2 {
	font-size: 30px;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 32px;
}

.bamby-section--contact-form-map .bamby-contact-form-title {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 20px;
	text-align: left;
}

.bamby-section--contact-form-map .bamby-form {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-top: 0;
	padding: 0;
}

.bamby-section--contact-form-map .bamby-form label:not([for="bamby-company-website"]) {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bamby-section--contact-form-map .bamby-form-grid {
	gap: 32px;
}

.bamby-section--contact-form-map .bamby-form p {
	margin-bottom: 32px;
}

.bamby-section--contact-form-map .bamby-form input,
.bamby-section--contact-form-map .bamby-form textarea {
	background: #f4f4f4;
	border: 0;
	border-radius: 15px;
	box-sizing: border-box;
	font-size: 14px;
	height: 51px;
	min-height: 51px;
	padding: 16px;
}

.bamby-section--contact-form-map .bamby-form textarea {
	height: 150px;
	min-height: 150px;
}

.bamby-section--contact-form-map .bamby-form > p:last-child {
	margin-bottom: 0;
	text-align: right;
}

.bamby-section--contact-form-map .bamby-form button {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	min-height: 40px;
	padding: 0.4rem 1.1rem;
	text-transform: none;
}

/* Instant project estimate */
.page-id-987514640 .entry-content > .bamby-section {
	padding: 0;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row + .bamby-row {
	margin-top: 0;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child {
	gap: 5.55%;
	padding: 60px 0 27px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child > .bamby-column:first-child > div {
	aspect-ratio: 4 / 3;
	border-radius: 30px;
	overflow: hidden;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child iframe {
	aspect-ratio: auto;
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child .bamby-video {
	height: 100%;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child h3,
.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.25;
	margin-bottom: 12px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child p,
.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child p {
	font-size: 14px;
	line-height: 1.7;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child .bamby-rich-text p {
	margin-bottom: 16px;
}

.page-id-987514640 .bamby-accordion {
	border: 1px solid #e3e3e3;
}

.page-id-987514640 .bamby-accordion__item {
	background: #f6f6f6;
	border-bottom: 1px solid #dfdfdf;
}

.page-id-987514640 .bamby-accordion__item:last-child {
	border-bottom: 0;
}

.page-id-987514640 .bamby-accordion__item summary {
	align-items: center;
	display: flex;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	justify-content: space-between;
	list-style: none;
	box-sizing: border-box;
	height: 55px;
	min-height: 55px;
	padding: 14px 20px;
}

.page-id-987514640 .bamby-accordion__item summary::-webkit-details-marker {
	display: none;
}

.page-id-987514640 .bamby-accordion__item summary::after {
	color: #bdbdbd;
	content: "⊕";
	font-size: 17px;
}

.page-id-987514640 .bamby-accordion__item[open] summary::after {
	content: "⊖";
}

.page-id-987514640 .bamby-accordion__content {
	background: #fff;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.7;
	padding: 18px 20px;
}

.page-id-987514640 .bamby-accordion__content p {
	margin-bottom: 0;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child .bamby-accordion__item:first-child summary {
	display: none;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child .bamby-accordion__item:first-child .bamby-accordion__content {
	min-height: 87px;
	padding: 20px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:nth-child(2) {
	padding: 27px 0;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:nth-child(2) h2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
	margin-bottom: 29px;
	text-align: center;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:nth-child(2) .bamby-accordion__item summary {
	height: 55px;
	min-height: 55px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:nth-child(2) .bamby-accordion__content {
	padding: 7px 20px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child {
	align-items: start;
	gap: 5.55%;
	padding: 27px 0 54px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child .bamby-media {
	margin-inline: auto;
	width: 80%;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child .bamby-media img {
	aspect-ratio: 1 / 1;
	border-radius: 15px;
	box-shadow: 0 12px 24px rgba(17, 17, 17, 0.18);
	object-fit: cover;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child .bamby-actions {
	margin-top: 28px;
	text-align: right;
}

/* Availability viewer */
.page-id-987514686 .entry-content > .bamby-section {
	padding: 0 0 55px;
}

.page-id-987514686 .entry-content > .bamby-section::after {
	background: #000;
	bottom: 0;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
	content: "";
	height: 100px;
	left: 0;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	position: relative;
	width: 80%;
	z-index: 1;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row + .bamby-row {
	margin-top: 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child {
	padding: 34px 0 22px;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child .bamby-rich-text {
	max-width: none;
	text-align: center;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	line-height: 27px;
	margin: 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child p {
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child .bamby-divider {
	margin: 29px 0 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:nth-child(2) {
	gap: 5.55%;
	padding: 27px 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:nth-child(2) .bamby-rich-text {
	margin-bottom: 30px;
	max-width: none;
	text-align: center;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:nth-child(2) h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
	margin: 0;
}

.page-id-987514686 .bamby-embed {
	border: 1px solid #e0e0e0;
	border-radius: 15px;
	height: 1008px;
	overflow: hidden;
}

.page-id-987514686 .bamby-embed iframe {
	display: block;
	height: 1000px;
	min-height: 1000px;
	width: 100%;
}

.page-id-987514686 .bamby-embed p:empty {
	display: none;
	margin: 0;
}

/* Customer service schedulers */
body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section {
	padding: 24px 0 54px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row + .bamby-row {
	margin-top: 0;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child {
	padding-top: 27px;
}

.page-id-987509860 .entry-content > .bamby-section > .bamby-row:first-child {
	padding-bottom: 47px;
}

.page-id-987510959 .entry-content > .bamby-section > .bamby-row:first-child {
	padding-bottom: 71px;
}

.page-id-987519795 .entry-content > .bamby-section > .bamby-row:first-child {
	padding-bottom: 117px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child .bamby-rich-text {
	max-width: none;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child .bamby-rich-text:first-child {
	text-align: center;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child h1 {
	color: #a77b51;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 40px;
	margin: 0 0 26px;
	text-align: center;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child p,
body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child li {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child p {
	line-height: 23.8px;
	margin-bottom: 0;
	padding-bottom: 14px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child li {
	line-height: 26px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child h5 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child table td {
	padding: 0 24px;
	vertical-align: top;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child table td p {
	margin: 0;
	padding-bottom: 0;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child table td p img:not(.emoji) {
	aspect-ratio: 1 / 1;
	height: auto;
	max-width: none;
	object-fit: cover;
	width: 100%;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:last-child {
	padding: 27px 0 34px;
}

body:is(.page-id-987509860, .page-id-987510959) .entry-content > .bamby-section > .bamby-row:last-child iframe {
	height: 600px;
	min-height: 600px;
}

.page-id-987519795 .entry-content > .bamby-section > .bamby-row:last-child iframe {
	height: 900px;
	min-height: 900px;
}

/* WooCommerce customer account */
.bamby-section--account {
	padding: 24px 0 54px;
}

.bamby-section--account > .bamby-row {
	max-width: 1080px;
	padding: 27px 0;
	width: 80%;
}

.bamby-section--account > .bamby-row > h1 {
	color: #111;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 40px;
	margin: 0 0 44px;
	text-align: center;
}

.bamby-section--account .woocommerce {
	min-height: 308px;
}

.bamby-section--account .woocommerce-MyAccount-navigation {
	min-height: 308px;
}

.bamby-section--account-arrivals {
	box-sizing: border-box;
	height: 534px;
	padding: 81px 0 54px;
}

.bamby-section--account-arrivals > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.bamby-section--account-arrivals h1 {
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 40px;
	margin: 0 0 34px;
	text-align: center;
}

.bamby-section--account-arrivals .woocommerce ul.products {
	display: grid;
	gap: 3%;
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.bamby-section--account-arrivals .woocommerce ul.products li.product {
	margin: 0;
	width: auto;
}

.bamby-section--account-arrivals .woocommerce ul.products li.product img {
	aspect-ratio: 1 / 1;
	border-radius: 15px;
	box-shadow: 0 10px 20px rgba(17, 17, 17, 0.14);
	object-fit: cover;
}

.bamby-section--account-arrivals .bamby-actions {
	margin-top: 24px;
}

/* Customer registration */
.page-id-987510124 .entry-content > .bamby-section {
	padding: 24px 0 54px;
}

.page-id-987510124 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding: 27px 0 26px;
	width: 80%;
}

.page-id-987510124 .entry-content > .bamby-section .bamby-rich-text {
	max-width: none;
}

.page-id-987510124 .entry-content > .bamby-section .bamby-rich-text:first-child {
	margin-bottom: 30px;
	text-align: center;
}

.page-id-987510124 .entry-content > .bamby-section h1 {
	color: #a77b51;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 30px;
	margin: 0;
	padding-bottom: 10px;
	text-align: center;
}

.page-id-987510124 .entry-content > .bamby-section h4 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 18px;
	margin: 0;
	padding-bottom: 10px;
	text-align: center;
}

.page-id-987510124 .entry-content > .bamby-section form.register {
	margin-inline: auto;
	max-width: 960px;
}

/* Password recovery */
.page-id-987518435 .entry-content > .bamby-section {
	padding: 0 0 81px;
}

.page-id-987518435 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding: 80px 0 0;
	width: 80%;
}

.page-id-987518435 .entry-content > .bamby-section .bamby-rich-text {
	max-width: none;
}

.page-id-987518435 form.ur_lost_reset_password {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 23.8px;
	margin-inline: auto;
	min-height: 320px;
}

.page-id-987518435 form.ur_lost_reset_password .ur-lost-password-title {
	padding-bottom: 32px;
}

.page-id-987518435 form.ur_lost_reset_password .user-registration-form-row--first {
	padding-bottom: 14px;
}

.page-id-987518435 form.ur_lost_reset_password p:empty {
	margin-bottom: 0;
	padding-bottom: 14px;
}

/* Registration confirmation */
.page-id-987515355 .entry-content > .bamby-section {
	padding: 24px 0 54px;
}

.page-id-987515355 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding: 27px 0;
	width: 80%;
}

.page-id-987515355 .entry-content > .bamby-section .bamby-rich-text {
	max-width: none;
}

.page-id-987515355 .entry-content > .bamby-section h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 22px;
	margin: 0;
	padding-bottom: 10px;
}

.page-id-987515355 .entry-content > .bamby-section p {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 23.8px;
	margin: 0;
	padding-bottom: 14px;
}

.page-id-987515355 .entry-content > .bamby-section p:last-child {
	padding-bottom: 0;
}

/* Bamby Crew */
.page-id-987508506 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.page-id-987508506 .bamby-section--header-video {
	box-sizing: border-box;
	height: 864px;
	padding: 71px 0 0;
}

.page-id-987508506 .bamby-section--header-video > .bamby-row:first-child {
	grid-template-columns: 3fr 1fr;
}

.page-id-987508506 .bamby-section--header-video > .bamby-row + .bamby-row {
	grid-template-columns: 1fr 3fr;
	margin-top: 52px;
}

.page-id-987508506 .bamby-section--header-video h1 {
	color: #a77b51;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 48px;
	margin: 0 0 10px;
	text-align: left !important;
	text-transform: none;
}

.page-id-987508506 .bamby-section--header-video h3 {
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 25px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 37.5px;
	margin: 0;
	text-align: left !important;
	text-transform: none;
}

.page-id-987508506 .bamby-section--header-video .bamby-video,
.page-id-987508506 .bamby-section--header-video .bamby-video iframe {
	border-radius: 8px;
	height: 100%;
}

.page-id-987508506 .bamby-section--header-video .bamby-video iframe {
	aspect-ratio: 16 / 9;
}

.page-id-987508506 .bamby-section--services {
	background: #000;
	box-sizing: border-box;
	color: #fff;
	height: 617px;
	padding: 110px 0 0;
}

.page-id-987508506 .bamby-section--services > .bamby-row + .bamby-row {
	margin-top: 96px;
}

.page-id-987508506 .bamby-section--services h4,
.page-id-987508506 .bamby-section--about h4 {
	font-family: "Work Sans", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3.25px;
	line-height: 18.2px;
	margin: 0;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.page-id-987508506 .bamby-section--services h2,
.page-id-987508506 .bamby-section--about h2 {
	font-family: "Work Sans", Helvetica, Arial, sans-serif;
	font-size: 52px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 62.4px;
	margin: 0;
	max-width: 800px;
	text-align: left;
}

.page-id-987508506 .bamby-section--services > .bamby-row:first-child .bamby-rich-text,
.page-id-987508506 .bamby-section--about > .bamby-row:first-child .bamby-rich-text {
	margin: 0;
	max-width: none;
}

.page-id-987508506 .bamby-section--services h4,
.page-id-987508506 .bamby-section--services h2 {
	color: #fff;
}

.page-id-987508506 .bamby-section--services .bamby-grid--4 .bamby-media {
	display: none;
}

.page-id-987508506 .bamby-section--services h5 {
	color: #fff;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
	margin: 0 0 16px;
}

.page-id-987508506 .bamby-section--services > .bamby-grid--4 {
	gap: 6%;
}

.page-id-987508506 .bamby-section--services > .bamby-grid--4 .bamby-rich-text {
	color: #bdbdbd;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

.page-id-987508506 .bamby-section--about {
	background: #f6f6f6;
	box-sizing: border-box;
	height: 723px;
	padding: 91px 0 0;
}

.page-id-987508506 .bamby-section--about > .bamby-row + .bamby-row {
	margin-top: 64px;
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 {
	gap: 5.5%;
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column {
	background-position: center;
	background-size: cover;
	border-radius: 40px;
	min-height: 270px;
	overflow: hidden;
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column:first-child {
	background: #fff;
	border-radius: 0;
	padding: 40px;
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column:nth-child(2) {
	background-image: url('/wp-content/uploads/2024/05/interior-design.png');
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column:nth-child(3) {
	background-image: url('/wp-content/uploads/2024/05/Bamby-Crew-while-working-for-project.png');
}

.page-id-987508506 .bamby-section--about p {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

/* Privacy and terms */
body:is(.page-id-987508509, .page-id-987508508) .entry-content > .bamby-section--section {
	padding: 24px 0 52px;
}

body:is(.page-id-987508509, .page-id-987508508) .entry-content > .bamby-section--section > .bamby-row {
	max-width: 1080px;
	padding: 27px 0;
	width: 80%;
}

body:is(.page-id-987508509, .page-id-987508508) .entry-content > .bamby-section--section .bamby-rich-text {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 23.8px;
	max-width: none;
}

body:is(.page-id-987508509, .page-id-987508508) .entry-content > .bamby-section--section p {
	font-size: 14px;
	line-height: 23.8px;
	margin: 0;
	padding-bottom: 14px;
}

.page-id-987508508 .entry-content > .bamby-section--section > .bamby-row {
	padding-top: 23px;
}

.page-id-987508508 .entry-content > .bamby-section--section h1 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 32px;
	margin: 0;
	padding-bottom: 10px;
	text-align: center;
}

.page-id-987508508 .entry-content > .bamby-section--section h2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	margin: 0;
	padding-bottom: 10px;
	text-align: left;
}

.page-id-987508508 .entry-content > .bamby-section--section h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 22px;
	margin: 0;
	padding-bottom: 10px;
}

/* Divi renders this legal copy as continuous text nodes between headings. */
.page-id-987508508 .entry-content > .bamby-section--section p {
	display: contents;
}

.page-id-987508508 .entry-content > .bamby-section--section br {
	display: none;
}

.page-id-987508508 .entry-content > .bamby-section--section hr {
	margin: 0;
}

.page-id-987508508 .entry-content > .bamby-section--section {
	padding-bottom: 78px;
}

/* Blog archive */
body.blog #primary.bamby-blog-index {
	margin-inline: auto;
	max-width: 1080px;
	padding: 0 0 54px;
	width: 80%;
}

.bamby-blog-column {
	width: 73.6%;
}

body.blog .bamby-blog-card {
	margin: 0 0 60px;
}

.bamby-blog-card__image {
	display: block;
	margin-bottom: 30px;
}

.bamby-blog-card__image img {
	aspect-ratio: auto;
	border-radius: 0;
	contain-intrinsic-size: none;
	display: block;
	height: auto;
	width: 100%;
}

/* Preserve the same feature-image proportions generated by Divi. */
.bamby-blog-card:nth-of-type(1) .bamby-blog-card__image img {
	aspect-ratio: 1000 / 675;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(2) .bamby-blog-card__image img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(3) .bamby-blog-card__image img {
	aspect-ratio: 1024 / 675;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(4) .bamby-blog-card__image img {
	aspect-ratio: 1080 / 579;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(5) .bamby-blog-card__image img {
	aspect-ratio: 710 / 675;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(6) .bamby-blog-card__image img,
.bamby-blog-card:nth-of-type(7) .bamby-blog-card__image img {
	aspect-ratio: 1080 / 754;
	object-fit: cover;
}

.bamby-blog-card__title {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	margin: 0;
	padding-bottom: 10px;
}

.bamby-blog-card__title a {
	color: #000;
	text-decoration: none;
}

.bamby-blog-card__meta,
.bamby-blog-card__excerpt {
	color: #666;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
}

.bamby-blog-card__meta {
	margin: 0 0 6px;
	padding-bottom: 15px;
}

.bamby-blog-card__excerpt {
	margin: 0;
}

/* Calculator workspace */
.page-id-987520036 .entry-content > .bamby-section {
	box-sizing: border-box;
	padding: 78px 0 75px;
}

.page-id-987520036 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding: 0;
	width: 80%;
}

/* Single product layout */
body.single-product .site-main {
	max-width: none;
	padding: 0;
	width: 100%;
}

body.single-product .site-main > article.product {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: 1080px;
	padding: 82px 0 54px;
	width: 80%;
}

body.single-product .site-main > .woocommerce {
	margin-inline: auto;
	max-width: 1080px;
	padding: 82px 0 54px;
	width: 80%;
}

body.single-product div.product {
	column-gap: 5.5%;
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 1.904fr);
}

body.single-product div.product .woocommerce-product-gallery,
body.single-product div.product .summary {
	float: none;
	margin: 0;
	width: 100% !important;
}

body.single-product div.product .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 1;
}

body.single-product .bamby-thumb-carousel {
	margin-top: 10px;
	position: relative;
}

body.single-product .bamby-thumb-carousel .flex-control-thumbs {
	align-items: flex-start;
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 10px;
	margin: 0 !important;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	width: 100%;
}

body.single-product .bamby-thumb-carousel .flex-control-thumbs::-webkit-scrollbar {
	display: none;
}

body.single-product .bamby-thumb-carousel .flex-control-thumbs li {
	display: flex !important;
	flex: 0 0 17.5% !important;
	flex-direction: column;
	float: none !important;
	margin: 0 !important;
	max-width: 17.5% !important;
	scroll-snap-align: start;
	width: 17.5% !important;
}

body.single-product .bamby-thumb-carousel .flex-control-thumbs img {
	aspect-ratio: 1;
	display: block;
	flex: 0 0 auto;
	height: auto;
	object-fit: cover;
	width: 100%;
}

body.single-product .bamby-thumb-carousel__label {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 6pt;
	font-weight: 500;
	height: 20px;
	line-height: 10px;
	margin-top: 4px;
	overflow: hidden;
	overflow-wrap: anywhere;
	text-align: center;
	width: 100%;
}

body.single-product .bamby-thumb-carousel__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 50%;
	box-shadow: 0 3px 12px rgb(0 0 0 / 18%);
	color: #111;
	cursor: pointer;
	display: none;
	height: 38px;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: calc(50% - 12px);
	transform: translateY(-50%);
	transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
	width: 38px;
	z-index: 3;
}

body.single-product .bamby-thumb-carousel.is-scrollable .bamby-thumb-carousel__arrow {
	display: flex;
}

body.single-product .bamby-thumb-carousel__arrow--previous {
	left: -19px;
}

body.single-product .bamby-thumb-carousel__arrow--next {
	right: -19px;
}

body.single-product .bamby-thumb-carousel__arrow svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 18px;
}

body.single-product .bamby-thumb-carousel__arrow:hover,
body.single-product .bamby-thumb-carousel__arrow:focus-visible {
	background: #111;
	color: #fff;
}

body.single-product .bamby-thumb-carousel__arrow:disabled {
	cursor: default;
	opacity: 0.28;
}

body.single-product div.product .summary {
	grid-column: 2;
	grid-row: 1;
}

body.single-product .product_title {
	color: #000;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

body.single-product .summary .woocommerce-breadcrumb {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 23.8px;
	margin: 0 0 11px;
	padding: 0;
	text-align: center;
}

body.single-product .summary .woocommerce-product-details__short-description {
	color: #666;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 23.8px;
	margin: 30px 0 5px;
	text-align: center;
}

body.single-product .summary .woocommerce-product-details__short-description p {
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

body.single-product .summary p.price {
	color: #000 !important;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 23.8px;
	margin: 0 0 5px;
}

body.single-product .summary form.cart {
	align-items: stretch;
	border-bottom: 1px solid #eee;
	display: flex;
	gap: 22px;
	margin: 0;
	padding: 0 0 5px;
}

body.single-product .summary form.cart .quantity .qty {
	background: #f1f1f1;
	border: 1px solid #777;
	border-radius: 4px;
	font-size: 14px;
	height: 57px;
	padding: 0;
	text-align: center;
	width: 95px;
}

body.single-product .summary form.cart .single_add_to_cart_button {
	background: #000;
	border-radius: 4px;
	color: #fff;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	height: 57px;
	line-height: 23.8px;
	padding: 0 16px;
	text-transform: none;
}

body.single-product .summary .product_meta {
	display: none;
}

body.single-product div.product .woocommerce-tabs {
	border: 0;
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 92px 0 0;
	width: 64%;
}

body.single-product div.product .woocommerce-tabs ul.tabs,
body.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel > h2 {
	display: none;
}

body.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel {
	border: 0;
	color: #666;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 32px;
	margin: 0;
	padding: 0;
}

body.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel p {
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding-bottom: 16px;
}

body.single-product div.product .related.products {
	display: none;
}

/* Cart and checkout */
body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce {
	box-sizing: border-box;
	padding: 51px 0 54px;
}

body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce > .bamby-row {
	max-width: 1080px;
	padding: 0;
	width: 80%;
}

body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce h1 {
	color: #000;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 32px;
	margin: 0;
	padding: 0 0 10px;
	text-align: left;
	text-transform: none;
}

body:is(.page-id-987508413, .page-id-987508414) .bamby-section--commerce .woocommerce {
	margin-top: 28px;
}

.page-id-987508413 .entry-content > .bamby-section--commerce {
	min-height: 482px;
}

body.page-id-987508413:has(.woocommerce-cart-form) .entry-content > .bamby-section--commerce {
	min-height: 976px;
}

.page-id-987508413 .woocommerce-cart-form,
.page-id-987508413 .woocommerce table.shop_table,
.page-id-987508413 .cart-collaterals,
.page-id-987508413 .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

.page-id-987508413 .woocommerce table.shop_table {
	border: 1px solid #eee;
	border-collapse: collapse;
	border-radius: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 23.8px;
	display: table !important;
	table-layout: fixed;
}

.page-id-987508413 .woocommerce table.shop_table th,
.page-id-987508413 .woocommerce table.shop_table td {
	border-color: #eee;
	padding: 12px 8px;
	vertical-align: middle;
}

.page-id-987508413 .woocommerce table.cart .product-remove {
	width: 5%;
}

.page-id-987508413 .woocommerce table.cart .product-thumbnail {
	width: 8%;
}

.page-id-987508413 .woocommerce table.cart .product-name {
	width: 37%;
}

.page-id-987508413 .woocommerce table.cart .product-price,
.page-id-987508413 .woocommerce table.cart .product-quantity,
.page-id-987508413 .woocommerce table.cart .product-subtotal {
	width: 16.66%;
}

.page-id-987508413 .cart-collaterals .cart_totals h2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 26px;
	margin: 74px 0 20px;
	padding: 0;
}

.page-id-987508413 .woocommerce-cart-form .coupon .input-text {
	background: #f1f1f1;
	border: 0;
	font-size: 16px;
	height: 56px;
	padding: 0 14px;
	width: 150px !important;
}

.page-id-987508413 .woocommerce-cart-form button,
.page-id-987508413 .wc-proceed-to-checkout .checkout-button,
.page-id-987508413 .return-to-shop .button {
	background: #000;
	border-radius: 999px;
	color: #fff;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	text-transform: none;
}

.page-id-987508413 .woocommerce-cart-form button {
	height: 48px;
	padding: 0 20px;
}

.page-id-987508413 .wc-proceed-to-checkout .checkout-button {
	border-radius: 0;
	height: 46px;
	line-height: 46px;
	margin: 0;
	padding: 0;
	width: 100%;
}

.page-id-987508413 .wc-empty-cart-message .cart-empty,
.page-id-987508413 .cart-empty.woocommerce-info {
	align-items: center;
	background: #000;
	border: 0;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	height: 54px;
	line-height: 23.8px;
	margin: 0;
	padding: 0 14px;
}

.page-id-987508413 .cart-empty.woocommerce-info::before {
	display: none;
}

.page-id-987508413 .return-to-shop {
	margin: 36px 0 0;
}

.page-id-987508413 .return-to-shop .button {
	display: inline-flex;
	height: 49px;
	align-items: center;
	padding: 0 21px;
}

.page-id-987508414 form.checkout,
.page-id-987508414 #customer_details,
.page-id-987508414 #order_review,
.page-id-987508414 #order_review_heading {
	width: 100%;
}

.page-id-987508414 .woocommerce-form-coupon-toggle .woocommerce-info {
	align-items: center;
	background: #000;
	border: 0;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	height: 54px;
	line-height: 23.8px;
	margin: 0 0 60px;
	padding: 0 14px;
}

.page-id-987508414 .woocommerce-form-coupon-toggle .woocommerce-info::before {
	display: none;
}

.page-id-987508414 .woocommerce-form-coupon-toggle .woocommerce-info a {
	color: #fff;
}

.page-id-987508414 .woocommerce-checkout h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 31px;
	margin: 0 0 10px;
	padding: 0;
}

.page-id-987508414 .woocommerce-checkout input.input-text,
.page-id-987508414 .woocommerce-checkout select,
.page-id-987508414 .woocommerce-checkout textarea {
	background: #f1f1f1;
	border: 0;
	border-radius: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	min-height: 56px;
	padding: 15px;
}

.page-id-987508414 .woocommerce-checkout textarea {
	min-height: 106px;
}

.page-id-987508414 .woocommerce-checkout .form-row {
	margin: 0 0 14px;
	padding: 0;
}

.page-id-987508414 #payment {
	background: #f5f5f5;
	border-radius: 0;
}

.page-id-987508414 .entry-content > .bamby-section--commerce {
	padding-bottom: 81px;
}

.page-id-987508414 .woocommerce-additional-fields::before {
	content: "Additional information";
	display: block;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 31px;
	margin: 32px 0 8px;
}

@media (max-width: 767px) {
	body.single-product .site-main > .woocommerce,
	body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce > .bamby-row,
	.page-id-987520036 .entry-content > .bamby-section > .bamby-row {
		width: 80%;
	}

	body.single-product .site-main > article.product {
		padding-top: 8px;
		width: 80%;
	}

	body.single-product div.product {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product div.product .summary {
		display: contents;
	}

	body.single-product .product_title {
		font-size: 30px;
		grid-column: 1;
		grid-row: 1;
		line-height: 30px;
	}

	body.single-product .summary .woocommerce-breadcrumb {
		grid-column: 1;
		grid-row: 2;
		margin: 7px 0 0;
	}

	body.single-product .summary .woocommerce-product-details__short-description {
		grid-column: 1;
		grid-row: 3;
		margin: 10px 0 0;
	}

	body.single-product div.product .woocommerce-product-gallery {
		grid-column: 1;
		grid-row: 4;
		margin-top: 33px;
	}

	body.single-product .bamby-thumb-carousel__arrow {
		height: 32px;
		width: 32px;
	}

	body.single-product .bamby-thumb-carousel__arrow--previous {
		left: -16px;
	}

	body.single-product .bamby-thumb-carousel__arrow--next {
		right: -16px;
	}

	body.single-product .summary p.price {
		grid-column: 1;
		grid-row: 5;
		margin-top: 30px;
	}

	body.single-product .summary form.cart {
		grid-column: 1;
		grid-row: 6;
		padding-bottom: 0;
	}

	body.single-product div.product .woocommerce-tabs {
		grid-column: 1;
		grid-row: 7;
		margin-top: 30px;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs ul.tabs {
		border: 1px solid #eee;
		display: block;
		margin: 0 0 20px;
		padding: 30px 0 0;
	}

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

	body.single-product div.product .woocommerce-tabs ul.tabs li {
		background: #000;
		border: 0;
		border-radius: 0;
		display: block;
		margin: 0;
		padding: 0;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs ul.tabs li a {
		color: #fff;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 14px;
		font-weight: 500;
		padding: 8px 30px;
	}
}

.bamby-terms-list {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.35rem;
}

.bamby-terms-list li {
  margin: 0 0 0.45rem;
  padding-left: 0.2rem;
  line-height: 1.65;
}

.bamby-embed iframe {
	border: 0;
	min-height: 760px;
	width: 100%;
}

.bamby-accordion {
	border-top: 1px solid var(--bamby-line);
}

.bamby-accordion__item {
	border-bottom: 1px solid var(--bamby-line);
}

.bamby-accordion__item summary {
	cursor: pointer;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	padding: 1rem 0;
}

.bamby-accordion__content {
	padding: 0 0 1.5rem;
}

.bamby-narrow {
	max-width: var(--bamby-reading);
	text-align: center;
}

.bamby-eyebrow {
	color: var(--bamby-gold-dark);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

/* Forms */
.bamby-form {
	background: var(--bamby-white);
	border: 1px solid var(--bamby-line);
	border-radius: var(--bamby-radius);
	box-shadow: var(--bamby-shadow);
	margin-top: var(--bamby-md);
	padding: var(--bamby-md);
}

.bamby-form-grid {
	display: grid;
	gap: var(--bamby-sm);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bamby-form label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
	text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
	background: var(--bamby-white);
	border: 1px solid #b9b2aa;
	border-radius: 9px;
	color: var(--bamby-ink);
	font: inherit;
	min-height: 46px;
	padding: 0.7rem 0.8rem;
	width: 100%;
}

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

.bamby-form-message {
	border-radius: 9px;
	padding: 0.8rem 1rem;
}

.bamby-form-message--success {
	background: #e8f5ed;
	color: var(--bamby-success);
}

.bamby-form-message--error {
	background: #fff0f0;
	color: var(--bamby-error);
}

/* Blog */
.bamby-post-grid {
	display: grid;
	gap: var(--bamby-md);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bamby-post-card {
	background: var(--bamby-white);
	border: 1px solid var(--bamby-line);
	border-radius: var(--bamby-radius);
	overflow: hidden;
}

.bamby-post-card > a {
	color: inherit;
	display: block;
	height: 100%;
	text-decoration: none;
}

.bamby-post-card img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.bamby-post-card__body {
	padding: var(--bamby-md);
}

/* WooCommerce */
.woocommerce.archive .site-main {
	max-width: none;
	padding-inline: 0;
}

.woocommerce.archive .woocommerce-archive-wrapper {
	margin-inline: auto;
	max-width: 1080px;
	width: 80%;
}

.woocommerce.archive .woocommerce-products-header {
	margin-bottom: 1.6rem;
	text-align: center;
}

.woocommerce.archive .woocommerce-products-header__title {
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 26px;
	margin: 0;
	text-align: center;
	text-transform: none;
}

.page-id-987509196 .bamby-section--our-services-and-fees-section,
.page-id-987509196 .bamby-section--let-s-bring-it-to-life-section {
	background-color: #fff !important;
}

.woocommerce.archive .term-description {
	font-size: 14px;
	line-height: 1.45;
	margin-inline: auto;
	max-width: 960px;
	text-align: center;
}

.woocommerce .woocommerce-breadcrumb {
	color: var(--bamby-muted);
	font-size: 0.8rem;
}

.woocommerce ul.products {
	display: grid;
	column-gap: 5.5%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	row-gap: 3.7rem;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: transparent;
	border: 0;
	border-radius: 0;
	float: none;
	margin: 0 !important;
	overflow: visible;
	padding: 0;
	width: 100% !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	border-radius: 15px;
	box-shadow: 0 12px 13px -7px #000;
	margin: 0 0 9px;
	object-fit: cover;
	width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
	font-family: "Open Sans", Arial, sans-serif;
	margin: 0;
	text-align: center;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding: 7px 0;
}

.woocommerce ul.products li.product .price {
	color: #666;
	font-size: 14px;
	line-height: 26px;
}

.woocommerce ul.products li.product .button {
	display: none !important;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--bamby-gold-dark);
}

.woocommerce ul.products li.product .price {
	color: #666;
}

.woocommerce div.product {
	display: flow-root;
}

.woocommerce div.product div.images img {
	border-radius: var(--bamby-radius);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--bamby-white);
	border-top-color: var(--bamby-gold);
}

.bamby-shop-filters {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 2rem 0 3.7rem;
	padding: 0;
}

.bamby-section--commerce .woocommerce,
.bamby-section--account .woocommerce {
	margin-top: var(--bamby-md);
}

/* Footer */
.bamby-site-footer {
	background: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	padding: 64px 0 0;
}

.bamby-footer-grid {
	display: grid;
	column-gap: 5.5%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-inline: auto;
	max-width: 1080px;
	width: 80%;
}

.bamby-site-footer h2 {
	color: var(--bamby-white);
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 0.55rem;
}

.bamby-site-footer a {
	color: #fff;
	text-decoration: none;
}

.bamby-site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bamby-site-footer li + li {
	margin-top: 0;
}

.bamby-footer-about p {
	max-width: 560px;
}

.bamby-socials--footer {
	color: var(--bamby-white);
}

.bamby-footer-bottom {
	border-top: 0;
	font-size: 13px;
	font-weight: 500;
	margin: 54px auto 0;
	max-width: 1080px;
	padding: 0 0 25px;
	text-align: left;
	width: 80%;
}

.bamby-footer-bottom a {
	font-weight: 700;
}

.bamby-footer-bottom p {
	margin: 0;
}

@media (max-width: 1024px) {
	.bamby-grid--4,
	.bamby-grid--5,
	.woocommerce ul.products,
	.bamby-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bamby-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bamby-menu-toggle {
		display: block;
		left: 1rem;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.bamby-primary-nav {
		background: var(--bamby-white);
		box-shadow: var(--bamby-shadow);
		display: none;
		left: 0;
		padding: var(--bamby-sm);
		position: absolute;
		top: 100%;
		width: 100%;
	}

	.bamby-primary-nav.is-open {
		display: block;
	}

	.bamby-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.bamby-menu a {
		display: block;
		padding: 0.7rem;
	}

}

@media (min-width: 768px) and (max-width: 1024px) {
	.bamby-hide-tablet {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.bamby-hide-desktop {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.bamby-site-header {
		background: #fff;
		border-radius: 0 0 42px 42px;
		height: 86px;
		overflow: visible;
		width: 100%;
	}

	.bamby-header-top {
		background: transparent;
		inset: 0;
		pointer-events: none;
		position: absolute;
		z-index: 2;
	}

	.bamby-header-inner--top {
		min-height: 86px;
		padding: 0;
	}

	.bamby-socials,
	.bamby-logo,
	.bamby-phone,
	.bamby-header-actions > a:nth-child(2),
	.bamby-cart-link > span:not(.bamby-cart-icon),
	.bamby-header-search {
		display: none;
	}

	.bamby-header-actions {
		left: calc(50% - 8px);
		pointer-events: auto;
		position: absolute;
		top: 61px;
		transform: translate(-100%, -50%);
	}

	.bamby-cart-link,
	.bamby-cart-icon {
		color: #000;
		display: block;
	}

	.bamby-cart-icon svg {
		height: 22px;
		width: 22px;
	}

	.bamby-header-main,
	.bamby-header-inner--main {
		min-height: 86px;
		padding: 0;
	}

	.bamby-menu-toggle {
		left: calc(50% + 8px);
		top: 61px;
		transform: translateY(-50%);
	}

	.bamby-section--mobile-header-video,
	.bamby-section--mobile-header-video .bamby-video,
	.bamby-section--mobile-header-video video {
		height: 600px;
		min-height: 600px;
	}

	.home #page {
		padding-top: 50px;
	}

	html,
	body {
		overflow-x: hidden;
	}

	.bamby-grid--2,
	.bamby-grid--3,
	.bamby-grid--4,
	.bamby-grid--5,
	.bamby-post-grid,
	.bamby-form-grid,
	.bamby-footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.woocommerce ul.products {
		column-gap: 1rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 2.4rem;
	}

	.woocommerce.archive .woocommerce-archive-wrapper,
	.bamby-footer-grid,
	.bamby-footer-bottom {
		width: 80%;
	}

	.woocommerce.archive .woocommerce-archive-wrapper {
		margin-top: -68px;
	}

	.woocommerce.archive .woocommerce-products-header {
		padding-top: 20px;
	}

	.woocommerce.archive .woocommerce-products-header__title {
		font-size: 20px;
		line-height: 24px;
		white-space: nowrap;
	}

	.page-id-987508412 .entry-header {
		padding: 20px 0;
		width: 90%;
	}

	.woocommerce.archive .term-description {
		display: none;
	}

	.woocommerce.archive .bamby-shop-filters {
		margin: 39px 0 69px;
	}

	.woocommerce.archive .bamby-shop-filters .berocket_inline_filters {
		clear: both !important;
		float: none !important;
		width: 100% !important;
	}

	.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle {
		margin: 0;
	}

	.woocommerce.archive .woocommerce-result-count {
		font-size: 14px;
		line-height: 23.8px;
		margin-bottom: 14px;
	}

	.woocommerce.archive .woocommerce-ordering {
		float: right;
		margin: 0 0 14px;
		width: 52.63%;
	}

	.woocommerce.archive .woocommerce-ordering select {
		background: #eee;
		border: 0;
		border-radius: 0;
		font-size: 12px;
		height: 25px;
		min-height: 25px;
		padding: 2px 8px;
	}

	.woocommerce.archive ul.products {
		clear: both;
	}

	body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce {
		padding-top: 38px;
	}

	.page-id-987508413 .woocommerce-cart-form table.shop_table {
		display: block !important;
		padding: 12px 4px;
		table-layout: auto;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table thead,
	.page-id-987508413 .woocommerce-cart-form .shop_table tbody,
	.page-id-987508413 .woocommerce-cart-form .shop_table tr,
	.page-id-987508413 .woocommerce-cart-form .shop_table td {
		display: block !important;
		width: 100% !important;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table thead,
	.page-id-987508413 .woocommerce-cart-form .shop_table td.product-thumbnail {
		display: none !important;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table td.product-remove {
		padding-block: 15px;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table td.product-quantity {
		padding-block: 16px;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table td.actions {
		margin-top: 24px;
	}

	.page-id-987508413 .woocommerce-cart-form .coupon,
	.page-id-987508413 .woocommerce-cart-form .coupon .input-text,
	.page-id-987508413 .woocommerce-cart-form .coupon button,
	.page-id-987508413 .woocommerce-cart-form .actions > button {
		float: none;
		width: 100% !important;
	}

	.page-id-987508413 .woocommerce-cart-form .coupon button {
		margin-top: 10px;
	}

	body.page-id-987508413 .entry-content > .bamby-section--commerce {
		padding-bottom: 119px;
	}

	body.page-id-987508414 .entry-content > .bamby-section--commerce h1 {
		font-size: 20px;
		line-height: 28px;
		padding-bottom: 0;
	}

	.page-id-987508414 .woocommerce-form-coupon-toggle .woocommerce-info {
		display: block;
		line-height: 24px;
		min-height: 78px;
		padding: 13px 14px;
	}

	body.page-id-987508414 #customer_details {
		margin-top: 11px;
		padding-top: 8px;
	}

	.page-id-987508414 form.checkout .form-row-first,
	.page-id-987508414 form.checkout .form-row-last {
		float: none;
		width: 100%;
	}

	.page-id-987508506 .bamby-section--header-video {
		height: 619px;
		padding-top: 58px;
	}

	.page-id-987508506 .bamby-section--header-video > .bamby-row:first-child,
	.page-id-987508506 .bamby-section--header-video > .bamby-row + .bamby-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.page-id-987508506 .bamby-section--header-video > .bamby-row + .bamby-row {
		margin-top: 53px;
	}

	.page-id-987508506 .bamby-section--header-video h1 {
		font-size: 24px;
		line-height: 28.8px;
	}

	.page-id-987508506 .bamby-section--header-video h3 {
		font-size: 16px;
		line-height: 22.4px;
	}

	.page-id-987508506 .bamby-section--header-video .bamby-video,
	.page-id-987508506 .bamby-section--header-video .bamby-video iframe {
		aspect-ratio: 16 / 9;
		height: auto;
		width: 100%;
	}

	.page-id-987508506 .bamby-section--services,
	.page-id-987508506 .bamby-section--about {
		height: auto;
		padding-bottom: 70px;
	}

	.page-id-987508506 .bamby-section--services {
		padding-top: 107px;
	}

	.page-id-987508506 .bamby-section--services h2,
	.page-id-987508506 .bamby-section--about h2 {
		font-size: 20px;
		line-height: 24px;
	}

	.page-id-987508506 .bamby-section--services > .bamby-row + .bamby-row {
		margin-top: 60px;
	}

	.page-id-987508506 .bamby-section--services > .bamby-grid--4,
	.page-id-987508506 .bamby-section--about > .bamby-grid--3 {
		gap: 32px;
	}

	.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column:first-child {
		padding: 30px;
	}

	body.blog #page {
		padding-top: 58px !important;
	}

	body.blog .bamby-blog-column {
		width: 100%;
	}

	body.blog .bamby-blog-card {
		margin-bottom: 42px;
	}

	body.blog .bamby-blog-card__image img {
		aspect-ratio: 1 / 1 !important;
		object-fit: cover;
	}

	body.blog .bamby-blog-card__title {
		font-size: 16px;
		line-height: 16px;
		padding-bottom: 0;
	}

	.bamby-site-footer {
		padding-top: 44px;
	}

	.bamby-footer-grid {
		gap: 2rem;
	}

	.bamby-footer-bottom {
		margin-top: 36px;
	}

	body:not(.home) #page {
		padding-top: 132px;
	}

	.bamby-section {
		padding: var(--bamby-lg) 0;
	}

	.bamby-card {
		max-width: 560px;
		margin-inline: auto;
	}

	.bamby-embed iframe {
		min-height: 680px;
	}

	.bamby-hide-phone {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	video[autoplay] {
		display: none;
	}
}


/* Mobile header actions and product sale badge - 2026-08-15 */
body.single-product div.product > .onsale {
	align-self: start;
	grid-column: 1;
	grid-row: 1;
	inset: auto;
	justify-self: start;
	margin: 12px 0 0 12px;
	position: relative;
	z-index: 20;
}

@media (max-width: 767px) {
	.bamby-site-header,
	.bamby-header-top,
	.bamby-header-inner--top,
	.bamby-header-main,
	.bamby-header-inner--main {
		height: 86px;
		min-height: 86px;
	}

	.bamby-logo {
		display: block !important;
		left: 50%;
		pointer-events: auto;
		position: absolute;
		top: 6px;
		transform: translateX(-50%);
		z-index: 3;
	}

	.bamby-logo img,
	.is-condensed .bamby-logo img {
		filter: brightness(0);
		height: 32px;
		width: auto;
	}

	.bamby-socials {
		color: #000;
		display: flex !important;
		gap: 6px;
		pointer-events: auto;
		position: absolute;
		right: 76px;
		top: 12px;
		z-index: 4;
	}

	.bamby-socials svg {
		height: 14px;
		width: 14px;
	}

	.bamby-header-actions {
		gap: 7px;
		left: auto;
		right: 12px;
		top: 8px;
		transform: none;
		z-index: 4;
	}

	.bamby-header-actions > a[href*="/my-account/"] {
		color: #000;
		display: inline-grid !important;
		font-size: 0;
		height: 24px;
		padding: 0;
		place-items: center;
		position: relative;
		width: 24px;
	}

	.bamby-header-actions > a[href*="/my-account/"]::before {
		border: 2px solid currentColor;
		border-radius: 50%;
		content: "";
		height: 7px;
		left: 6.5px;
		position: absolute;
		top: 1px;
		width: 7px;
	}

	.bamby-header-actions > a[href*="/my-account/"]::after {
		border: 2px solid currentColor;
		border-bottom: 0;
		border-radius: 9px 9px 0 0;
		bottom: 1px;
		content: "";
		height: 8px;
		left: 2px;
		position: absolute;
		width: 16px;
	}

	.bamby-cart-link,
	.bamby-cart-icon {
		color: #000;
		display: block;
		height: 24px;
		width: 24px;
	}

	.bamby-cart-icon svg {
		height: 22px;
		width: 22px;
	}

	.bamby-menu-toggle {
		left: 50%;
		pointer-events: auto;
		top: 61px;
		transform: translate(-50%, -50%);
		z-index: 5;
	}

	.bamby-primary-nav {
		left: 0;
		max-height: calc(100vh - 86px);
		overflow-y: auto;
		pointer-events: auto;
		top: 86px;
		z-index: 6;
	}

	body.single-product div.product > .onsale {
		grid-row: 4;
		margin: 45px 0 0 12px;
	}
}


/* Keep the compact mobile header visible below the WordPress admin toolbar. */
@media (max-width: 767px) {
	body.admin-bar .bamby-site-header {
		top: 46px;
	}
}

/* Preserve logo and action spacing on 320px-wide screens. */
@media (max-width: 359px) {
	.bamby-socials {
		gap: 4px;
		right: 72px;
	}

	.bamby-socials svg {
		height: 12px;
		width: 12px;
	}
}

/* Position mobile social links on the requested left side. */
@media (max-width: 767px) {
	.bamby-socials {
		left: 14px;
		right: auto;
	}
}

@media (max-width: 359px) {
	.bamby-socials {
		left: 10px;
		right: auto;
	}
}



/* Unified product summary and customer controls - 2026-08-15 */
:root {
	--bamby-control-height: 44px;
	--bamby-control-radius: 10px;
}

/* Keep customer-facing text buttons consistent without changing icon controls. */
.bamby-button,
button.bamby-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wp-element-button,
.wc-block-components-button,
.ur-frontend-form button[type="submit"],
input.wpcf7-submit {
	border-radius: var(--bamby-control-radius) !important;
}

body.single-product .site-main > article.product {
	padding-top: 65px;
}

body.single-product div.product .summary {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

body.single-product .summary .product_title,
body.single-product .summary .woocommerce-breadcrumb,
body.single-product .summary .woocommerce-product-details__short-description,
body.single-product .summary p.price {
	width: 100%;
}

body.single-product .summary .woocommerce-breadcrumb {
	margin-bottom: 0;
}

body.single-product .summary .woocommerce-product-details__short-description {
	margin: 10px 0 7px;
}

body.single-product .summary p.price {
	margin: 0 0 10px;
	text-align: center;
}

body.single-product .summary form.cart {
	align-items: center;
	border-bottom: 1px solid #eee;
	gap: 12px;
	justify-content: center;
	margin: 0 auto;
	order: 5;
	padding: 0 0 14px;
	width: min(100%, 430px);
}

body.single-product .summary form.cart .quantity {
	margin: 0;
}

body.single-product .summary form.cart .quantity .qty {
	border-radius: var(--bamby-control-radius);
	height: var(--bamby-control-height);
	width: 76px;
}

body.single-product .summary form.cart .single_add_to_cart_button {
	border-radius: var(--bamby-control-radius) !important;
	height: var(--bamby-control-height);
	line-height: 1.2;
	min-height: var(--bamby-control-height);
	min-width: 122px;
	padding: 0 18px;
}

body.single-product .summary p.stock {
	font-size: 12px;
	line-height: 1.45;
	margin: 7px 0 0;
	order: 6;
	text-align: center;
	width: 100%;
}

body.single-product .summary .product_meta {
	color: #777;
	display: block;
	font-size: 10.5px;
	letter-spacing: 0.01em;
	line-height: 1.5;
	margin: 8px 0 0;
	order: 7;
	text-align: center;
	width: 100%;
}

body.single-product .summary .product_meta .sku_wrapper {
	display: inline-block;
}

body.single-product .summary .product_meta .posted_in,
body.single-product .summary .product_meta .tagged_as {
	display: none;
}

/* Variable products: align labels and choices, then keep the buying row centred. */
body.single-product .product-type-variable .summary form.variations_form {
	align-items: center;
	flex-direction: column;
}

body.single-product .summary table.variations {
	border: 0;
	margin: 0 auto 10px;
	max-width: 430px;
	table-layout: fixed;
	width: 100%;
}

body.single-product .summary table.variations tbody,
body.single-product .summary table.variations tr {
	display: block;
	width: 100%;
}

body.single-product .summary table.variations tr {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: 96px minmax(0, 1fr);
	margin: 0 0 10px;
}

body.single-product .summary table.variations th.label,
body.single-product .summary table.variations td.value {
	background: transparent;
	border: 0;
	display: block;
	padding: 0;
	text-align: left;
	width: auto;
}

body.single-product .summary table.variations th.label label {
	align-items: center;
	display: flex;
	font-size: 13px;
	font-weight: 600;
	height: var(--bamby-control-height);
	justify-content: flex-end;
	line-height: 1.2;
	margin: 0;
}

body.single-product .summary table.variations select {
	background-color: #fff;
	border: 1px solid #777;
	border-radius: var(--bamby-control-radius);
	font-size: 13px;
	height: var(--bamby-control-height);
	margin: 0;
	padding: 0 36px 0 12px;
	width: 100%;
}

body.single-product .summary table.variations .reset_variations {
	display: inline-block;
	font-size: 11px;
	line-height: 1.4;
	margin-top: 5px;
}

body.single-product .summary .single_variation_wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
	width: 100%;
}

body.single-product .summary .single_variation {
	display: contents !important;
}

body.single-product .summary .woocommerce-variation-description {
	order: 1;
}

body.single-product .summary .woocommerce-variation-price {
	margin: 0 0 9px;
	order: 2;
	text-align: center;
	width: 100%;
}

body.single-product .summary .woocommerce-variation-add-to-cart {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: center;
	order: 3;
	width: 100%;
}

body.single-product .summary .woocommerce-variation-availability {
	margin: 7px 0 0;
	order: 4;
	text-align: center;
	width: 100%;
}

body.single-product .summary .woocommerce-variation-availability p.stock {
	margin: 0;
}

@media (max-width: 767px) {
	body.single-product #page {
		padding-top: 108px;
	}

	body.admin-bar.single-product #page {
		padding-top: 154px;
	}

	body.single-product .site-main > article.product {
		padding-top: 8px;
	}

	body.single-product div.product .summary {
		display: contents;
	}

	body.single-product .summary p.price {
		margin-top: 24px;
		text-align: center;
	}

	body.single-product .summary form.cart {
		justify-self: center;
		width: 100%;
	}

	body.single-product .summary p.stock {
		grid-column: 1;
		grid-row: 7;
	}

	body.single-product .summary .product_meta {
		grid-column: 1;
		grid-row: 8;
	}

	body.single-product div.product .woocommerce-tabs {
		grid-row: 9;
	}

	body.single-product .summary table.variations tr {
		grid-template-columns: 88px minmax(0, 1fr);
	}

	body.single-product .summary table.variations th.label label {
		justify-content: flex-start;
	}
}



/* Keep unselected variable-product controls compact. */
body.single-product .summary .single_variation_wrap {
	min-height: 0 !important;
}

body.single-product .summary .single_variation:empty,
body.single-product .summary .reset_variations[style*="hidden"] {
	display: none !important;
}



/* Product content flow and sticky summary - 2026-08-15 */
body.single-product .summary form.cart .quantity {
	flex: 0 0 76px;
	height: var(--bamby-control-height);
}

body.single-product .summary form.cart .quantity .qty,
body.single-product .summary form.cart .single_add_to_cart_button {
	box-sizing: border-box;
	height: var(--bamby-control-height) !important;
	min-height: var(--bamby-control-height) !important;
}

body.single-product .product-type-simple .summary form.cart {
	border-bottom: 0;
	padding-bottom: 0;
}

body.single-product .product-type-simple .summary p.stock {
	border-bottom: 1px solid #eee;
	box-sizing: border-box;
	margin: 7px auto 0;
	max-width: 430px;
	padding: 0 0 12px calc((100% - 210px) / 2);
	text-align: left;
	width: 100%;
}

body.single-product .product-type-variable .summary form.cart {
	border-bottom: 1px solid #eee;
	padding-bottom: 14px;
}

body.single-product .summary .product_meta {
	margin-left: auto;
	margin-right: auto;
	max-width: 430px;
	text-align: left;
}

body.single-product div.product .up-sells.upsells.products {
	clear: both;
	grid-column: 1 / -1;
	grid-row: 99;
	margin: 48px 0 0;
	order: 999;
	width: 100% !important;
}

@media (min-width: 768px) {
	body.single-product div.product .summary {
		align-self: start;
		position: sticky;
		top: 175px;
		z-index: 2;
	}

	body.admin-bar.single-product div.product .summary {
		top: 207px;
	}
}

@media (max-width: 767px) {
	body.single-product div.product .summary {
		position: static;
		top: auto;
		z-index: auto;
	}

	body.single-product .summary form.cart .quantity,
	body.single-product .summary form.cart .quantity .qty,
	body.single-product .summary form.cart .single_add_to_cart_button {
		height: var(--bamby-control-height) !important;
		min-height: var(--bamby-control-height) !important;
	}

	body.single-product .product-type-simple .summary p.stock {
		justify-self: center;
		padding-left: calc((100% - 210px) / 2);
	}

	body.single-product .summary .product_meta {
		justify-self: center;
		text-align: left;
		width: 100%;
	}

	body.single-product div.product .up-sells.upsells.products {
		grid-column: 1;
		grid-row: 99;
		margin-top: 36px;
	}
}



/* Align variation stock messages beneath the quantity field. */
body.single-product .summary .woocommerce-variation-availability {
	box-sizing: border-box;
	max-width: 430px;
	padding-left: calc((100% - 210px) / 2);
	text-align: left;
}



/* Stone Slabs information, media, and upsell system - 2026-08-15 */
body.single-product div.product .woocommerce-product-gallery {
	align-self: start;
}

body.single-product div.product .summary {
	height: max-content;
}

body.single-product div.product .woocommerce-tabs {
	margin-top: 30px;
}

body.single-product .woocommerce-Tabs-panel figure.wp-block-embed-youtube,
body.single-product .woocommerce-Tabs-panel .wp-block-embed__wrapper,
body.single-product .woocommerce-Tabs-panel .fluid-width-video-wrapper,
body.single-product .woocommerce-Tabs-panel .wp-video {
	margin-left: auto;
	margin-right: auto;
	max-width: 620px;
	width: 100%;
}

body.single-product .woocommerce-Tabs-panel iframe[src*="youtube"],
body.single-product .woocommerce-Tabs-panel iframe[src*="youtu.be"],
body.single-product .woocommerce-Tabs-panel video {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto !important;
	margin: 24px auto;
	max-width: 620px;
	width: 100% !important;
}

body.bamby-stone-slab-product .bamby-material-notes {
	border-top: 1px solid #e8e8e8;
	margin-top: 28px;
	padding-top: 22px;
}

body.bamby-stone-slab-product .bamby-material-notes h3 {
	color: #333;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 18px;
}

body.bamby-stone-slab-product .bamby-material-notes p {
	color: #666;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.65;
	margin: 0;
	padding: 0 0 15px;
}

body.bamby-stone-slab-product .bamby-material-notes a {
	color: #2f6f9f;
	font-weight: 500;
	text-decoration: none;
}

body.bamby-stone-slab-product .bamby-material-notes a:hover,
body.bamby-stone-slab-product .bamby-material-notes a:focus-visible {
	text-decoration: underline;
}

/* Recommendations: six compact products on desktop, four on mobile, scrollable when needed. */
body.single-product div.product .up-sells.upsells.products {
	margin-top: 42px;
	overflow: visible;
}

body.single-product .up-sells.upsells.products > h2 {
	color: #111;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 20px;
	text-align: left;
}

body.single-product .bamby-upsell-carousel {
	position: relative;
	width: 100%;
}

body.single-product .bamby-upsell-carousel ul.products {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 14px;
	grid-template-columns: none !important;
	margin: 0 !important;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 !important;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	width: 100%;
}

body.single-product .bamby-upsell-carousel ul.products::-webkit-scrollbar {
	display: none;
}

body.single-product .bamby-upsell-carousel ul.products li.product {
	box-sizing: border-box;
	flex: 0 0 calc((100% - 70px) / 6) !important;
	float: none !important;
	margin: 0 !important;
	max-width: calc((100% - 70px) / 6) !important;
	min-width: 0;
	position: relative;
	scroll-snap-align: start;
	text-align: center;
	width: auto !important;
}

body.single-product .bamby-upsell-carousel ul.products li.product a {
	display: block;
}

body.single-product .bamby-upsell-carousel ul.products li.product a img {
	aspect-ratio: 1;
	border-radius: 10px;
	display: block;
	height: auto;
	margin: 0 0 8px !important;
	object-fit: cover;
	width: 100%;
}

body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
	min-height: 30px;
	padding: 0 2px;
	text-transform: none;
}

body.single-product .bamby-upsell-carousel ul.products li.product .price {
	font-size: 10px;
	line-height: 1.35;
	margin: 4px 0 0;
}

body.single-product .bamby-upsell-carousel ul.products li.product .onsale {
	font-size: 9px;
	height: 30px;
	line-height: 30px;
	min-height: 30px;
	min-width: 30px;
	padding: 0;
}

body.single-product .bamby-upsell-carousel__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 50%;
	box-shadow: 0 3px 12px rgb(0 0 0 / 18%);
	color: #111;
	cursor: pointer;
	display: none;
	height: 36px;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 36px;
	z-index: 4;
}

body.single-product .bamby-upsell-carousel.is-scrollable .bamby-upsell-carousel__arrow {
	display: flex;
}

body.single-product .bamby-upsell-carousel__arrow--previous {
	left: -18px;
}

body.single-product .bamby-upsell-carousel__arrow--next {
	right: -18px;
}

body.single-product .bamby-upsell-carousel__arrow svg {
	fill: none;
	height: 17px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 17px;
}

body.single-product .bamby-upsell-carousel__arrow:hover,
body.single-product .bamby-upsell-carousel__arrow:focus-visible {
	background: #111;
	color: #fff;
}

body.single-product .bamby-upsell-carousel__arrow:disabled {
	cursor: default;
	opacity: 0.3;
}

@media (min-width: 768px) {
	body.bamby-stone-slab-product div.product .woocommerce-tabs {
		align-items: start;
		column-gap: 48px;
		display: grid;
		grid-template-columns: minmax(0, 1.9fr) minmax(280px, 1fr);
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs {
		display: none;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description,
	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-additional_information {
		display: block !important;
		margin: 0;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description {
		grid-column: 1;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description::before {
		background: #111;
		color: #fff;
		content: "Description";
		display: block;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.3;
		margin: 0 0 24px;
		padding: 10px 24px;
		width: max-content;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-additional_information {
		grid-column: 2;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-additional_information > h2 {
		display: block !important;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 24px;
		font-weight: 400;
		line-height: 1.25;
		margin: 0 0 18px;
		text-transform: none;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes {
		border-collapse: collapse;
		margin: 0;
		width: 100%;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes tr:nth-child(even) {
		background: #f7f7f7;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes th,
	body.bamby-stone-slab-product table.woocommerce-product-attributes td {
		border: 0;
		border-bottom: 1px solid #ececec;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 13px;
		line-height: 1.4;
		padding: 9px 10px;
		text-align: left;
		vertical-align: top;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes th {
		font-weight: 600;
		width: 48%;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes td {
		color: #666;
		font-style: italic;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes td p {
		margin: 0;
		padding: 0;
	}
}

@media (max-width: 767px) {
	body.single-product div.product .up-sells.upsells.products {
		margin-top: 34px;
	}

	body.single-product .up-sells.upsells.products > h2 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	body.single-product .bamby-upsell-carousel ul.products {
		gap: 10px;
	}

	body.single-product .bamby-upsell-carousel ul.products li.product {
		flex-basis: calc((100% - 30px) / 4) !important;
		max-width: calc((100% - 30px) / 4) !important;
	}

	body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
		font-size: 9px;
		line-height: 1.3;
		min-height: 25px;
	}

	body.single-product .bamby-upsell-carousel ul.products li.product .price {
		font-size: 8.5px;
	}

	body.single-product .bamby-upsell-carousel__arrow {
		height: 30px;
		top: 36%;
		width: 30px;
	}

	body.single-product .bamby-upsell-carousel__arrow--previous {
		left: -15px;
	}

	body.single-product .bamby-upsell-carousel__arrow--next {
		right: -15px;
	}
}



/* The Description section begins after this gallery-bound product-top container. */
body.single-product div.product.is-bamby-structured {
	display: block;
}

body.single-product .bamby-product-top {
	column-gap: 5.5%;
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 1.904fr);
	position: relative;
	width: 100%;
}

body.single-product .bamby-product-top > .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 1;
}

body.single-product .bamby-product-top > .summary {
	grid-column: 2;
	grid-row: 1;
}

body.single-product .bamby-product-top > .onsale {
	align-self: start;
	grid-column: 1;
	grid-row: 1;
	inset: auto;
	justify-self: start;
	margin: 12px 0 0 12px;
	position: relative;
	z-index: 20;
}

body.single-product div.product.is-bamby-structured > .woocommerce-tabs,
body.single-product div.product.is-bamby-structured > .up-sells.upsells.products {
	display: block;
	width: 100%;
}

@media (max-width: 767px) {
	body.single-product .bamby-product-top {
		column-gap: 0;
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product .bamby-product-top > .summary {
		display: contents;
	}

	body.single-product .bamby-product-top > .onsale {
		grid-column: 1;
		grid-row: 4;
		margin: 45px 0 0 12px;
	}
}



/* Keep the Stone Slabs information panels side by side after structural wrapping. */
@media (min-width: 768px) {
	body.bamby-stone-slab-product div.product.is-bamby-structured > .woocommerce-tabs {
		display: grid;
	}
}



/* Keep product attributes compact instead of inheriting Description paragraph spacing. */
@media (min-width: 768px) {
	body.bamby-stone-slab-product div.product .woocommerce-tabs table.woocommerce-product-attributes th,
	body.bamby-stone-slab-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		line-height: 1.3;
		padding: 7px 9px;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs table.woocommerce-product-attributes td p {
		line-height: inherit;
		margin: 0 !important;
		padding: 0 !important;
	}
}



/* The desktop long description is self-explanatory; keep the label only in mobile tabs. */
@media (min-width: 768px) {
	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description::before {
		display: none;
	}
}



/* Clear two-option switch for Description and Additional info on mobile. */
@media (max-width: 767px) {
	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs {
		background: #f3f3f3;
		border: 1px solid #dedede;
		border-radius: 10px;
		display: grid;
		gap: 4px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		margin: 0 0 22px;
		overflow: hidden;
		padding: 4px;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li {
		background: transparent;
		border: 0;
		border-radius: 7px;
		display: block;
		margin: 0;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li a {
		align-items: center;
		color: #333;
		display: flex;
		font-size: 12px;
		justify-content: center;
		line-height: 1.25;
		min-height: 42px;
		padding: 7px 8px;
		text-align: center;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li.active {
		background: #111;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li.active a {
		color: #fff;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li:not(.active):hover,
	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li:not(.active):focus-within {
		background: #e7e7e7;
	}
}



/* Keep recommendation prices exactly 10px below their product names. */
body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
	margin: 0 !important;
	min-height: 0;
	padding-bottom: 0;
}

body.single-product .bamby-upsell-carousel ul.products li.product .price {
	display: block;
	margin: 10px 0 0 !important;
}

/* Product detail refinement: mobile hierarchy, information width, and conversion sections - 2026-08-15. */
@media (max-width: 767px) {
	body.single-product .bamby-product-top {
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product .bamby-product-top > .summary {
		display: contents;
	}

	body.single-product .summary .product_title {
		grid-column: 1;
		grid-row: 1;
	}

	body.single-product .summary .woocommerce-breadcrumb {
		grid-column: 1;
		grid-row: 2;
	}

	body.single-product .bamby-product-top > .woocommerce-product-gallery {
		grid-column: 1;
		grid-row: 3;
		margin-top: 30px;
	}

	body.single-product .bamby-product-top > .onsale {
		grid-column: 1;
		grid-row: 3;
		margin: 42px 0 0 12px;
	}

	body.single-product .summary .woocommerce-product-details__short-description {
		box-sizing: border-box;
		grid-column: 1;
		grid-row: 4;
		margin: 20px auto 0 !important;
		max-width: 620px;
		padding: 0 4px;
		text-align: center !important;
		width: 100%;
	}

	body.single-product .summary .woocommerce-product-details__short-description p {
		margin: 0;
		text-align: center !important;
	}

	body.single-product .summary p.price {
		grid-column: 1;
		grid-row: 5;
		margin-top: 24px;
	}

	body.single-product .summary form.cart {
		grid-column: 1;
		grid-row: 6;
	}

	body.single-product .summary p.stock {
		grid-column: 1;
		grid-row: 7;
	}

	body.single-product .summary .product_meta {
		grid-column: 1;
		grid-row: 8;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs {
		box-sizing: border-box;
		width: 100% !important;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs {
		align-items: stretch;
		box-sizing: border-box;
		gap: 4px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 4px !important;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li,
	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li a {
		box-sizing: border-box;
		height: 100%;
		margin: 0 !important;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li::before,
	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li::after {
		display: none !important;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs .woocommerce-Tabs-panel,
	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-additional_information,
	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description {
		box-sizing: border-box;
		max-width: none !important;
		width: 100% !important;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes {
		border-collapse: collapse;
		display: table !important;
		table-layout: fixed;
		width: 100% !important;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes tbody {
		display: table-row-group !important;
		width: 100%;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes tr {
		display: table-row !important;
		width: 100%;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes th,
	body.bamby-stone-slab-product table.woocommerce-product-attributes td {
		background: transparent;
		border: 0;
		border-bottom: 1px solid #e7e7e7;
		box-sizing: border-box;
		display: table-cell !important;
		font-size: 12px;
		line-height: 1.4;
		max-width: none !important;
		overflow-wrap: anywhere;
		padding: 10px 12px !important;
		text-align: left;
		vertical-align: top;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes th {
		font-weight: 600;
		width: 40% !important;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes td {
		color: #666;
		font-style: normal;
		width: 60% !important;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes td p {
		line-height: inherit;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.bamby-stone-slab-product .bamby-material-notes {
		box-sizing: border-box;
		width: 100%;
	}
}

/* Keep recommendation prices close to their names on every screen. */
body.single-product .bamby-upsell-carousel ul.products li.product .price {
	margin: 4px 0 0 !important;
}

/* Calculator and project journey, inserted between product information and recommendations. */
body.single-product .bamby-product-estimator,
body.single-product .bamby-project-journey {
	box-sizing: border-box;
	clear: both;
	grid-column: 1 / -1;
	margin: 56px 0 0;
	width: 100%;
}

body.single-product .bamby-product-estimator {
	background: #f7f7f7;
	border: 1px solid #e4e4e4;
	border-radius: 16px;
	padding: clamp(24px, 4vw, 52px);
}

body.single-product .bamby-product-estimator__intro,
body.single-product .bamby-project-journey__intro {
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
}

body.single-product .bamby-product-estimator h2,
body.single-product .bamby-project-journey h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(25px, 3vw, 38px);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 18px;
	text-transform: none;
}

body.single-product .bamby-estimator-steps {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 24px 0;
	padding: 0;
}

body.single-product .bamby-estimator-steps li {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.45;
	padding: 16px;
}

body.single-product .bamby-estimator-details {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 auto 26px;
	max-width: 920px;
	text-align: left;
}

body.single-product .bamby-estimator-details details {
	background: #fff;
	border: 1px solid #dedede;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 0 16px;
}

body.single-product .bamby-estimator-details summary {
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	padding: 15px 24px 15px 0;
	position: relative;
}

body.single-product .bamby-estimator-details summary::after {
	content: "+";
	font-size: 20px;
	font-weight: 400;
	position: absolute;
	right: 0;
	top: 10px;
}

body.single-product .bamby-estimator-details details[open] summary::after {
	content: "−";
}

body.single-product .bamby-estimator-details ul {
	font-size: 13px;
	line-height: 1.55;
	margin: 0 0 16px;
	padding-left: 20px;
}

body.single-product .bamby-estimator-guide {
	margin: 0 auto 28px;
	max-width: 620px;
}

body.single-product .bamby-estimator-guide iframe {
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 12px;
	display: block;
	height: auto;
	width: 100%;
}

body.single-product .bamby-product-estimator__tool {
	background: #fff;
	border-radius: 12px;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
}

body.single-product .bamby-product-estimator__tool iframe {
	border: 0;
	display: block;
	min-height: 760px;
	width: 100%;
}

body.single-product .bamby-project-journey {
	background: #111;
	border-radius: 16px;
	color: #fff;
	padding: clamp(26px, 4vw, 52px);
}

body.single-product .bamby-project-journey__intro p {
	color: #fff;
	font-size: 15px;
	line-height: 1.6;
	margin: 0 auto;
	max-width: 760px;
}

body.single-product .bamby-project-journey__steps {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 30px;
}

body.single-product .bamby-project-journey__steps article {
	background: #fff;
	border-radius: 12px;
	box-sizing: border-box;
	color: #111;
	padding: 22px;
}

body.single-product .bamby-project-journey__steps h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 10px;
	text-transform: none;
}

body.single-product .bamby-project-journey__steps p {
	color: #555;
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

@media (max-width: 767px) {
	body.single-product .bamby-product-estimator,
	body.single-product .bamby-project-journey {
		margin-top: 36px;
		padding: 22px 16px;
	}

	body.single-product .bamby-estimator-steps,
	body.single-product .bamby-estimator-details,
	body.single-product .bamby-project-journey__steps {
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product .bamby-estimator-steps {
		gap: 9px;
		margin: 18px 0;
	}

	body.single-product .bamby-estimator-steps li,
	body.single-product .bamby-project-journey__steps article {
		padding: 15px;
	}

	body.single-product .bamby-product-estimator__tool iframe {
		min-height: 620px;
	}

	body.single-product div.product .up-sells.upsells.products {
		margin-top: 38px;
	}
}

/* Keep the calculator guide compact beside the useful estimator information. */
@media (min-width: 768px) {
	body.single-product .bamby-product-estimator__intro {
		align-items: start;
		display: grid;
		gap: 22px 30px;
		grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
		max-width: none;
		text-align: left;
	}

	body.single-product .bamby-product-estimator__intro > h2 {
		grid-column: 1 / -1;
		text-align: center;
	}

	body.single-product .bamby-estimator-steps {
		grid-column: 1;
		margin: 0;
	}

	body.single-product .bamby-estimator-details {
		grid-column: 1;
		margin: 0;
		max-width: none;
		width: 100%;
	}

	body.single-product .bamby-estimator-guide {
		align-self: start;
		grid-column: 2;
		grid-row: 2 / span 2;
		margin: 0;
		max-width: 420px;
		width: 100%;
	}
}

@media (max-width: 767px) {
	body.single-product .bamby-estimator-guide {
		margin: 22px auto 26px;
		max-width: 360px;
	}
}

/* True two-column estimator layout and a more compact project journey. */
body.single-product .bamby-product-estimator__intro {
	display: block;
	max-width: none;
	text-align: center;
}

body.single-product .bamby-product-estimator__layout {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
	margin-top: 24px;
	text-align: left;
	width: 100%;
}

body.single-product .bamby-product-estimator__content {
	min-width: 0;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-steps {
	margin: 0 0 18px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details {
	margin: 0;
	max-width: none;
}

body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
	margin: 0;
	max-width: 420px;
	width: 100%;
}

body.single-product .bamby-project-journey {
	margin-top: 40px;
	padding: clamp(22px, 3vw, 36px);
}

body.single-product .bamby-project-journey h2,
body.single-product .bamby-project-journey #bamby-project-journey-title {
	color: #fff !important;
	font-size: clamp(24px, 2.5vw, 32px);
	margin-bottom: 12px;
}

body.single-product .bamby-project-journey__intro p {
	font-size: 14px;
	line-height: 1.5;
}

body.single-product .bamby-project-journey__steps {
	gap: 12px;
	margin-top: 22px;
}

body.single-product .bamby-project-journey__steps article {
	padding: 17px;
}

body.single-product .bamby-project-journey__steps h3 {
	font-size: 19px;
	margin-bottom: 7px;
}

body.single-product .bamby-project-journey__steps p {
	font-size: 13px;
	line-height: 1.45;
}

@media (max-width: 767px) {
	body.single-product .bamby-product-estimator__layout {
		display: block;
		margin-top: 18px;
	}

	body.single-product .bamby-product-estimator__content .bamby-estimator-details {
		display: grid;
	}

	body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
		margin: 22px auto 0;
		max-width: 360px;
	}

	body.single-product .bamby-project-journey {
		margin-top: 30px;
		padding: 20px 14px;
	}

	body.single-product .bamby-project-journey__steps {
		gap: 9px;
		margin-top: 18px;
	}
}

/* Compact estimator guidance without constraining the calculator workspace. */
body.single-product .bamby-product-estimator {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

body.single-product .bamby-product-estimator__intro {
	background: #f7f7f7;
	border: 1px solid #e4e4e4;
	border-radius: 14px;
	box-sizing: border-box;
	padding: clamp(18px, 2.5vw, 28px);
}

body.single-product .bamby-product-estimator__layout {
	gap: 20px;
	margin-top: 16px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-steps {
	gap: 8px;
	margin-bottom: 12px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-steps li {
	border-radius: 8px;
	font-size: 12px;
	line-height: 1.35;
	padding: 10px 11px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details {
	gap: 8px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details details {
	border-radius: 8px;
	padding: 0 12px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details summary {
	font-size: 12px;
	padding: 10px 20px 10px 0;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details summary::after {
	font-size: 17px;
	top: 6px;
}

body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
	align-self: start;
	grid-column: auto;
	grid-row: auto;
	justify-self: end;
	margin: 0;
	max-width: 360px;
}

body.single-product .bamby-product-estimator__tool {
	background: transparent;
	border-radius: 0;
	margin-top: 24px;
	overflow: visible;
	width: 100%;
}

body.single-product .bamby-product-estimator__tool > *,
body.single-product .bamby-product-estimator__tool iframe {
	box-sizing: border-box;
	max-width: none !important;
	width: 100% !important;
}

@media (max-width: 767px) {
	body.single-product .bamby-product-estimator__intro {
		padding: 16px 12px;
	}

	body.single-product .bamby-product-estimator__layout {
		margin-top: 14px;
	}

	body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
		justify-self: center;
		margin: 16px auto 0;
		max-width: 320px;
	}

	body.single-product .bamby-product-estimator__tool {
		margin-top: 18px;
	}
}

/* Requested estimator flow: three steps, then stacked details beside the video. */
@media (min-width: 768px) {
	body.single-product .bamby-product-estimator__layout {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
		grid-template-rows: auto auto;
	}

	body.single-product .bamby-product-estimator__content {
		display: contents;
	}

	body.single-product .bamby-product-estimator__content .bamby-estimator-steps {
		grid-column: 1 / -1;
		grid-row: 1;
		margin: 0;
	}

	body.single-product .bamby-product-estimator__content .bamby-estimator-details {
		align-self: start;
		display: grid;
		gap: 8px;
		grid-column: 1;
		grid-row: 2;
		grid-template-columns: minmax(0, 1fr);
		margin: 0;
	}

	body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
		align-self: start;
		grid-column: 2 !important;
		grid-row: 2 !important;
		justify-self: stretch;
		margin: 0;
		max-width: 360px;
		width: 100%;
	}
}

@media (max-width: 767px) {
	body.single-product .bamby-product-estimator__content {
		display: block;
	}
}

/* Full-width calculator workspace with a consistent 30px viewport gutter. */
body.single-product .bamby-product-estimator__tool {
	box-sizing: border-box;
	margin-left: calc(50% - 50vw + 30px) !important;
	margin-right: calc(50% - 50vw + 30px) !important;
	max-width: none !important;
	width: calc(100vw - 60px) !important;
}

body.single-product .bamby-product-estimator__tool > *,
body.single-product .bamby-product-estimator__tool iframe {
	max-width: none !important;
	width: 100% !important;
}

@supports (width: 100dvw) {
	body.single-product .bamby-product-estimator__tool {
		margin-left: calc(50% - 50dvw + 30px) !important;
		margin-right: calc(50% - 50dvw + 30px) !important;
		width: calc(100dvw - 60px) !important;
	}
}



/* Final product audit: compact the slab material guidance without reducing readability. */
body.bamby-stone-slab-product .bamby-material-notes {
	margin-top: 18px;
}

body.bamby-stone-slab-product .bamby-material-notes h3 {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 10px;
}

body.bamby-stone-slab-product .bamby-material-notes p {
	font-size: 13px;
	line-height: 1.5 !important;
	margin: 0 !important;
	padding: 0 0 10px !important;
}

body.bamby-stone-slab-product .bamby-material-notes p:last-child {
	padding-bottom: 0 !important;
}

@media (max-width: 767px) {
	body.bamby-stone-slab-product .bamby-material-notes h3 {
		font-size: 16px;
	}

	body.bamby-stone-slab-product .bamby-material-notes p {
		font-size: 12px;
	}
}


/* Final product audit: use the same information layout for every product with attributes. */
@media (min-width: 768px) {
	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) {
		align-items: start;
		column-gap: 48px;
		display: grid !important;
		grid-template-columns: minmax(0, 1.9fr) minmax(280px, 1fr);
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs {
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-description,
	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-additional_information {
		display: block !important;
		margin: 0 !important;
		width: 100% !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-description {
		grid-column: 1;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-description::before {
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-additional_information {
		grid-column: 2;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes {
		border-collapse: collapse;
		margin: 0;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes tr:nth-child(even) {
		background: #f7f7f7;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes th,
	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		border: 0;
		border-bottom: 1px solid #ececec;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 13px;
		line-height: 1.3;
		padding: 7px 9px;
		text-align: left;
		vertical-align: top;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes th {
		font-weight: 600;
		width: 48%;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		color: #666;
		font-style: italic;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td p {
		line-height: inherit;
		margin: 0 !important;
		padding: 0 !important;
	}
}

@media (max-width: 767px) {
	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) {
		box-sizing: border-box;
		width: 100% !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs {
		align-items: stretch;
		background: #f3f3f3;
		border: 1px solid #dedede;
		border-radius: 10px;
		display: grid !important;
		gap: 4px;
		grid-auto-columns: minmax(0, 1fr);
		grid-auto-flow: column;
		margin: 0 0 22px !important;
		overflow: hidden;
		padding: 4px !important;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li {
		background: transparent;
		border: 0;
		border-radius: 7px;
		display: block;
		margin: 0 !important;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li a {
		align-items: center;
		box-sizing: border-box;
		color: #333;
		display: flex;
		font-size: 12px;
		height: 100%;
		justify-content: center;
		line-height: 1.25;
		min-height: 42px;
		padding: 7px 8px;
		text-align: center;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li.active {
		background: #111;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li.active a {
		color: #fff;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li::before,
	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li::after {
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) .woocommerce-Tabs-panel {
		box-sizing: border-box;
		max-width: none !important;
		width: 100% !important;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes {
		border-collapse: collapse;
		display: table !important;
		table-layout: fixed;
		width: 100% !important;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes th,
	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		background: transparent;
		border: 0;
		border-bottom: 1px solid #e7e7e7;
		box-sizing: border-box;
		display: table-cell !important;
		font-size: 12px;
		line-height: 1.4;
		overflow-wrap: anywhere;
		padding: 10px 12px !important;
		text-align: left;
		vertical-align: top;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes th {
		font-weight: 600;
		width: 40% !important;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		color: #666;
		font-style: normal;
		width: 60% !important;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td p {
		line-height: inherit;
		margin: 0 !important;
		padding: 0 !important;
	}
}


/* Universal product consistency: variation layout, information heading and estimator launch. */
@media (min-width: 768px) {
	body.single-product .bamby-product-top {
		align-items: start;
	}

	body.single-product .bamby-product-top > .woocommerce-product-gallery {
		align-self: start;
		height: auto !important;
		min-height: 0 !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-additional_information > h2 {
		display: block !important;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 22px;
		font-weight: 500;
		line-height: 1.3;
		margin: 0 0 18px;
		text-transform: none;
	}
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs {
	position: static !important;
}

body.single-product .summary table.variations {
	margin-bottom: 2px !important;
}

body.single-product .summary table.variations tr:last-child {
	margin-bottom: 0 !important;
}

body.single-product .summary .single_variation_wrap {
	gap: 0 !important;
	margin-top: 0 !important;
}

body.single-product .summary .woocommerce-variation-availability {
	align-self: center;
	box-sizing: border-box;
	max-width: none;
	padding-left: 0 !important;
	position: relative;
	right: 67px;
	text-align: center !important;
	width: 76px !important;
}

body.single-product .summary .woocommerce-variation-availability p.stock {
	margin: 0 !important;
	padding: 0 !important;
	text-align: center !important;
	white-space: normal;
	width: 76px !important;
}

body.single-product .bamby-product-estimator__tool .bamby-calc-wrapper {
	text-align: center;
}

body.single-product .bamby-product-estimator__tool #load_calculator {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.single-product .bamby-product-estimator__tool #load_calculator:disabled {
	cursor: wait;
	opacity: .72;
}


/* Keep every variable-product selection and purchase row visually connected. */
body.single-product .product-type-variable .summary form.variations_form {
	gap: 0 !important;
}


/* Match every variation label to its dropdown height on every product. */
body.single-product .summary table.variations th.label {
	align-items: center;
	box-sizing: border-box;
	display: flex !important;
	height: 46px;
	min-height: 46px;
}

body.single-product .summary table.variations th.label label {
	align-items: center;
	display: flex;
	height: 100%;
	line-height: 1.25;
}


/* Final mobile product stacking and tab affordance. */
@media (max-width: 767px) {
	body.single-product .bamby-product-top {
		display: grid !important;
		grid-auto-flow: row;
		isolation: isolate;
	}

	body.single-product .summary .product_title {
		grid-column: 1 !important;
		grid-row: 1 !important;
		position: relative;
		z-index: 3;
	}

	body.single-product .summary .woocommerce-breadcrumb {
		grid-column: 1 !important;
		grid-row: 2 !important;
		position: relative;
		z-index: 3;
	}

	body.single-product .bamby-product-top > .woocommerce-product-gallery {
		align-self: start;
		grid-column: 1 !important;
		grid-row: 3 !important;
		height: auto !important;
		margin-top: 30px !important;
		min-height: 0 !important;
		position: relative;
		z-index: 2;
	}

	body.single-product .summary .woocommerce-product-details__short-description {
		background: #fff;
		box-sizing: border-box;
		clear: both;
		display: block !important;
		grid-column: 1 !important;
		grid-row: 4 !important;
		margin: 18px auto 0 !important;
		max-width: 620px;
		padding: 0 4px;
		position: relative !important;
		text-align: center !important;
		width: 100%;
		z-index: 1;
	}

	body.single-product .summary .woocommerce-product-details__short-description p {
		margin: 0 !important;
		text-align: center !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs {
		background: #ededed;
		border-color: #cfcfcf;
		box-shadow: 0 2px 8px rgba(0, 0, 0, .09);
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li {
		background: #fff !important;
		border: 1px solid #c9c9c9 !important;
		box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li a {
		color: #222 !important;
		font-weight: 600;
		min-height: 46px;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li.active {
		background: #111 !important;
		border-color: #111 !important;
		box-shadow: 0 2px 5px rgba(0, 0, 0, .24);
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li.active a {
		color: #fff !important;
	}
}


/* Final mobile tab clearfix correction */
@media (max-width: 768px) {
	body.single-product div.product .woocommerce-tabs ul.tabs::before,
	body.single-product div.product .woocommerce-tabs ul.tabs::after {
		content: none !important;
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> #tab-title-additional_information) ul.tabs,
	body.single-product div.product .woocommerce-tabs ul.tabs:has(> #tab-title-additional_information) {
		grid-auto-flow: row !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}


/* Homepage mobile parity with live */
@media (max-width: 768px) {
	body.home .bamby-section--mobile-collections-and-services-section {
		font-size: 14px;
		line-height: 1.7;
		padding: 50px 0 0;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-row {
		padding-left: 16px;
		padding-right: 16px;
	}

	body.home .bamby-section--mobile-collections-and-services-section h2 {
		font-size: 22px !important;
		line-height: 1 !important;
		margin: 0 0 10px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section h3,
	body.home .bamby-section--mobile-collections-and-services-section h4 {
		font-size: 18px !important;
		line-height: 1 !important;
		margin: 0 !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-rich-text p {
		font-size: 14px;
		line-height: 1.7;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-rich-text:has(> h2) p {
		font-size: 13px;
		line-height: 23.8px;
		margin-bottom: 5px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media {
		margin-bottom: 30px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Slabs Collection Showroom"]) {
		margin-left: auto;
		margin-right: auto;
		width: 210px;
	}

	body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Slabs Collection Showroom"] {
		height: 210px !important;
		object-fit: cover;
		width: 210px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Project and Slab calculator"]) {
		margin-left: auto;
		margin-right: auto;
		width: 249px;
	}

	body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Project and Slab calculator"] {
		height: auto !important;
		width: 249px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Service Areas and Projects Image"]),
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Production and Installation Services"]),
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="White-Onxy-03"]) {
		margin-left: -16px;
		margin-right: -16px;
		width: calc(100% + 32px);
	}

	body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Service Areas and Projects Image"],
	body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Production and Installation Services"],
	body.home .bamby-section--mobile-collections-and-services-section img[alt="White-Onxy-03"] {
		height: auto !important;
		width: 100% !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions {
		display: flex;
		justify-content: flex-end;
		margin-left: -16px;
		margin-right: -16px;
		width: calc(100% + 32px);
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-button {
		font-size: 14px !important;
		letter-spacing: 0 !important;
		line-height: 23.8px !important;
		min-height: 36px !important;
		padding: 4.2px 14px !important;
		text-transform: none !important;
		white-space: nowrap;
		width: auto !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions--center {
		align-items: flex-end;
		flex-direction: column;
		gap: 6px;
		justify-content: flex-start;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions--center .bamby-button:first-child {
		margin-right: 10px;
	}
}


/* Homepage mobile lower-section parity */
@media (max-width: 768px) {
	body.home .bamby-section--mobile-collections-and-services-section {
		padding-bottom: 30px;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-button {
		padding-left: 11.5px !important;
		padding-right: 11.5px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:has(+ .bamby-media > img[alt="Bamby Stone Production and Installation Services"]),
	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:has(+ .bamby-media > img[alt="White-Onxy-03"]) {
		margin-bottom: 20.5px;
		margin-top: 20.5px;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Production and Installation Services"]) + .bamby-rich-text,
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="White-Onxy-03"]) + .bamby-rich-text {
		margin-left: -16px;
		text-align: center;
		width: calc(100% + 32px);
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Production and Installation Services"]) + .bamby-rich-text p,
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="White-Onxy-03"]) + .bamby-rich-text p {
		font-size: 18px;
		line-height: 23.8px;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Production and Installation Services"]) + .bamby-rich-text + .bamby-rich-text,
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="White-Onxy-03"]) + .bamby-rich-text + .bamby-rich-text {
		margin-left: auto;
		margin-right: auto;
		max-width: 256px;
		text-align: center;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text {
		margin-bottom: 30px;
		margin-left: -16px;
		text-align: center;
		width: calc(100% + 32px);
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text p {
		font-size: 18px;
		line-height: 23.8px;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text + .bamby-rich-text {
		margin-left: auto;
		margin-right: auto;
		max-width: 256px;
		text-align: center;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text + .bamby-rich-text + .bamby-actions {
		margin-top: 30px;
	}
}


/* Homepage mobile final vertical alignment */
@media (max-width: 768px) {
	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type {
		margin-bottom: 54px;
	}
}


/* BAMBY CART COLLATERALS AND BUTTON CONTRAST - 2026-08-15 */
.page-id-987508413 .cart-collaterals {
	clear: both;
	margin-top: 30px;
}

.page-id-987508413 .cart-collaterals .cross-sells,
.page-id-987508413 .cart-collaterals .cart_totals {
	box-sizing: border-box;
	float: none !important;
	margin: 0 !important;
	min-width: 0;
}

.page-id-987508413 .cart-collaterals .cross-sells > h2,
.page-id-987508413 .cart-collaterals .cart_totals > h2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 20px;
	padding: 0;
	text-align: left;
}

.page-id-987508413 .woocommerce-cart-form button.button,
.page-id-987508413 .woocommerce-message a.button,
.page-id-987508413 .return-to-shop a.button,
.page-id-987508413 .wc-proceed-to-checkout a.checkout-button {
	align-items: center;
	background: #000 !important;
	border: 1px solid #000 !important;
	border-radius: 10px !important;
	color: #fff !important;
	display: inline-flex;
	justify-content: center;
	opacity: 1;
	text-decoration: none;
}

.page-id-987508413 .woocommerce-cart-form button.button:hover,
.page-id-987508413 .woocommerce-cart-form button.button:focus-visible,
.page-id-987508413 .woocommerce-message a.button:hover,
.page-id-987508413 .woocommerce-message a.button:focus-visible,
.page-id-987508413 .return-to-shop a.button:hover,
.page-id-987508413 .return-to-shop a.button:focus-visible,
.page-id-987508413 .wc-proceed-to-checkout a.checkout-button:hover,
.page-id-987508413 .wc-proceed-to-checkout a.checkout-button:focus-visible {
	background: #765435 !important;
	border-color: #765435 !important;
	color: #fff !important;
}

.page-id-987508413 .woocommerce-cart-form button[name="update_cart"]:disabled,
.page-id-987508413 .woocommerce-cart-form button[name="update_cart"][disabled] {
	background: #f1f1f1 !important;
	border-color: #c8c8c8 !important;
	color: #4f4f4f !important;
	cursor: not-allowed;
	opacity: 1 !important;
}

.page-id-987508413 .wc-proceed-to-checkout a.checkout-button {
	display: flex;
	min-height: 48px;
}

@media (min-width: 769px) {
	.page-id-987508413 .cart-collaterals {
		align-items: start;
		display: grid !important;
		gap: 40px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.page-id-987508413 .cart-collaterals .cross-sells,
	.page-id-987508413 .cart-collaterals .cart_totals {
		clear: none !important;
		width: auto !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 768px) {
	.page-id-987508413 .cart-collaterals {
		display: flex !important;
		flex-direction: column;
		gap: 30px;
	}

	.page-id-987508413 .cart-collaterals .cross-sells,
	.page-id-987508413 .cart-collaterals .cart_totals {
		clear: both !important;
		width: 100% !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells > h2,
	.page-id-987508413 .cart-collaterals .cart_totals > h2 {
		font-size: 22px;
		line-height: 1.3;
	}
}


/* BAMBY CART GRID PSEUDO-ELEMENT FIX - 2026-08-15 */
.page-id-987508413 .cart-collaterals::before,
.page-id-987508413 .cart-collaterals::after {
	content: none !important;
	display: none !important;
}

body.page-id-987508413 .woocommerce .woocommerce-cart-form table.cart td.actions button.button[name="update_cart"]:disabled,
body.page-id-987508413 .woocommerce .woocommerce-cart-form table.cart td.actions button.button[name="update_cart"][disabled] {
	background: #f1f1f1 !important;
	border-color: #c8c8c8 !important;
	color: #333 !important;
	opacity: 1 !important;
}

@media (min-width: 769px) {
	.page-id-987508413 .cart-collaterals .cross-sells {
		grid-column: 1;
		grid-row: 1;
	}

	.page-id-987508413 .cart-collaterals .cart_totals {
		grid-column: 2;
		grid-row: 1;
	}
}


/* BAMBY CART TOTALS THEN HORIZONTAL RECOMMENDATIONS - 2026-08-15 */
@media (min-width: 769px) {
	.page-id-987508413 .cart-collaterals {
		display: grid !important;
		gap: 40px;
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.page-id-987508413 .cart-collaterals .cart_totals {
		grid-column: 1 !important;
		grid-row: 1 !important;
		width: 100% !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells {
		grid-column: 1 !important;
		grid-row: 2 !important;
		width: 100% !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}


/* BAMBY CART HORIZONTAL RECOMMENDATION COUNT - 2026-08-15 */
@media (min-width: 769px) {
	.page-id-987508413 .cart-collaterals .cross-sells ul.products {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
	}
}


/* BAMBY CART MOBILE TOTALS BEFORE RECOMMENDATIONS - 2026-08-15 */
@media (max-width: 768px) {
	.page-id-987508413 .cart-collaterals .cart_totals {
		order: 1;
	}

	.page-id-987508413 .cart-collaterals .cross-sells {
		order: 2;
	}
}


/* BAMBY GLOBAL PRODUCT CONTROLS AND LINK CONTRAST - 2026-08-15 */

/* Keep the dark header actions readable after visit, click, focus and hover. */
.bamby-header-action.bamby-phone,
.bamby-header-action.bamby-phone:link,
.bamby-header-action.bamby-phone:visited,
.bamby-header-action.bamby-phone:hover,
.bamby-header-action.bamby-phone:focus,
.bamby-header-action.bamby-phone:active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	opacity: 1 !important;
}

/* Button-style links keep brand contrast in every interactive state. */
.woocommerce a.button,
.woocommerce a.button:link,
.woocommerce a.button:visited,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button:active,
.woocommerce button.button,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active,
.bamby-actions a,
.bamby-actions a:link,
.bamby-actions a:visited,
.bamby-actions a:hover,
.bamby-actions a:focus,
.bamby-actions a:active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	background-color: #111 !important;
	border-color: #111 !important;
	text-decoration-color: currentColor !important;
}

.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.bamby-actions a:hover,
.bamby-actions a:focus {
	background-color: #765435 !important;
	border-color: #765435 !important;
}

/* A practical cart quantity target that remains compact and touch friendly. */
.woocommerce-cart-form .quantity .qty {
	width: 104px !important;
	min-width: 104px !important;
	height: 54px !important;
	padding: 8px 16px !important;
	text-align: center !important;
}

/* Every product uses the same divider before its public SKU row. */
.single-product .summary .product_meta {
	clear: both;
	margin-top: 24px !important;
	padding-top: 14px !important;
	border-top: 1px solid #e3e3e3 !important;
}

/* The dynamic prompt replaces the separate variation label visually.
   The real label remains in the document for screen readers. */
.single-product form.variations_form table.variations,
.single-product form.variations_form table.variations tbody,
.single-product form.variations_form table.variations tr {
	display: block !important;
	width: 100% !important;
}

.single-product form.variations_form table.variations th.label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.single-product form.variations_form table.variations td.value {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 8px 12px !important;
	width: 100% !important;
	padding: 0 !important;
	text-align: center !important;
}

.single-product form.variations_form table.variations td.value > select {
	display: block !important;
	width: min(100%, 420px) !important;
	min-height: 52px !important;
	margin: 0 auto !important;
	padding: 0 42px 0 18px !important;
	text-align: center !important;
	text-align-last: center !important;
	border-radius: 10px !important;
}

.single-product form.variations_form .reset_variations {
	flex: 0 0 100% !important;
	margin: 2px auto 0 !important;
	text-align: center !important;
}

@media (max-width: 767px) {
	.woocommerce-cart-form .quantity .qty {
		width: 92px !important;
		min-width: 92px !important;
	}
	.single-product form.variations_form table.variations td.value > select {
		width: 100% !important;
		max-width: 420px !important;
	}
}


/* BAMBY GLOBAL PRODUCT CONTROLS AND LINK CONTRAST - 2026-08-15 */

/* Keep the dark header actions readable after visit, click, focus and hover. */
.bamby-header-action.bamby-phone,
.bamby-header-action.bamby-phone:link,
.bamby-header-action.bamby-phone:visited,
.bamby-header-action.bamby-phone:hover,
.bamby-header-action.bamby-phone:focus,
.bamby-header-action.bamby-phone:active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	opacity: 1 !important;
}

/* Button-style links keep brand contrast in every interactive state. */
.woocommerce a.button,
.woocommerce a.button:link,
.woocommerce a.button:visited,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button:active,
.woocommerce button.button,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active,
.bamby-actions a,
.bamby-actions a:link,
.bamby-actions a:visited,
.bamby-actions a:hover,
.bamby-actions a:focus,
.bamby-actions a:active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	background-color: #111 !important;
	border-color: #111 !important;
	text-decoration-color: currentColor !important;
}

.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.bamby-actions a:hover,
.bamby-actions a:focus {
	background-color: #765435 !important;
	border-color: #765435 !important;
}

/* A practical cart quantity target that remains compact and touch friendly. */
.woocommerce-cart-form .quantity .qty {
	width: 104px !important;
	min-width: 104px !important;
	height: 54px !important;
	padding: 8px 16px !important;
	text-align: center !important;
}

/* Every product uses the same divider before its public SKU row. */
.single-product .summary .product_meta {
	clear: both;
	margin-top: 24px !important;
	padding-top: 14px !important;
	border-top: 1px solid #e3e3e3 !important;
}

/* The dynamic prompt replaces the separate variation label visually.
   The real label remains in the document for screen readers. */
.single-product form.variations_form table.variations,
.single-product form.variations_form table.variations tbody,
.single-product form.variations_form table.variations tr {
	display: block !important;
	width: 100% !important;
}

.single-product form.variations_form table.variations th.label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.single-product form.variations_form table.variations td.value {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 8px 12px !important;
	width: 100% !important;
	padding: 0 !important;
	text-align: center !important;
}

.single-product form.variations_form table.variations td.value > select {
	display: block !important;
	width: min(100%, 420px) !important;
	min-height: 52px !important;
	margin: 0 auto !important;
	padding: 0 42px 0 18px !important;
	text-align: center !important;
	text-align-last: center !important;
	border-radius: 10px !important;
}

.single-product form.variations_form .reset_variations {
	flex: 0 0 100% !important;
	margin: 2px auto 0 !important;
	text-align: center !important;
}

@media (max-width: 767px) {
	.woocommerce-cart-form .quantity .qty {
		width: 92px !important;
		min-width: 92px !important;
	}
	.single-product form.variations_form table.variations td.value > select {
		width: 100% !important;
		max-width: 420px !important;
	}
}


/* BAMBY CART CONTROL HEIGHT AND SPACING - 2026-08-15 */
.page-id-987508413 .woocommerce-cart-form td.actions .coupon {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px !important;
}

.page-id-987508413 .woocommerce-cart-form td.actions .coupon #coupon_code {
	flex: 1 1 180px;
	width: auto !important;
	min-width: 180px;
	height: 54px !important;
	min-height: 54px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border-radius: 10px !important;
}

.page-id-987508413 .woocommerce-cart-form td.actions button.button,
.page-id-987508413 .woocommerce-cart-form td.actions input.button,
.page-id-987508413 .wc-proceed-to-checkout .checkout-button {
	height: 54px !important;
	min-height: 54px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 10px !important;
}

@media (max-width: 600px) {
	.page-id-987508413 .woocommerce-cart-form td.actions .coupon {
		width: 100% !important;
	}
	.page-id-987508413 .woocommerce-cart-form td.actions .coupon #coupon_code,
	.page-id-987508413 .woocommerce-cart-form td.actions .coupon button {
		flex: 1 1 100% !important;
		width: 100% !important;
	}
}


/* BAMBY CHECKOUT POLISH AND RESPONSIVE ORDER REVIEW - 2026-08-15 */
body.woocommerce-checkout .bamby-section--commerce {
	padding-top: 34px !important;
	padding-bottom: 56px !important;
}

body.woocommerce-checkout .bamby-section--commerce > .bamby-row > h1 {
	margin: 0 0 16px !important;
}

body.woocommerce-checkout .bamby-section--commerce > .bamby-row > .woocommerce {
	margin-top: 0 !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle {
	margin: 0 0 14px !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 7px;
	min-height: 52px;
	margin: 0 !important;
	padding: 12px 18px !important;
	background: #111 !important;
	border: 0 !important;
	border-radius: 10px !important;
	color: #fff !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info a,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a,
body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info a:visited,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a:visited {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.woocommerce-checkout form.checkout_coupon {
	margin: 0 0 24px !important;
	padding: 20px !important;
	background: #f7f7f7;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
}

body.woocommerce-checkout form.checkout_coupon .form-row {
	margin-bottom: 0 !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first {
	width: calc(68% - 6px) !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row-last {
	width: calc(32% - 6px) !important;
}

body.woocommerce-checkout form.checkout_coupon #coupon_code,
body.woocommerce-checkout form.checkout_coupon button {
	width: 100% !important;
	height: 54px !important;
	min-height: 54px !important;
	margin: 0 !important;
	border-radius: 10px !important;
}

body.woocommerce-checkout form.checkout {
	margin-top: 28px !important;
}

body.woocommerce-checkout #order_review_heading {
	margin: 30px 0 16px !important;
}

body.woocommerce-checkout #order_review {
	display: grid !important;
	grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
	align-items: start;
	gap: 28px;
	width: 100% !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
	display: table !important;
	table-layout: fixed;
	width: 100% !important;
	margin: 0 !important;
	background: #fff;
	border: 1px solid #dedede !important;
	border-collapse: separate !important;
	border-spacing: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead,
body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody,
body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot {
	display: table-row-group !important;
	width: 100% !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead {
	display: table-header-group !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot {
	display: table-footer-group !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr {
	display: table-row !important;
	width: 100% !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
	display: table-cell !important;
	width: 50% !important;
	padding: 15px 16px !important;
	vertical-align: top;
	border-color: #e2e2e2 !important;
	overflow-wrap: anywhere;
}

body.woocommerce-checkout #payment {
	width: 100% !important;
	margin: 0 !important;
	padding: 22px !important;
	background: #f7f7f7 !important;
	border: 1px solid #dedede !important;
	border-radius: 14px !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

body.woocommerce-checkout #payment .place-order {
	width: 100% !important;
	margin: 18px 0 0 !important;
	padding: 18px 0 0 !important;
}

body.woocommerce-checkout #place_order {
	float: none !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	height: 54px !important;
	min-height: 54px !important;
	margin: 18px 0 0 !important;
	padding: 0 20px !important;
	background: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 10px !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus {
	background: #765435 !important;
	border-color: #765435 !important;
	color: #fff !important;
}

@media (max-width: 999px) {
	body.woocommerce-checkout #order_review {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 22px;
	}
}

@media (max-width: 600px) {
	body.woocommerce-checkout .bamby-section--commerce {
		padding-top: 26px !important;
		padding-bottom: 42px !important;
	}
	body.woocommerce-checkout form.checkout_coupon .form-row-first,
	body.woocommerce-checkout form.checkout_coupon .form-row-last {
		float: none !important;
		width: 100% !important;
		margin: 0 0 10px !important;
	}
	body.woocommerce-checkout form.checkout_coupon .form-row-last {
		margin-bottom: 0 !important;
	}
	body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th,
	body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
		padding: 12px !important;
	}
	body.woocommerce-checkout #payment {
		padding: 18px !important;
	}
}


/* BAMBY CHECKOUT LOGIN AND COUPON RHYTHM - 2026-08-15 */
body.woocommerce-checkout .woocommerce-form-login-toggle + form.woocommerce-form-login {
	margin: 0 0 12px !important;
}

body.woocommerce-checkout form.woocommerce-form-login {
	padding: 20px !important;
	background: #f7f7f7;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
}

body.woocommerce-checkout form.woocommerce-form-login[style*="display: none"] {
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle ~ .woocommerce-form-coupon-toggle {
	margin-top: 12px !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle + form.woocommerce-form-login:not([style*="display: none"]) + .woocommerce-form-coupon-toggle {
	margin-top: 12px !important;
}


/* BAMBY TERMS READING EXPERIENCE - 2026-08-15 */
.page-id-987508508 .bamby-section--section {
	padding: 48px 0 72px !important;
}

.page-id-987508508 .bamby-section--section .bamby-row {
	width: min(100% - 40px, 900px) !important;
	max-width: 900px !important;
	margin: 0 auto !important;
}

.page-id-987508508 .bamby-section--section .bamby-column,
.page-id-987508508 .bamby-section--section .bamby-rich-text {
	width: 100% !important;
	max-width: 100% !important;
}

.page-id-987508508 .bamby-rich-text > h1 {
	margin: 0 0 14px !important;
	font-size: clamp(34px, 4vw, 48px) !important;
	line-height: 1.12 !important;
	text-align: center;
	letter-spacing: -.02em;
}

.page-id-987508508 .bamby-rich-text > h1 + p {
	width: fit-content;
	margin: 0 auto 30px !important;
	padding: 9px 14px;
	background: #f3f3f3;
	border: 1px solid #dedede;
	border-radius: 10px;
	color: #4e4e4e;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.page-id-987508508 .bamby-rich-text h2 {
	margin: 42px 0 14px !important;
	padding-top: 4px;
	font-size: clamp(22px, 2.5vw, 28px) !important;
	line-height: 1.25 !important;
	letter-spacing: -.01em;
	text-wrap: balance;
}

.page-id-987508508 .bamby-rich-text h3 {
	margin: 26px 0 10px !important;
	font-size: clamp(18px, 2vw, 21px) !important;
	line-height: 1.35 !important;
	color: #242424;
	text-wrap: balance;
}

.page-id-987508508 .bamby-rich-text p {
	max-width: 78ch;
	margin: 0 0 14px !important;
	font-size: 17px !important;
	line-height: 1.75 !important;
	color: #333;
}

.page-id-987508508 .bamby-rich-text p:has(> br) {
	margin: 12px 0 20px !important;
	padding: 14px 18px;
	background: #f7f7f7;
	border-left: 4px solid #9b754f;
	border-radius: 0 10px 10px 0;
	line-height: 2 !important;
}

.page-id-987508508 .bamby-rich-text hr {
	height: 1px;
	margin: 36px 0 0 !important;
	background: #e2e2e2;
	border: 0 !important;
}

.page-id-987508508 .bamby-rich-text a,
.page-id-987508508 .bamby-rich-text a:visited {
	color: #6f4d2e !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 600px) {
	.page-id-987508508 .bamby-section--section {
		padding: 32px 0 52px !important;
	}
	.page-id-987508508 .bamby-section--section .bamby-row {
		width: min(100% - 28px, 900px) !important;
	}
	.page-id-987508508 .bamby-rich-text > h1 {
		font-size: 32px !important;
	}
	.page-id-987508508 .bamby-rich-text h2 {
		margin-top: 34px !important;
		font-size: 22px !important;
	}
	.page-id-987508508 .bamby-rich-text h3 {
		margin-top: 22px !important;
		font-size: 18px !important;
	}
	.page-id-987508508 .bamby-rich-text p {
		font-size: 16px !important;
		line-height: 1.7 !important;
	}
}


/* BAMBY DYNAMIC VARIATION PROMPTS - CSS-SAFE GLOBAL LAYER - 2026-08-15 */
.single-product form.variations_form table.variations tr {
	position: relative !important;
}

.single-product form.variations_form table.variations tr:has(select option[value=""]:checked) th.label {
	position: absolute !important;
	z-index: 2;
	top: 0 !important;
	left: 50% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: min(100%, 420px) !important;
	height: 52px !important;
	margin: 0 !important;
	padding: 0 50px 0 18px !important;
	overflow: visible !important;
	clip: auto !important;
	white-space: nowrap !important;
	border: 0 !important;
	transform: translateX(-50%);
	pointer-events: none;
}

.single-product form.variations_form table.variations tr:has(select option[value=""]:checked) th.label label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 16px !important;
	line-height: 1.2;
	font-weight: 400;
	color: #333;
	text-align: center;
}

.single-product form.variations_form table.variations tr:has(select option[value=""]:checked) th.label label::before {
	content: "Choose ";
}

.single-product form.variations_form table.variations select:has(option[value=""]:checked) {
	color: transparent !important;
	-webkit-text-fill-color: transparent !important;
}

.single-product form.variations_form table.variations select option {
	color: #111 !important;
	-webkit-text-fill-color: #111 !important;
	text-align: left;
}

.single-product form.variations_form table.variations select option[value=""] {
	display: none;
}


/* BAMBY CORE PAGE SPACING AND CARD POLISH - 2026-08-15 */

/* Keep card actions inside their grid cells instead of crossing dividers. */
.home .bamby-section--our-products-section .bamby-grid--3 > .bamby-column,
.home .bamby-section--our-products-section .bamby-grid--5 > .bamby-column,
.page-id-987509196 .bamby-section--our-services-section-desktop .bamby-grid > .bamby-column,
.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-grid > .bamby-column {
	display: flex !important;
	flex-direction: column;
	min-height: 100%;
}

.home .bamby-section--our-products-section .bamby-grid--3 > .bamby-column > .bamby-card,
.home .bamby-section--our-products-section .bamby-grid--5 > .bamby-column > .bamby-card,
.page-id-987509196 .bamby-section--our-services-section-desktop .bamby-grid > .bamby-column > .bamby-card,
.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-grid > .bamby-column > .bamby-card {
	flex: 1 1 auto;
	height: auto !important;
	min-height: 0 !important;
}

.home .bamby-section--our-products-section .bamby-grid .bamby-actions,
.page-id-987509196 .bamby-section--our-services-section-desktop .bamby-grid .bamby-actions,
.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-grid .bamby-actions {
	flex: 0 0 auto;
	margin: 12px 0 0 !important;
	padding: 0 !important;
}

/* Homepage collection artwork shows the full composition, including the red path. */
.home img[alt*="Stone Slabs Collection Showroom"] {
	border-radius: 24px !important;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .13);
	object-fit: cover;
}

/* New Arrivals uses the same dimensional product-card language. */
.home .bamby-section--featured-products-section ul.products li.product {
	padding: 12px 12px 18px !important;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 16px !important;
	box-shadow: 0 9px 24px rgba(0, 0, 0, .1);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.home .bamby-section--featured-products-section ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: 0 13px 30px rgba(0, 0, 0, .14);
}

.home .bamby-section--featured-products-section ul.products li.product img {
	border-radius: 12px !important;
}

/* Specialised Services: compact section boundaries and keep action buttons visible. */
.page-id-987509196 .bamby-section--our-services-and-fees-section {
	padding-top: 36px !important;
	padding-bottom: 30px !important;
}

.page-id-987509196 .bamby-section--our-services-section-desktop {
	padding-top: 30px !important;
	padding-bottom: 44px !important;
}

.page-id-987509196 .bamby-section--let-s-bring-it-to-life-section {
	min-height: 0 !important;
	padding-top: 44px !important;
	padding-bottom: 44px !important;
}

/* Contact page: balanced gaps and clear, compact contact cards. */
.page-id-987508340 .bamby-section--contact-form-map {
	padding-top: 42px !important;
	padding-bottom: 54px !important;
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row + .bamby-row {
	margin-top: 32px !important;
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(2) > .bamby-column {
	padding: 20px 22px !important;
	background: #f7f7f7;
	border: 1px solid #e1e1e1;
	border-radius: 14px;
	box-shadow: 0 7px 20px rgba(0, 0, 0, .06);
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(3) {
	padding: 28px !important;
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

.page-id-987508340 .bamby-section--contact-form-map input:not([type="submit"]),
.page-id-987508340 .bamby-section--contact-form-map select,
.page-id-987508340 .bamby-section--contact-form-map textarea {
	min-height: 52px;
	background: #f7f7f7 !important;
	border: 1px solid #d8d8d8 !important;
	border-radius: 10px !important;
}

.page-id-987508340 .bamby-section--contact-form-map input:focus,
.page-id-987508340 .bamby-section--contact-form-map select:focus,
.page-id-987508340 .bamby-section--contact-form-map textarea:focus {
	outline: 3px solid rgba(155, 117, 79, .25);
	outline-offset: 1px;
	border-color: #9b754f !important;
}

.page-id-987508340 .bamby-honeypot,
.page-id-987508340 .bamby-honeypot-field,
.page-id-987508340 [aria-hidden="true"].bamby-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	border: 0 !important;
}

/* Logged-out account and registration consistency. */
body.woocommerce-account:not(.logged-in) .woocommerce > h2:first-of-type {
	display: none !important;
}

.page-id-987510124 .ur-submit-button,
.page-id-987510124 button.ur-submit-button,
.page-id-987510124 input.ur-submit-button {
	min-height: 50px !important;
	padding: 0 24px !important;
	background: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 10px !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

.page-id-987510124 .ur-submit-button:hover,
.page-id-987510124 .ur-submit-button:focus {
	background: #765435 !important;
	border-color: #765435 !important;
	color: #fff !important;
}

@media (max-width: 767px) {
	.home .bamby-section--featured-products-section ul.products li.product {
		padding: 9px 9px 14px !important;
	}
	.page-id-987508340 .bamby-section--contact-form-map {
		padding-top: 30px !important;
		padding-bottom: 42px !important;
	}
	.page-id-987508340 .bamby-section--contact-form-map > .bamby-row + .bamby-row {
		margin-top: 24px !important;
	}
	.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(3) {
		padding: 20px 16px !important;
	}
}


/* BAMBY BLOG ARCHIVE AND ARTICLE READING SYSTEM - 2026-08-15 */

/* Archive heading and responsive card grid. */
.blog main.bamby-blog-index {
	width: min(100% - 48px, 1180px) !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
	padding: 54px 0 72px !important;
}

.blog .bamby-blog-archive-title {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 34px !important;
	padding: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	white-space: normal !important;
	border: 0 !important;
	font-size: clamp(34px, 4vw, 50px) !important;
	line-height: 1.12 !important;
	text-align: center;
	letter-spacing: -.02em;
}

.blog .bamby-blog-column {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.blog .bamby-blog-card {
	display: flex !important;
	flex-direction: column;
	min-width: 0;
	margin: 0 !important;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 16px;
	box-shadow: 0 9px 24px rgba(0, 0, 0, .09);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.blog .bamby-blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 13px 30px rgba(0, 0, 0, .13);
}

.blog .bamby-blog-card__image {
	display: block;
	width: 100%;
	margin: 0 !important;
	overflow: hidden;
}

.blog .bamby-blog-card__image img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 10 !important;
	margin: 0 !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	transition: transform .25s ease;
}

.blog .bamby-blog-card:hover .bamby-blog-card__image img {
	transform: scale(1.025);
}

.blog .bamby-blog-card__title {
	margin: 17px 18px 8px !important;
	font-size: 23px !important;
	line-height: 1.25 !important;
	text-wrap: balance;
}

.blog .bamby-blog-card__meta {
	margin: 0 18px 10px !important;
	color: #666;
	font-size: 14px;
}

.blog .bamby-blog-card__excerpt {
	display: -webkit-box;
	flex: 1 1 auto;
	margin: 0 !important;
	padding: 0 18px 20px !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	font-size: 16px;
	line-height: 1.65;
}

/* Single articles use one calm reading column and a restrained feature image. */
.single-post main.site-main {
	width: min(100% - 48px, 1080px) !important;
	max-width: 1080px !important;
	margin: 0 auto !important;
	padding: 48px 0 76px !important;
}

.single-post article {
	width: 100% !important;
	margin: 0 !important;
}

.single-post .post-image,
.single-post .featured-image,
.single-post .inside-article > .post-image {
	width: min(100%, 1000px) !important;
	margin: 0 auto 30px !important;
}

.single-post .post-image img,
.single-post .featured-image img,
.single-post .inside-article > .post-image img {
	display: block;
	width: 100% !important;
	max-height: 560px !important;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 18px !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.single-post .entry-header {
	width: min(100%, 900px) !important;
	margin: 0 auto 34px !important;
	text-align: center;
}

.single-post .entry-title {
	margin: 0 0 12px !important;
	font-size: clamp(34px, 5vw, 56px) !important;
	line-height: 1.1 !important;
	letter-spacing: -.025em;
	text-wrap: balance;
}

.single-post .entry-meta {
	color: #666;
	font-size: 14px;
}

.single-post .entry-content {
	width: min(100%, 800px) !important;
	max-width: 800px !important;
	margin: 0 auto !important;
	font-size: 17px;
	line-height: 1.78;
}

.single-post .entry-content > h1:first-of-type {
	display: none !important;
}

.single-post .entry-content p:empty {
	display: none !important;
}

.single-post .entry-content p {
	margin: 0 0 18px !important;
}

.single-post .entry-content h2 {
	margin: 42px 0 15px !important;
	font-size: clamp(28px, 3.2vw, 36px) !important;
	line-height: 1.22 !important;
	text-wrap: balance;
}

.single-post .entry-content h3 {
	margin: 30px 0 12px !important;
	font-size: clamp(22px, 2.6vw, 27px) !important;
	line-height: 1.3 !important;
	text-wrap: balance;
}

.single-post .entry-content h4 {
	margin: 24px 0 10px !important;
	font-size: 20px !important;
	line-height: 1.35 !important;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
	margin: 0 0 22px 22px !important;
	padding-left: 18px !important;
}

.single-post .entry-content li {
	margin-bottom: 8px;
}

.single-post .entry-content img,
.single-post .entry-content iframe,
.single-post .entry-content video {
	max-width: 100% !important;
	border-radius: 14px;
}

.single-post .entry-content hr {
	margin: 38px 0 !important;
	border: 0;
	border-top: 1px solid #e1e1e1;
}

.single-post .entry-content table {
	display: table;
	width: 100% !important;
	margin: 24px 0 !important;
	font-size: 15px;
	border-collapse: collapse;
}

.single-post .entry-content th,
.single-post .entry-content td {
	padding: 12px !important;
	border: 1px solid #dedede !important;
	text-align: left;
	vertical-align: top;
}

.single-post .entry-footer,
.single-post .post-navigation {
	width: min(100%, 800px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (max-width: 1024px) {
	.blog .bamby-blog-column {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.blog main.bamby-blog-index,
	.single-post main.site-main {
		width: min(100% - 28px, 1180px) !important;
		padding-top: 34px !important;
		padding-bottom: 52px !important;
	}
	.blog .bamby-blog-column {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}
	.blog .bamby-blog-archive-title {
		margin-bottom: 26px !important;
		font-size: 34px !important;
	}
	.single-post .post-image img,
	.single-post .featured-image img,
	.single-post .inside-article > .post-image img {
		max-height: 340px !important;
		border-radius: 14px !important;
	}
	.single-post .entry-title {
		font-size: 34px !important;
	}
	.single-post .entry-content {
		font-size: 16px;
		line-height: 1.72;
	}
	.single-post .entry-content h2 {
		margin-top: 34px !important;
		font-size: 28px !important;
	}
}


/* BAMBY CONTACT ROW TARGET CORRECTION - 2026-08-15 */
.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(3) {
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(3) > .bamby-column {
	padding: 20px 22px !important;
	background: #f7f7f7;
	border: 1px solid #e1e1e1;
	border-radius: 14px;
	box-shadow: 0 7px 20px rgba(0, 0, 0, .06);
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(4) {
	padding: 28px !important;
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

@media (max-width: 767px) {
	.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(4) {
		padding: 20px 16px !important;
	}
}


/* BAMBY CART DISABLED ACTION CONTRAST FINAL - 2026-08-15 */
body.page-id-987508413 .woocommerce-cart-form button[name="update_cart"]:disabled,
body.page-id-987508413 .woocommerce-cart-form button[name="update_cart"][disabled] {
	background: #f1f1f1 !important;
	border-color: #c8c8c8 !important;
	color: #4f4f4f !important;
	-webkit-text-fill-color: #4f4f4f !important;
	opacity: 1 !important;
}


/* =====================================================================
   BAMBY CHECKOUT LOGIN/COUPON NOTICE COMPACT FIX - 2026-08-15
   ===================================================================== */
body.woocommerce-checkout .user-registration-form-login-toggle {
  margin: 0 0 12px !important;
}
body.woocommerce-checkout .user-registration-form-login-toggle .woocommerce-info {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 7px;
  width: 100%;
  height: auto !important;
  min-height: 52px;
  margin: 0 !important;
  padding: 12px 18px !important;
  background: #111 !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #fff !important;
}
body.woocommerce-checkout .user-registration-form-login-toggle .woocommerce-info a,
body.woocommerce-checkout .user-registration-form-login-toggle .woocommerce-info a:visited {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.woocommerce-checkout .user-registration-form-login-toggle + #user-registration:has(form.user-registration-form-login[style*="display: none"]) {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  height: auto !important;
  line-height: 1.35 !important;
}

/* =====================================================================
   BAMBY GLOBAL CONTENT START + CATEGORY INTRO SYSTEM - 2026-08-15
   ===================================================================== */
.tax-product_cat .site-main {
  padding-top: 36px !important;
}
.tax-product_cat .woocommerce-products-header {
  max-width: 940px;
  margin: 0 auto 28px !important;
  text-align: center;
}
.tax-product_cat .woocommerce-products-header__title {
  margin: 0 0 10px !important;
}
.tax-product_cat .term-description {
  max-width: 860px;
  margin: 0 auto !important;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.65;
}
.tax-product_cat .term-description p {
  margin: 0 !important;
}

/* =====================================================================
   BAMBY MY ACCOUNT ARRIVALS + LOGIN POLISH - 2026-08-15
   ===================================================================== */
.bamby-section--account > .bamby-row {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.bamby-section--account .ur-form-title {
  display: none !important;
}
.bamby-section--account h1 {
  margin-bottom: 24px !important;
}
.bamby-section--account-arrivals {
  padding-top: 30px !important;
  padding-bottom: 34px !important;
}
.bamby-section--account-arrivals h2 {
  margin: 0 0 18px !important;
}
.bamby-section--account-arrivals .woocommerce.columns-6 {
  position: relative;
}
.bamby-arrivals-nav button {
  display: none;
}

/* =====================================================================
   BAMBY BERROCKET MOBILE FILTER GRID - 2026-08-15
   ===================================================================== */
@media (max-width: 767px) {
  body:not(.home):not(.single-product) #page {
    padding-top: 108px !important;
  }
  .tax-product_cat .site-main {
    padding-top: 24px !important;
    padding-bottom: 34px !important;
  }
  .tax-product_cat .woocommerce-products-header {
    margin-bottom: 20px !important;
    padding-inline: 14px;
  }
  .tax-product_cat .woocommerce-products-header__title {
    margin-bottom: 8px !important;
  }
  .tax-product_cat .term-description {
    font-size: 14px;
    line-height: 1.55;
  }
  .bamby-section--account {
    padding-top: 22px !important;
    padding-bottom: 24px !important;
  }
  .bamby-section--account h1 {
    margin-bottom: 20px !important;
  }
  .bamby-section--account-arrivals {
    padding-top: 24px !important;
    padding-bottom: 28px !important;
  }
  .bamby-section--account-arrivals h2 {
    margin-bottom: 14px !important;
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.15;
  }
  .bamby-section--account-arrivals .woocommerce.columns-6 {
    overflow: visible;
  }
  .bamby-section--account-arrivals ul.products.columns-6 {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px !important;
    width: 100%;
    margin: 0 !important;
    padding: 3px 2px 14px !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
  }
  .bamby-section--account-arrivals ul.products.columns-6::-webkit-scrollbar {
    display: none;
  }
  .bamby-section--account-arrivals ul.products.columns-6 li.product {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 0 8px !important;
    scroll-snap-align: start;
  }
  .bamby-section--account-arrivals ul.products.columns-6 li.product img {
    display: block;
    width: 100% !important;
    aspect-ratio: 1;
    margin: 0 0 9px !important;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 7px 16px rgba(17,17,17,.12);
  }
  .bamby-section--account-arrivals ul.products.columns-6 .onsale {
    top: 8px !important;
    right: auto !important;
    left: 8px !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    font-size: 11px !important;
    line-height: 42px !important;
  }
  .bamby-section--account-arrivals ul.products.columns-6 .woocommerce-loop-product__title {
    min-height: 0 !important;
    margin: 0 4px 5px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }
  .bamby-section--account-arrivals ul.products.columns-6 .price {
    margin: 0 4px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }
  .bamby-arrivals-nav button {
    position: absolute;
    top: 43%;
    z-index: 6;
    display: grid;
    place-items: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #111;
    box-shadow: 0 5px 18px rgba(17,17,17,.16);
    transform: translateY(-50%);
  }
  .bamby-arrivals-nav .bamby-arrivals-prev { left: -10px; }
  .bamby-arrivals-nav .bamby-arrivals-next { right: -10px; }
  .bamby-arrivals-nav button:disabled {
    opacity: .36;
    cursor: default;
  }

  .bamby-shop-filters .berocket_ajax_filters_toggle {
    width: 100%;
    min-height: 42px;
    margin-bottom: 12px;
    border-radius: 8px;
    text-align: center;
  }
  .bamby-shop-filters .berocket_element_above_products_is_hide:not([style*="display: none"]) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px 12px;
    width: 100%;
  }
  .bamby-shop-filters .berocket_element_above_products_is_hide > .berocket_inline_filters {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .bamby-shop-filters .berocket_element_above_products_is_hide > .berocket_inline_filters:nth-child(1),
  .bamby-shop-filters .berocket_element_above_products_is_hide > .berocket_inline_filters:nth-child(2),
  .bamby-shop-filters .berocket_element_above_products_is_hide > .berocket_inline_filters:last-child {
    grid-column: 1 / -1;
  }
  .bamby-shop-filters .bapf_head h3 {
    margin: 0 0 7px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }
  .bamby-shop-filters .bapf_sfilter:not(.bapf_stylecolor) li {
    display: flex;
    align-items: flex-start;
    min-width: 0;
    margin-bottom: 4px !important;
    font-size: 12px;
    line-height: 1.25;
  }
  .bamby-shop-filters .bapf_sfilter:not(.bapf_stylecolor) li label {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .bamby-shop-filters .bapf_sfilter .roundpcs {
    flex: 0 0 auto;
    margin-left: 2px;
  }
  .bamby-shop-filters .bapf_stylecolor ul {
    display: flex !important;
    flex-wrap: wrap;
    gap: 7px !important;
  }
  .bamby-shop-filters .bapf_stylecolor li {
    margin: 0 !important;
  }
  .bamby-shop-filters .bapf_button {
    width: 100% !important;
    min-height: 44px;
    border-radius: 8px !important;
  }
  body.woocommerce-checkout .user-registration-form-login-toggle .woocommerce-info,
  body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    padding: 13px 16px !important;
  }
}

/* Loaded calculator is independent from the two-choice launcher layout. */
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  .bamby-estimator-actions__calculator,
body.single-product .bamby-estimator-actions
  .bamby-calc-wrapper.has-calculator-loaded {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  > .bamby-estimator-actions__or,
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  > .bamby-estimator-actions__plans {
  display: none !important;
}

body.single-product .bamby-calc-wrapper.has-calculator-loaded > * {
  width: 100% !important;
  max-width: none !important;
}


/* Normalize the first visible section on the shared Collections & Creations archive. */
body.post-type-archive-product main.site-main {
  padding-top: 0 !important;
}

body.post-type-archive-product .woocommerce-products-header {
  padding-top: 0 !important;
}

body.post-type-archive-product .bamby-section--our-products-section-desktop {
  padding-top: 30px !important;
}

@media (max-width: 767px) {
  body.post-type-archive-product .bamby-section--our-products-section-mobile {
    padding-top: 8px !important;
  }
}



/* Preserve the calculator frame while keeping the two launch actions compact. */
body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: start;
  width: 100% !important;
  max-width: none;
}

body.single-product .bamby-estimator-actions__calculator {
  display: block;
  grid-column: 1 / -1;
  grid-row: 1 / span 2;
  width: 100% !important;
  min-width: 0;
}

body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  width: 100% !important;
  min-width: 0;
}

body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
}

body.single-product .bamby-estimator-actions__or {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
}

body.single-product .bamby-estimator-actions__plans {
  position: relative;
  z-index: 2;
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
}

body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"],
body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color: red"] {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  max-width: none;
}

@media (min-width: 768px) {
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"],
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color: red"] {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions,
  body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    gap: 4px;
  }

  body.single-product .bamby-estimator-actions__calculator {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
  }

  body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
    display: grid !important;
  }

  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"],
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color: red"] {
    display: block !important;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin: 8px 0 0 !important;
    padding: 0 6px;
    text-align: center;
  }
}




/* BAMBY CATEGORY DESCRIPTION VISIBILITY + MOBILE GAP FINAL - 2026-08-15 */
.tax-product_cat .term-description {
  display: block !important;
}
.bamby-arrivals-nav button span {
  font-size: 29px;
  line-height: 1;
}
@media (max-width: 767px) {
  .bamby-section--account {
    padding-top: 12px !important;
  }
}


/* =====================================================================
   BAMBY INLINE MATERIAL HELP + COMPACT NOTES LINK - 2026-08-15
   ===================================================================== */
.woocommerce-product-attributes-item__label {
  overflow: visible !important;
}
.bamby-material-help {
  position: relative;
  display: inline-flex;
  margin-left: 7px;
  vertical-align: middle;
}
.bamby-material-help__button {
  display: inline-grid !important;
  place-items: center;
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #8f6a43 !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #6f4d2f !important;
  -webkit-text-fill-color: #6f4d2f !important;
  font: 700 14px/1 Arial,sans-serif !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  cursor: help;
}
.bamby-material-help__tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  width: min(310px, calc(100vw - 48px));
  padding: 11px 13px;
  border-radius: 9px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  box-shadow: 0 9px 24px rgba(17,17,17,.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.bamby-material-help:hover .bamby-material-help__tooltip,
.bamby-material-help:focus-within .bamby-material-help__tooltip,
.bamby-material-help.is-open .bamby-material-help__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bamby-material-notes.has-inline-material-help {
  margin-top: 10px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}
.bamby-material-notes.has-inline-material-help > h3,
.bamby-material-notes.has-inline-material-help > p:not(:last-child) {
  display: none !important;
}
.bamby-material-notes.has-inline-material-help > p:last-child {
  margin: 8px 0 0 !important;
}
.bamby-material-notes.has-inline-material-help > p:last-child a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .bamby-section--account {
    padding-bottom: 12px !important;
  }
  .bamby-section--account-arrivals {
    padding-top: 16px !important;
  }
  .bamby-material-help__tooltip {
    width: min(276px, calc(100vw - 70px));
    font-size: 12px;
  }
}


/* BAMBY PUBLIC SKU PRIVACY + READABLE PRODUCT TAG CHIPS - 2026-08-15 */
.single-product .product_meta .sku_wrapper {
  display: none !important;
}
.single-product .product_meta .tagged_as {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 9px !important;
  color: transparent;
  font-size: 0;
  line-height: 1;
}
.single-product .product_meta .tagged_as::before {
  content: "Related:";
  margin-right: 2px;
  color: #686868;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}
.single-product .product_meta .tagged_as a,
.single-product .product_meta .tagged_as a:visited {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  border: 1px solid #dedede;
  border-radius: 7px;
  background: #f3f3f3;
  color: #5d5d5d !important;
  -webkit-text-fill-color: #5d5d5d !important;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}
.single-product .product_meta .tagged_as a:hover,
.single-product .product_meta .tagged_as a:focus-visible {
  border-color: #8f6a43;
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
}


/* BAMBY CREATIONS & ESSENTIALS CLEAN IMAGE ARTWORK - 2026-08-15 */
.home .bamby-section--our-products-section > .bamby-row:nth-child(8) .bamby-card > img {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
}


/* BAMBY MOBILE PRODUCT TAGS SINGLE-LINE SCROLLER - 2026-08-15 */
@media (max-width: 767px) {
  .single-product .product_meta .tagged_as {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 1px 5px;
    scrollbar-width: none;
  }
  .single-product .product_meta .tagged_as::-webkit-scrollbar {
    display: none;
  }
  .single-product .product_meta .tagged_as::before,
  .single-product .product_meta .tagged_as a {
    flex: 0 0 auto;
  }
}


/* =====================================================================
   BAMBY GLOBAL UI DESIGN SYSTEM CONSISTENCY - 2026-08-15
   ===================================================================== */
body.bamby-lightweight-theme main h1 {
  color: #111 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(32px, 3.4vw, 44px) !important;
  font-weight: 500 !important;
  line-height: 1.14 !important;
  letter-spacing: -.02em;
}
body.bamby-lightweight-theme:not(.single-product) main h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.015em;
}
body.bamby-lightweight-theme:not(.single-product) main h3 {
  color: #111;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
body.bamby-lightweight-theme main p,
body.bamby-lightweight-theme main li,
body.bamby-lightweight-theme main td,
body.bamby-lightweight-theme main th {
  font-family: "Open Sans", Arial, sans-serif;
}
body.bamby-lightweight-theme main p {
  line-height: 1.65;
}

body.bamby-lightweight-theme a.bamby-button,
body.bamby-lightweight-theme main a.button,
body.bamby-lightweight-theme main button.button,
body.bamby-lightweight-theme main input.button,
body.bamby-lightweight-theme main input[type="submit"]:not(.bpls-submit),
body.bamby-lightweight-theme main button[type="submit"]:not(.bpls-submit):not(.show-password-input),
body.bamby-lightweight-theme .user-registration .ur-submit-button,
body.bamby-lightweight-theme .bapf_update {
  display: inline-flex;
  min-height: 44px !important;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  border: 1px solid #111 !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: "Open Sans", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: .04em !important;
  text-align: center;
  text-decoration: none !important;
  text-transform: none !important;
  box-shadow: none !important;
}
body.bamby-lightweight-theme a.bamby-button:hover,
body.bamby-lightweight-theme a.bamby-button:focus-visible,
body.bamby-lightweight-theme main a.button:hover,
body.bamby-lightweight-theme main a.button:focus-visible,
body.bamby-lightweight-theme main button.button:hover,
body.bamby-lightweight-theme main button.button:focus-visible,
body.bamby-lightweight-theme main input.button:hover,
body.bamby-lightweight-theme main input.button:focus-visible,
body.bamby-lightweight-theme main input[type="submit"]:not(.bpls-submit):hover,
body.bamby-lightweight-theme main input[type="submit"]:not(.bpls-submit):focus-visible,
body.bamby-lightweight-theme main button[type="submit"]:not(.bpls-submit):not(.show-password-input):hover,
body.bamby-lightweight-theme main button[type="submit"]:not(.bpls-submit):not(.show-password-input):focus-visible,
body.bamby-lightweight-theme .user-registration .ur-submit-button:hover,
body.bamby-lightweight-theme .user-registration .ur-submit-button:focus-visible,
body.bamby-lightweight-theme .bapf_update:hover,
body.bamby-lightweight-theme .bapf_update:focus-visible {
  border-color: #765435 !important;
  background: #765435 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.bamby-lightweight-theme main button:disabled,
body.bamby-lightweight-theme main input:disabled,
body.bamby-lightweight-theme main .button.disabled {
  cursor: not-allowed;
}

body.bamby-lightweight-theme main input[type="text"],
body.bamby-lightweight-theme main input[type="email"],
body.bamby-lightweight-theme main input[type="tel"],
body.bamby-lightweight-theme main input[type="password"],
body.bamby-lightweight-theme main input[type="url"],
body.bamby-lightweight-theme main input[type="number"]:not(.qty),
body.bamby-lightweight-theme main select,
body.bamby-lightweight-theme main textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
  color: #111;
  -webkit-text-fill-color: #111;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
}
body.bamby-lightweight-theme main textarea {
  min-height: 140px;
  resize: vertical;
}
body.bamby-lightweight-theme main input:focus,
body.bamby-lightweight-theme main select:focus,
body.bamby-lightweight-theme main textarea:focus {
  border-color: #765435;
  outline: 2px solid rgba(118,84,53,.18);
  outline-offset: 1px;
}
.single-product form.cart .quantity .qty,
.single-product form.cart .variations select,
.single-product form.cart .single_add_to_cart_button {
  height: 44px !important;
  min-height: 44px !important;
}
.single-product form.cart .variations select {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

body.bamby-lightweight-theme .woocommerce-message,
body.bamby-lightweight-theme .woocommerce-info,
body.bamby-lightweight-theme .woocommerce-error,
body.bamby-lightweight-theme .user-registration-message,
body.bamby-lightweight-theme .user-registration-error {
  border-radius: 10px !important;
}
body.bamby-lightweight-theme main table {
  border-color: #dedede;
}
body.bamby-lightweight-theme main th,
body.bamby-lightweight-theme main td {
  border-color: #dedede;
}

@media (max-width: 767px) {
  body.bamby-lightweight-theme main h1 {
    font-size: clamp(28px, 8vw, 34px) !important;
    line-height: 1.16 !important;
  }
  body.bamby-lightweight-theme:not(.single-product) main h2 {
    font-size: clamp(24px, 7vw, 28px);
  }
  body.bamby-lightweight-theme:not(.single-product) main h3 {
    font-size: 17px;
  }
  body.bamby-lightweight-theme main input[type="text"],
  body.bamby-lightweight-theme main input[type="email"],
  body.bamby-lightweight-theme main input[type="tel"],
  body.bamby-lightweight-theme main input[type="password"],
  body.bamby-lightweight-theme main input[type="url"],
  body.bamby-lightweight-theme main input[type="number"]:not(.qty),
  body.bamby-lightweight-theme main select {
    min-height: 46px;
  }
}


/* BAMBY PLUGIN FORM CONTROL CONSISTENCY FINAL - 2026-08-15 */
.single-product form.variations_form table.variations td.value > select {
  height: 44px !important;
  min-height: 44px !important;
  padding: 8px 42px 8px 18px !important;
}
.user-registration .ur-field-item input[type="text"],
.user-registration .ur-field-item input[type="email"],
.user-registration .ur-field-item input[type="tel"],
.user-registration .ur-field-item input[type="password"],
.user-registration .ur-field-item input[type="url"],
.user-registration .ur-field-item input[type="number"],
.user-registration .ur-field-item select,
.woocommerce-account .user-registration-form-login input.input-text {
  box-sizing: border-box !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 11px 13px !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  font-size: 14px !important;
}
.page-id-987508340 main input[type="text"],
.page-id-987508340 main input[type="email"],
.page-id-987508340 main input[type="tel"],
.page-id-987508340 main input[type="url"],
body.woocommerce-checkout main .form-row input.input-text,
body.woocommerce-checkout main .form-row select {
  box-sizing: border-box !important;
  height: 48px !important;
  min-height: 48px !important;
  border-radius: 10px !important;
}


/* BAMBY DISCREET PRODUCT TAG LINKS - 2026-08-15 */
.single-product .product_meta .tagged_as {
  display: block !important;
  margin-top: 7px !important;
  padding: 0 !important;
  overflow: visible !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1.45 !important;
  white-space: normal !important;
}
.single-product .product_meta .tagged_as::before {
  content: "Related: ";
  margin: 0 4px 0 0;
  color: #8b8b8b;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0;
}
.single-product .product_meta .tagged_as a,
.single-product .product_meta .tagged_as a:visited {
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #8b8b8b !important;
  -webkit-text-fill-color: #8b8b8b !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
  box-shadow: none !important;
}
.single-product .product_meta .tagged_as a:not(:last-child)::after {
  content: "  ·  ";
  color: #b0b0b0;
  -webkit-text-fill-color: #b0b0b0;
  text-decoration: none;
}
.single-product .product_meta .tagged_as a:hover,
.single-product .product_meta .tagged_as a:focus-visible {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
}
@media (max-width: 767px) {
  .single-product .product_meta .tagged_as {
    display: block !important;
    overflow: visible !important;
    padding: 0 !important;
    white-space: normal !important;
  }
  .single-product .product_meta .tagged_as::before,
  .single-product .product_meta .tagged_as a {
    display: inline !important;
  }
}


/* =====================================================================
   BAMBY MATERIAL WARNING + OVERFLOW-SAFE MOBILE POPOVER - 2026-08-15
   ===================================================================== */
.bamby-material-help__button {
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #d49a00 !important;
  -webkit-text-fill-color: #d49a00 !important;
  font: 400 16px/1 "Apple Color Emoji", "Segoe UI Emoji", sans-serif !important;
  box-shadow: none !important;
}

.bamby-material-help__button:hover,
.bamby-material-help__button:focus-visible {
  background: transparent !important;
  color: #b88100 !important;
  -webkit-text-fill-color: #b88100 !important;
  transform: none !important;
}

.bamby-material-help__tooltip {
  position: fixed !important;
  inset: auto 24px 24px auto !important;
  z-index: 100002 !important;
  width: min(420px, calc(100vw - 48px)) !important;
  max-width: none !important;
  box-sizing: border-box !important;
  transform: translateY(8px) !important;
}

.bamby-material-help:hover .bamby-material-help__tooltip,
.bamby-material-help:focus-within .bamby-material-help__tooltip,
.bamby-material-help.is-open .bamby-material-help__tooltip {
  transform: translateY(0) !important;
}

.woocommerce-product-attributes {
  max-width: 100% !important;
}

@media (max-width: 767px) {
  .bamby-material-help__tooltip {
    inset: auto 24px 24px 24px !important;
    width: auto !important;
  }

  .bamby-material-help:hover .bamby-material-help__tooltip,
  .bamby-material-help:focus-within .bamby-material-help__tooltip,
  .bamby-material-help.is-open .bamby-material-help__tooltip {
    transform: translateY(0) !important;
  }
}

/* =====================================================================
   BAMBY HEADER LIVE SEARCH ABOVE ALL PAGE CONTENT - 2026-08-15
   ===================================================================== */
.bamby-site-header:has(.bpls-results:not([hidden])) {
  overflow: visible !important;
}

.bamby-site-header:has(.bpls-results:not([hidden])),
.bamby-site-header:has(.bpls-results:not([hidden])) .bamby-header-main,
.bamby-site-header:has(.bpls-results:not([hidden])) .bamby-header-inner--main,
.bamby-header-search,
.bamby-header-search .bpls-wrapper {
  position: relative;
  z-index: 100001 !important;
}

.bamby-header-search .bpls-results {
  z-index: 100002 !important;
}



/* BAMBY SEARCH FIXED HEADER PRESERVATION - 2026-08-15 */
.bamby-site-header:has(.bpls-results:not([hidden])) {
  position: fixed !important;
}


/* BAMBY WARNING ICON COMPACT INLINE ALIGNMENT - 2026-08-15 */
.bamby-material-help { margin-left: 3px !important; }
.bamby-material-help__button { width:18px !important; min-width:18px !important; height:18px !important; min-height:18px !important; font-size:14px !important; }
.bamby-material-help__button img.emoji { width:14px !important; height:14px !important; margin:0 !important; }


/* BAMBY COMPARISON LINK ATTACHED TO ADDITIONAL INFORMATION - 2026-08-15 */
.bamby-material-notes.has-inline-material-help { margin-top:5px !important; text-align:right !important; }
.bamby-material-notes.has-inline-material-help > p:last-child { margin:0 !important; }
.bamby-material-notes.has-inline-material-help > p:last-child a { min-height:30px !important; justify-content:flex-end; font-size:13px; }

/* BAMBY MOBILE HEADER SEARCH OVERLAY - 2026-08-15 */
.bamby-mobile-search-toggle { display:none !important; }
@media (max-width:767px) {
 .bamby-mobile-search-toggle { display:grid !important; place-items:center; position:absolute; top:42px; left:calc(50% - 72px); z-index:9; width:40px !important; min-width:40px !important; height:40px !important; min-height:40px !important; margin:0 !important; padding:8px !important; border:0 !important; border-radius:50% !important; background:transparent !important; color:#111 !important; -webkit-text-fill-color:#111 !important; box-shadow:none !important; }
 .bamby-mobile-search-toggle:hover,.bamby-mobile-search-toggle:focus-visible { background:#f3f3f3 !important; color:#111 !important; -webkit-text-fill-color:#111 !important; transform:none !important; }
 .bamby-mobile-search-toggle svg { width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; }
 .bamby-site-header.is-search-open { overflow:visible !important; }
 .bamby-site-header.is-search-open .bamby-header-search { display:block !important; position:absolute !important; top:94px; left:12px; right:12px; z-index:100003 !important; width:auto !important; max-width:none !important; margin:0 !important; }
 .bamby-site-header.is-search-open .bpls-wrapper,.bamby-site-header.is-search-open .bpls-search-shell,.bamby-site-header.is-search-open .bpls-results { width:100% !important; max-width:none !important; }
 .bamby-site-header.is-search-open .bpls-search-shell { border-radius:10px; background:#fff; box-shadow:0 10px 30px rgba(0,0,0,.2); }
 .bamby-site-header.is-search-open .bpls-input { min-height:48px !important; border-radius:10px 0 0 10px !important; font-size:16px !important; }
 .bamby-site-header.is-search-open .bpls-submit { min-height:48px !important; height:48px !important; border-radius:0 10px 10px 0 !important; }
 .bamby-site-header.is-search-open .bpls-results:not([hidden]) { top:calc(100% + 6px) !important; z-index:100004 !important; max-height:min(60vh,430px); overflow-y:auto; border-radius:10px; box-shadow:0 14px 34px rgba(0,0,0,.24); }
}


/* BAMBY ADDITIONAL INFO EXACT LINK GAP - 2026-08-15 */
.woocommerce-Tabs-panel--additional_information .woocommerce-product-attributes { margin-bottom:0 !important; }


/* BAMBY MOBILE ATTRIBUTE LABEL BALANCE - 2026-08-15 */
@media (max-width:767px) {
 .woocommerce-product-attributes th { width:46% !important; }
 .woocommerce-product-attributes td { width:54% !important; }
}


/* BAMBY WARNING ICON SINGLE-LINE FINAL - 2026-08-15 */
.bamby-material-help { margin-left:2px !important; }
.bamby-material-help__button { width:15px !important; min-width:15px !important; height:15px !important; min-height:15px !important; font-size:13px !important; }
.bamby-material-help__button img.emoji { width:13px !important; height:13px !important; }


/* =====================================================================
   BAMBY HOMEPAGE PRODUCT IMAGE TREATMENT - 2026-08-15
   ===================================================================== */
.bamby-section--featured-products-section li.product {
  overflow: visible !important;
  padding: 0 0 12px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.bamby-section--featured-products-section li.product img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
  object-fit: cover !important;
}

.bamby-section--our-products-section .bamby-media,
.bamby-section--our-products-section .bamby-media img {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.bamby-section--our-products-section .bamby-media img {
  object-fit: contain !important;
}



/* BAMBY HOMEPAGE NEW ARRIVALS IMAGE-ONLY SHADOW FINAL - 2026-08-15 */
.bamby-section--featured-products-section .woocommerce ul.products li.product { overflow:visible !important; padding:0 0 12px !important; border:0 !important; border-radius:0 !important; background:transparent !important; box-shadow:none !important; }
.bamby-section--featured-products-section .woocommerce ul.products li.product img { width:100% !important; height:auto !important; aspect-ratio:1/1; border-radius:12px !important; background:transparent !important; box-shadow:0 8px 20px rgba(0,0,0,.18) !important; object-fit:cover !important; }


/* =====================================================================
   BAMBY BLOG ARCHIVE + ARTICLE FINAL POLISH - 2026-08-15
   ===================================================================== */
.blog .bamby-blog-archive-title {
  clip-path: none !important;
}

.blog #right-sidebar,
.blog .widget-area,
.single-post #right-sidebar,
.single-post .widget-area {
  display: none !important;
}

.single-post .inside-article {
  display: flex;
  flex-direction: column;
}

.single-post .inside-article > .entry-header {
  order: 1;
  margin-bottom: 26px !important;
}

.single-post .inside-article > .featured-image,
.single-post .inside-article > .post-image {
  order: 2;
  width: min(100%, 900px) !important;
  margin: 0 auto 38px !important;
}

.single-post .inside-article > .featured-image img,
.single-post .inside-article > .post-image img {
  max-height: 440px !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single-post .inside-article > .entry-content {
  order: 3;
}

.single-post .inside-article > .entry-meta {
  order: 4;
}

@media (max-width: 640px) {
  .single-post .inside-article > .entry-header {
    margin-bottom: 20px !important;
  }

  .single-post .inside-article > .featured-image,
  .single-post .inside-article > .post-image {
    margin-bottom: 28px !important;
  }

  .single-post .inside-article > .featured-image img,
  .single-post .inside-article > .post-image img {
    max-height: 280px !important;
    border-radius: 14px !important;
  }
}



/* =====================================================================
   BAMBY FINAL COMMERCE + LEGAL CONSISTENCY - 2026-08-15
   ===================================================================== */

/* Keep the account form's own Welcome heading, without a duplicate Login. */
body.woocommerce-account .ur-frontend-form.login-registration > .ur-form-row > .ur-form-grid > .ur-form-title {
  display: none !important;
}

/* Protect public phone readability in every link state. */
.bamby-header-action.bamby-phone,
.bamby-header-action.bamby-phone:link,
.bamby-header-action.bamby-phone:visited,
.bamby-header-action.bamby-phone:hover,
.bamby-header-action.bamby-phone:focus,
.bamby-header-action.bamby-phone:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

/* Variation names belong inside their dropdowns, not in a detached label. */
.single-product form.variations_form table.variations th.label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.single-product form.variations_form table.variations td.value {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  padding-inline: 0 !important;
}

.single-product form.variations_form table.variations td.value select {
  width: min(100%, 420px) !important;
  max-width: 420px !important;
  margin: 0 auto !important;
  text-align: center;
  text-align-last: center;
}

.single-product form.variations_form .reset_variations {
  flex: 0 0 100%;
  width: auto !important;
  margin: 0 auto !important;
  text-align: center;
}

/* Enabled actions stay clear; disabled Update cart remains visibly disabled. */
.woocommerce-cart button[name="update_cart"]:not(:disabled) {
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Long-form legal reading layout: comfortable line length and hierarchy. */
body.page-id-987508508 .entry-content > .bamby-section {
  padding: 28px 24px 64px !important;
}

body.page-id-987508508 .entry-content .bamby-rich-text {
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin-inline: auto !important;
}

body.page-id-987508508 .bamby-rich-text h1 {
  margin: 0 0 10px !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.08 !important;
}

body.page-id-987508508 .bamby-rich-text h2 {
  margin: 42px 0 14px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  font-size: clamp(23px, 2.3vw, 29px) !important;
  line-height: 1.2 !important;
  letter-spacing: .01em;
}

body.page-id-987508508 .bamby-rich-text h3 {
  margin: 28px 0 10px !important;
  font-size: clamp(18px, 1.7vw, 21px) !important;
  line-height: 1.3 !important;
}

body.page-id-987508508 .bamby-rich-text p,
body.page-id-987508508 .bamby-rich-text li {
  max-width: 78ch;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

body.page-id-987508508 .bamby-rich-text p {
  margin: 0 0 16px !important;
}

body.page-id-987508508 .bamby-rich-text hr {
  margin: 24px 0 34px !important;
  border-color: #ddd !important;
}

@media (max-width: 767px) {
  body.page-id-987508508 .entry-content > .bamby-section {
    padding: 18px 18px 44px !important;
  }

  body.page-id-987508508 .bamby-rich-text h2 {
    margin-top: 34px !important;
  }

  body.page-id-987508508 .bamby-rich-text h3 {
    margin-top: 24px !important;
  }

  body.page-id-987508508 .bamby-rich-text p,
  body.page-id-987508508 .bamby-rich-text li {
    font-size: 15.5px !important;
    line-height: 1.68 !important;
  }
}

/* Product recommendations share the homepage card interaction and typography. */
.single-product .upsells.products ul.products li.product,
.single-product .related.products ul.products li.product {
  transition: transform .2s ease !important;
}

.single-product .upsells.products ul.products li.product:hover,
.single-product .upsells.products ul.products li.product:focus-within,
.single-product .related.products ul.products li.product:hover,
.single-product .related.products ul.products li.product:focus-within {
  transform: translateY(-4px);
}

.single-product .upsells.products ul.products li.product img,
.single-product .related.products ul.products li.product img {
  transition: box-shadow .2s ease !important;
}

.single-product .upsells.products ul.products li.product:hover img,
.single-product .upsells.products ul.products li.product:focus-within img,
.single-product .related.products ul.products li.product:hover img,
.single-product .related.products ul.products li.product:focus-within img {
  box-shadow: 0 13px 24px rgba(0,0,0,.18) !important;
}

.single-product .upsells.products .woocommerce-loop-product__title,
.single-product .related.products .woocommerce-loop-product__title {
  margin: 8px 0 0 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.single-product .upsells.products .price,
.single-product .related.products .price {
  margin: 5px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}

@media (prefers-reduced-motion: reduce) {
  .single-product .upsells.products ul.products li.product,
  .single-product .related.products ul.products li.product,
  .single-product .upsells.products ul.products li.product img,
  .single-product .related.products ul.products li.product img {
    transition: none !important;
  }
}

/* =====================================================================
   BAMBY HOMEPAGE MOBILE PARITY - 2026-08-15
   ===================================================================== */
@media (max-width: 767px) {
  /* The mobile homepage uses the same live New Arrivals data as desktop. */
  body.home .bamby-section--featured-products-section {
    display: block !important;
    padding: 34px 0 30px !important;
    background: #f7f7f7 !important;
  }

  body.home .bamby-section--featured-products-section > .bamby-row {
    width: 100% !important;
    max-width: none !important;
    padding: 0 16px !important;
  }

  body.home .bamby-section--featured-products-section h2 {
    margin: 0 0 16px !important;
    font-size: 25px !important;
    line-height: 1.15 !important;
    text-align: center;
  }

  body.home .bamby-section--featured-products-section .woocommerce.columns-6 {
    position: relative;
    overflow: visible;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6 {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px !important;
    width: 100%;
    margin: 0 !important;
    padding: 3px 2px 14px !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6::-webkit-scrollbar {
    display: none;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6 li.product {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 0 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    scroll-snap-align: start;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6 li.product img {
    display: block;
    width: 100% !important;
    aspect-ratio: 1;
    margin: 0 0 9px !important;
    border-radius: 12px !important;
    object-fit: cover;
    box-shadow: 0 7px 16px rgba(17,17,17,.14) !important;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6 .onsale {
    display: block !important;
    top: 8px !important;
    right: auto !important;
    left: 8px !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    font-size: 11px !important;
    line-height: 42px !important;
  }

  body.home .bamby-section--featured-products-section .woocommerce-loop-product__title {
    min-height: 0 !important;
    margin: 0 4px 5px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  body.home .bamby-section--featured-products-section .price {
    margin: 0 4px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  body.home .bamby-section--featured-products-section .bamby-arrivals-nav button {
    top: 39% !important;
  }

  /* Preserve the transparent Stone Slabs artwork on the mobile layout too. */
  body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Slabs Collection Showroom"]) {
    width: min(240px, 72vw) !important;
    margin-inline: auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Slabs Collection Showroom"] {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}



/* Final variation label and product separator correction - 2026-08-15 */
.single-product form.variations_form table.variations th.label {
  display: none !important;
}

.single-product .summary form.cart {
  margin-bottom: 24px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid #eee !important;
}

.single-product .summary .product_meta {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}



/* =====================================================================
   BAMBY CONTACT + BOOKINGS COMPACT LAYOUT - 2026-08-15
   ===================================================================== */

/* Remove the redundant heading; the form already has “How can we help?”. */
.bamby-section--contact-form-map > .bamby-grid--1:last-child > .bamby-column > .bamby-rich-text:first-child {
  display: none !important;
}

@media (min-width: 768px) {
  .bamby-section--contact-form-map {
    display: grid !important;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, 1fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    gap: 22px 24px;
    width: min(100%, 1080px) !important;
    max-width: 1080px !important;
    margin-inline: auto !important;
    padding: 42px 28px 54px !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-phone,
  .bamby-section--contact-form-map > .bamby-hide-phone > .bamby-column {
    display: contents !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-phone .bamby-rich-text {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-phone .bamby-embed {
    grid-column: 1;
    grid-row: 2 / span 2;
    min-width: 0;
  }

  .bamby-section--contact-form-map > .bamby-hide-phone .bamby-embed iframe {
    display: block;
    width: 100% !important;
    height: 800px !important;
    border-radius: 12px;
  }

  .bamby-section--contact-form-map > .bamby-grid--2 {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 18px !important;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fafafa;
  }

  .bamby-section--contact-form-map > .bamby-grid--2 .bamby-column {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--1:last-child {
    grid-column: 2;
    grid-row: 3;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--1:last-child > .bamby-column,
  .bamby-section--contact-form-map .bamby-contact,
  .bamby-section--contact-form-map .bamby-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .bamby-section--contact-form-map .bamby-contact {
    padding: 20px !important;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fff;
  }
}

@media (max-width: 767px) {
  .bamby-section--contact-form-map {
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    padding: 28px 20px 44px !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop,
  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop > .bamby-column {
    display: contents !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop .bamby-rich-text {
    order: 1;
    margin: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--2 {
    order: 2;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 16px !important;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fafafa;
  }

  .bamby-section--contact-form-map > .bamby-grid--2 .bamby-column {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--1:last-child {
    order: 3;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--1:last-child > .bamby-column,
  .bamby-section--contact-form-map .bamby-contact,
  .bamby-section--contact-form-map .bamby-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .bamby-section--contact-form-map .bamby-contact {
    padding: 18px !important;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fff;
  }

  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop .bamby-embed {
    order: 4;
    width: 100% !important;
    margin: 6px 0 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop .bamby-embed iframe {
    display: block;
    width: 100% !important;
    height: 1200px !important;
    border-radius: 12px;
  }
}



/* Variation name is announced by the select aria-label and shown in its placeholder. */
body.single-product .bamby-product-top .summary form.variations_form table.variations tbody tr th.label,
body.single-product .bamby-product-top .summary form.variations_form table.variations tr th.label {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}



/* =====================================================================
   BAMBY BEROCKET COLOUR SWATCHES - 2026-08-15
   Lightweight replacement for the removed Divi compatibility stylesheet.
   ===================================================================== */
.bapf_attr_pa_colors .bapf_body ul {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.bapf_attr_pa_colors .bapf_body li:not(.bapf_hide) {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.bapf_attr_pa_colors .bapf_body li label {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  cursor: pointer;
}

.bapf_attr_pa_colors .bapf_clr_span {
  display: block !important;
  position: relative;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  border: 1px solid #bdbdbd !important;
  border-radius: 50% !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
  overflow: hidden;
}

.bapf_attr_pa_colors .bapf_clr_span_abslt,
.bapf_attr_pa_colors .bapf_clr_span .pcs {
  display: none !important;
}

.bapf_attr_pa_colors input:checked + label .bapf_clr_span {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.bapf_attr_pa_colors label:hover .bapf_clr_span,
.bapf_attr_pa_colors label:focus-visible .bapf_clr_span {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,.18);
}

@media (prefers-reduced-motion: no-preference) {
  .bapf_attr_pa_colors .bapf_clr_span {
    transition: transform .16s ease, box-shadow .16s ease;
  }
}

@media (max-width: 767px) {
  .berocket_element_above_products_is_hide_toggle.berocket_ajax_filters_toggle {
    margin-bottom: 10px !important;
  }
}



/* Keep dynamic variation placeholders and selected values readable everywhere. */
body.single-product form.variations_form select,
body.single-product form.variations_form select:invalid,
body.single-product form.variations_form select:valid {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  opacity: 1 !important;
  background-color: #fff !important;
}

body.single-product form.variations_form select option {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background: #fff !important;
}



/* Override the former label-as-placeholder rule now that the dropdown owns the label. */
body.single-product form.variations_form table.variations select:has(option[value=""]:checked),
body.single-product .summary form.variations_form table.variations td.value > select:has(option[value=""]:checked) {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background-color: #fff !important;
  opacity: 1 !important;
}


/* =====================================================================
   BAMBY MOBILE SERVICES FINAL LAYOUT - 2026-08-16
   Two-column fee cards, visible card actions and footer-safe final CTA.
   ===================================================================== */
@media (max-width: 767px) {
  .page-id-987509196 .bamby-section--our-services-and-fees-section {
    padding: 30px 0 36px !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section > .bamby-row {
    width: calc(100% - 32px) !important;
    max-width: 520px !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 16px !important;
    row-gap: 20px !important;
    width: 100% !important;
    margin: 18px 0 0 !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products li.product {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    display: block !important;
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products li.product a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    color: #111 !important;
    text-align: center !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products li.product a img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    margin: 0 0 9px !important;
    object-fit: cover;
    border-radius: 12px !important;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .15) !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.28 !important;
    overflow-wrap: anywhere;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile > .bamby-row {
    width: calc(100% - 24px) !important;
    max-width: 520px !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile > .bamby-grid--3 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px !important;
    align-items: start !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile > .bamby-grid--3 > .bamby-column {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile .bamby-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile .bamby-actions {
    position: relative !important;
    z-index: 3;
    display: flex !important;
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    width: 100% !important;
    min-height: 44px !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile .bamby-button,
  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section .bamby-button {
    display: inline-flex !important;
    min-height: 44px !important;
    padding: 10px 18px !important;
    color: #fff !important;
    background: #111 !important;
    border-color: #111 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    text-align: center;
  }

  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section {
    min-height: 0 !important;
    padding: 38px 0 64px !important;
    margin-bottom: 18px !important;
  }

  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section > .bamby-row {
    width: calc(100% - 48px) !important;
  }

  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section .bamby-grid--5 > .bamby-column:last-child {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section .bamby-actions {
    display: flex !important;
    justify-content: flex-end !important;
    width: 100% !important;
    min-height: 44px !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
  }
}


/* =====================================================================
   BAMBY SHARED PRODUCT-CARD + MOBILE TOP SPACING FINAL - 2026-08-16
   ===================================================================== */
.bamby-section--account-arrivals,
body.home .bamby-section--featured-products-section,
body.single-product .bamby-upsell-carousel {
  --bamby-card-title-price-gap: 4px;
}

.bamby-section--account-arrivals ul.products li.product,
body.home .bamby-section--featured-products-section ul.products li.product,
body.single-product .bamby-upsell-carousel ul.products li.product {
  transition: transform .2s ease, box-shadow .2s ease !important;
  will-change: transform;
}

.bamby-section--account-arrivals ul.products li.product:hover,
.bamby-section--account-arrivals ul.products li.product:focus-within,
body.home .bamby-section--featured-products-section ul.products li.product:hover,
body.home .bamby-section--featured-products-section ul.products li.product:focus-within,
body.single-product .bamby-upsell-carousel ul.products li.product:hover,
body.single-product .bamby-upsell-carousel ul.products li.product:focus-within {
  transform: translateY(-3px) !important;
}

.bamby-section--account-arrivals ul.products li.product .woocommerce-loop-product__title,
body.home .bamby-section--featured-products-section ul.products li.product .woocommerce-loop-product__title,
body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
  min-height: 0 !important;
  margin-bottom: var(--bamby-card-title-price-gap) !important;
  padding-bottom: 0 !important;
}

.bamby-section--account-arrivals ul.products li.product .price,
body.home .bamby-section--featured-products-section ul.products li.product .price,
body.single-product .bamby-upsell-carousel ul.products li.product .price {
  display: block;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .bamby-section--account-arrivals ul.products li.product,
  body.home .bamby-section--featured-products-section ul.products li.product,
  body.single-product .bamby-upsell-carousel ul.products li.product {
    transition: none !important;
    will-change: auto;
  }
}

@media (max-width: 767px) {
  /* A fixed mobile header is 86px tall. The shared 108px offset leaves 22px. */
  body.admin-bar.single-product #page {
    padding-top: 108px !important;
  }

  body.blog .site-main,
  .tax-product_cat .site-main {
    padding-top: 8px !important;
  }

  .woocommerce.archive .woocommerce-archive-wrapper {
    margin-top: 0 !important;
  }

  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop {
    padding-top: 24px !important;
  }

  .bamby-section--account-arrivals {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 16px !important;
    padding-bottom: 38px !important;
  }

  .bamby-section--account-arrivals .bamby-actions {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
  }

  .bamby-section--account-arrivals ul.products.columns-6 .woocommerce-loop-product__title,
  body.home .bamby-section--featured-products-section ul.products.columns-6 .woocommerce-loop-product__title,
  body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
    margin-bottom: var(--bamby-card-title-price-gap) !important;
  }
}

/* =====================================================================
   STONE SLAB PURCHASE NEXT STEPS - 2026-08-16
   Appears after Add to cart and before product tags on slab products.
   ===================================================================== */
body.single-product.bamby-stone-slab-product .bamby-stone-next-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0 !important;
  padding: 16px 0 14px;
  border-top: 1px solid #e3e3e3;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 66px;
  padding: 10px 12px;
  color: #111 !important;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  text-align: center;
  text-decoration: none !important;
  transition: transform .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item span {
  display: block;
  margin: 0 0 3px;
  font-size: 12px;
  line-height: 1.3;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item:hover,
body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item:focus-visible {
  color: #fff !important;
  background: #111;
  border-color: #111;
  transform: translateY(-2px);
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps + .product_meta {
  margin-top: 0 !important;
}

body.single-product #slab-calculator {
  scroll-margin-top: 150px;
}

@media (max-width: 767px) {
  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 14px !important;
    padding: 14px 0 12px;
  }

  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    min-height: 48px;
    padding: 8px 11px;
    text-align: left;
  }

  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item span {
    margin: 0;
  }

  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item strong {
    text-align: right;
  }

  body.single-product #slab-calculator {
    scroll-margin-top: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item {
    transition: none;
  }
}

/* Final compact alignment beneath the purchase divider. */
body.single-product.bamby-stone-slab-product .summary form.cart {
  margin-bottom: 10px !important;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps {
  margin-top: 0 !important;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 767px) {
  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps {
    margin-top: 0 !important;
    padding-top: 0;
  }
}

/* Bamby Stone Services use the same compact post-purchase layout with service copy. */
body.single-product.bamby-service-product .bamby-stone-next-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 !important;
  padding: 0 0 14px;
  border-top: 0;
}

body.single-product.bamby-service-product .bamby-stone-next-steps__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 66px;
  padding: 10px 12px;
  color: #111 !important;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  text-align: center;
  text-decoration: none !important;
  transition: transform .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease;
}

body.single-product.bamby-service-product .bamby-stone-next-steps__item span {
  display: block;
  margin: 0 0 3px;
  font-size: 12px;
  line-height: 1.3;
}

body.single-product.bamby-service-product .bamby-stone-next-steps__item strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

body.single-product.bamby-service-product .bamby-stone-next-steps__item:hover,
body.single-product.bamby-service-product .bamby-stone-next-steps__item:focus-visible {
  color: #fff !important;
  background: #111;
  border-color: #111;
  transform: translateY(-2px);
}

body.single-product.bamby-service-product .summary form.cart {
  margin-bottom: 10px !important;
}

@media (max-width: 767px) {
  body.single-product.bamby-service-product .bamby-stone-next-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 0 0 12px;
  }

  body.single-product.bamby-service-product .bamby-stone-next-steps__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    min-height: 48px;
    padding: 8px 11px;
    text-align: left;
  }

  body.single-product.bamby-service-product .bamby-stone-next-steps__item span {
    margin: 0;
  }

  body.single-product.bamby-service-product .bamby-stone-next-steps__item strong {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.single-product.bamby-service-product .bamby-stone-next-steps__item {
    transition: none;
  }
}

/* =====================================================================
   ESTIMATOR SELF-SERVICE OR SEND-PLANS CHOICE - 2026-08-16
   ===================================================================== */
body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  width: min(100%, 720px) !important;
  max-width: 720px;
  margin: 0 auto !important;
}

body.single-product .bamby-estimator-actions__calculator,
body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
  width: 100% !important;
  min-width: 0;
}

body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator,
body.single-product .bamby-estimator-actions__plans {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 48px !important;
  height: 100%;
  margin: 0 !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  line-height: 1.25 !important;
  text-align: center;
  white-space: normal;
}

body.single-product .bamby-estimator-actions__or {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper > p[style*="color:red"] {
  display: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) {
  display: block;
  width: 100%;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) > .bamby-estimator-actions__or,
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) > .bamby-estimator-actions__plans {
  display: none !important;
}

.bamby-plan-estimate-dialog {
  width: min(500px, calc(100% - 32px));
  max-width: 500px;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  color: #111;
  background: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  overflow: auto;
}

.bamby-plan-estimate-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
}

.bamby-plan-estimate-dialog__panel {
  position: relative;
  margin: 0;
  padding: 26px;
}

.bamby-plan-estimate-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  color: #111 !important;
  background: #f1f1f1 !important;
  border: 0 !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.bamby-plan-estimate-dialog__eyebrow {
  margin: 0 44px 5px 0;
  color: #765435;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bamby-plan-estimate-dialog h2 {
  margin: 0 44px 16px 0;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.15;
}

.bamby-plan-estimate-dialog ol {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.bamby-plan-estimate-dialog li,
.bamby-plan-estimate-dialog p {
  font-size: 15px;
  line-height: 1.55;
}

.bamby-plan-estimate-dialog__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.bamby-plan-estimate-dialog__actions .bamby-button {
  min-height: 44px;
  padding: 10px 18px;
  color: #fff !important;
  background: #111 !important;
  border-color: #111 !important;
  border-radius: 10px !important;
}

@media (max-width: 767px) {
  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    gap: 4px;
  }

  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator,
  body.single-product .bamby-estimator-actions__plans {
    min-height: 60px !important;
    padding: 8px 7px !important;
    font-size: 11.5px !important;
  }

  body.single-product .bamby-estimator-actions__or {
    min-width: 18px;
    font-size: 10px;
  }

  .bamby-plan-estimate-dialog__panel {
    padding: 22px 18px 18px;
  }

  .bamby-plan-estimate-dialog h2 {
    font-size: 25px;
  }
}

/* Keep slab next steps directly after the cart divider and before product tags. */
body.single-product.bamby-stone-slab-product .summary .bamby-stone-next-steps {
  order: 6;
}

/* Keep simple-product stock inside the purchase area, then show slab actions before tags. */
body.single-product .summary > p.stock ~ form.cart {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body.single-product .summary > p.stock {
  margin-top: 4px !important;
}

@media (max-width: 767px) {
  body.single-product.bamby-stone-slab-product .bamby-product-top .summary .bamby-stone-next-steps {
    grid-column: 1;
    grid-row: 7;
  }

  body.single-product.bamby-stone-slab-product .bamby-product-top .summary .product_meta {
    grid-column: 1;
    grid-row: 8;
  }

  body.single-product.bamby-stone-slab-product .bamby-product-top .summary:has(> p.stock) .bamby-stone-next-steps {
    grid-row: 8;
  }

  body.single-product.bamby-stone-slab-product .bamby-product-top .summary:has(> p.stock) .product_meta {
    grid-row: 9;
  }
}


/* Final estimator action sizing: preserve the calculator's desktop frame. */
body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
  width: 100% !important;
  max-width: none;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator,
body.single-product .bamby-estimator-actions__plans {
  width: min(100%, 340px) !important;
  max-width: 340px !important;
  height: 48px !important;
  min-height: 48px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-transform: none !important;
}

@media (min-width: 768px) {
  body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper > p[style*="color:red"] {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    align-items: start;
  }

  body.single-product .bamby-estimator-actions__calculator,
  body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
    display: contents;
  }

  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    height: 60px !important;
    min-height: 60px !important;
  }

  body.single-product .bamby-estimator-actions__or {
    grid-column: 2;
    grid-row: 1;
    min-height: 60px;
  }

  body.single-product .bamby-estimator-actions__plans {
    grid-column: 3;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    height: 60px !important;
    min-height: 60px !important;
    align-self: start;
  }

  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"] {
    display: block !important;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    margin: 8px 0 0 !important;
    padding: 0 6px;
    text-align: center;
  }
}

/* Final loaded state: the calculator must leave the two-choice launcher grid. */
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  .bamby-estimator-actions__calculator,
body.single-product .bamby-estimator-actions
  .bamby-calc-wrapper.has-calculator-loaded {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  > .bamby-estimator-actions__or,
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  > .bamby-estimator-actions__plans {
  display: none !important;
}

body.single-product .bamby-calc-wrapper.has-calculator-loaded > div,
body.single-product .bamby-calc-wrapper.has-calculator-loaded > iframe,
body.single-product .bamby-calc-wrapper.has-calculator-loaded > form,
body.single-product .bamby-calc-wrapper.has-calculator-loaded > section {
  width: 100% !important;
  max-width: none !important;
}

/* Keep the plans popup compact and independent from calculator sizing. */
body.single-product .bamby-product-estimator__tool > #bamby-plan-estimate-dialog.bamby-plan-estimate-dialog {
  width: min(500px, calc(100vw - 32px)) !important;
  min-width: 0 !important;
  max-width: 500px !important;
  margin: auto !important;
}

body.single-product .bamby-plan-estimate-dialog__panel {
  width: auto !important;
  max-width: none !important;
}

/* Centre the unopened estimator choices as one stable group. */
@media (min-width: 768px) {
  body.single-product .bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded)) {
    grid-template-columns: minmax(0, 340px) 24px minmax(0, 340px) !important;
    justify-content: center !important;
    column-gap: 20px !important;
  }

  body.single-product .bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
    .bamby-estimator-actions__calculator {
    display: block !important;
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    width: 100% !important;
  }

  body.single-product .bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
    .bamby-calc-wrapper:not(.has-calculator-loaded) {
    display: grid !important;
    grid-template-columns: minmax(0, 340px) 24px minmax(0, 340px) !important;
    justify-content: center !important;
    column-gap: 20px !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  body.single-product .bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded)) {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) !important;
    justify-content: stretch !important;
    column-gap: 8px !important;
  }
}

/* Compact phone guidance shown instead of loading the workspace on a narrow screen. */
body.single-product > #bamby-calculator-mobile-dialog.bamby-calculator-mobile-dialog {
  width: min(500px, calc(100vw - 32px)) !important;
  min-width: 0 !important;
  max-width: 500px !important;
  max-height: calc(100dvh - 32px);
  margin: auto !important;
  padding: 0;
  color: #111;
  background: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  overflow: auto;
}

.bamby-calculator-mobile-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
}

.bamby-calculator-mobile-dialog__panel {
  position: relative;
  margin: 0;
  padding: 24px;
}

.bamby-calculator-mobile-dialog__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  color: #111 !important;
  background: #f1f1f1 !important;
  border: 0 !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.bamby-calculator-mobile-dialog__eyebrow {
  margin: 0 44px 5px 0;
  color: #765435;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bamby-calculator-mobile-dialog h2 {
  margin: 0 44px 14px 0;
  font-size: 25px;
  line-height: 1.15;
}

.bamby-calculator-mobile-dialog p {
  font-size: 15px;
  line-height: 1.5;
}

.bamby-calculator-mobile-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}

.bamby-calculator-mobile-dialog__actions .bamby-button {
  min-height: 44px;
  padding: 9px 14px !important;
  border-radius: 10px !important;
  text-transform: none !important;
}

.bamby-calculator-mobile-dialog__dismiss {
  color: #111 !important;
  background: #fff !important;
  border: 1px solid #bbb !important;
}

.bamby-calculator-mobile-dialog__plans {
  color: #fff !important;
  background: #111 !important;
  border-color: #111 !important;
}

@media (max-width: 767px) {
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"],
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color: red"] {
    display: none !important;
  }
}

/* =====================================================================
   BAMBY POPUP SYSTEM - 2026-08-16
   Shared visual language for the estimator and calculator guidance dialogs.
   ===================================================================== */
body.single-product .bamby-site-dialog {
  width: min(500px, calc(100vw - 32px)) !important;
  min-width: 0 !important;
  max-width: 500px !important;
  max-height: calc(100dvh - 32px);
  margin: auto !important;
  padding: 0 !important;
  color: #111;
  background: #fff;
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  overflow: auto;
}

body.single-product .bamby-site-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
}

body.single-product .bamby-site-dialog__panel {
  position: relative;
  width: auto !important;
  max-width: none !important;
  margin: 0;
  padding: 26px;
}

body.single-product .bamby-site-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  color: #111 !important;
  background: #f1f1f1 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  font-family: Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.single-product .bamby-site-dialog__close:hover,
body.single-product .bamby-site-dialog__close:focus-visible {
  color: #fff !important;
  background: #111 !important;
}

body.single-product .bamby-site-dialog__eyebrow {
  margin: 0 52px 5px 0;
  color: #765435;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body.single-product .bamby-site-dialog h2 {
  margin: 0 52px 16px 0;
  color: #111;
  font-size: clamp(25px, 5vw, 32px);
  line-height: 1.15;
}

body.single-product .bamby-site-dialog p,
body.single-product .bamby-site-dialog li {
  font-size: 15px;
  line-height: 1.55;
}

body.single-product .bamby-site-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}

body.single-product .bamby-site-dialog__actions .bamby-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: .02em !important;
  text-align: center;
  text-transform: none !important;
}

@media (max-width: 767px) {
  body.single-product .bamby-site-dialog__panel {
    padding: 22px 18px 18px;
  }

  body.single-product .bamby-site-dialog__close {
    top: 10px;
    right: 10px;
  }

  body.single-product .bamby-site-dialog h2 {
    font-size: 25px;
  }
}

/* Contact page: compact details, form and useful FAQ */
.bamby-section--contact-form-map {
  display: block !important;
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.bamby-section--contact-form-map > .bamby-row:first-child,
.bamby-section--contact-form-map > .bamby-row:nth-child(2) {
  padding-top: clamp(1rem, 2vw, 2rem);
}

.bamby-section--contact-form-map > .bamby-row {
  clear: both;
  float: none !important;
}

.bamby-section--contact-form-map > .bamby-row.bamby-hide-phone {
  display: grid !important;
}

.bamby-section--contact-form-map .bamby-rich-text h1 {
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.bamby-section--contact-form-map > .bamby-contact-panel,
.bamby-section--contact-form-map > .bamby-contact-faq-row {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  grid-column: 1 / -1 !important;
}

.bamby-contact-panel {
  margin-top: clamp(1.25rem, 2.5vw, 2.25rem);
}

.bamby-contact-panel > .bamby-column {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid #dedede;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.07);
}

.bamby-contact-panel__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bamby-form-captcha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  align-items: center;
  gap: 8px 14px;
  padding: 14px;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fafafa;
}

.bamby-section--contact-form-map .bamby-form .bamby-form-captcha label {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  color: #111;
  font-weight: 700;
}

.bamby-section--contact-form-map .bamby-form .bamby-form-captcha input[type="number"] {
  width: 96px;
  margin: 0;
  text-align: center;
}

.bamby-form-captcha small {
  grid-column: 1 / -1;
  color: #5f5b56;
  font-size: 0.82rem;
  line-height: 1.4;
}

.bamby-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  color: #111;
  background: #fafafa;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.bamby-contact-detail:hover,
.bamby-contact-detail:focus-visible {
  color: #111;
  border-color: #b9b9b9;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
}

.bamby-contact-detail:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.bamby-contact-detail__icon {
  flex: 0 0 auto;
  font-size: 1.2rem;
  line-height: 1.3;
}

.bamby-contact-detail strong,
.bamby-contact-detail small {
  display: block;
}

.bamby-contact-detail strong {
  margin-bottom: 4px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.bamby-contact-detail small {
  overflow-wrap: anywhere;
  color: #5f5b56;
  font-size: 0.84rem;
  line-height: 1.45;
}

.bamby-contact-panel__intro {
  max-width: 760px;
  margin: clamp(1.25rem, 2vw, 1.75rem) auto 0;
  text-align: center;
}

.bamby-contact-panel__intro p {
  margin: 0;
}

.bamby-contact-panel .bamby-contact {
  margin-top: 1rem;
}

.bamby-contact-faq-row {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.bamby-contact-faq h2 {
  margin: 0 0 12px;
  text-align: center;
}

.bamby-contact-faq details {
  margin: 0 0 8px;
  overflow: clip;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
}

.bamby-contact-faq summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #111;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.bamby-contact-faq summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.bamby-contact-faq details[open] summary::after {
  content: "−";
}

.bamby-contact-faq summary:focus-visible {
  outline: 2px solid #111;
  outline-offset: -3px;
}

.bamby-contact-faq details > div {
  padding: 0 16px 14px;
  border-top: 1px solid #ececec;
}

.bamby-contact-faq details p {
  margin: 12px 0 0;
  color: #4f4f4f;
  line-height: 1.65;
}

.bamby-contact-faq a {
  font-weight: 600;
}

@media (max-width: 767px) {
  .bamby-section--contact-form-map > .bamby-row.bamby-hide-phone {
    display: none !important;
  }

  .bamby-section--contact-form-map > .bamby-row.bamby-hide-tablet.bamby-hide-desktop {
    display: grid !important;
  }

  .bamby-section--contact-form-map > .bamby-contact-panel,
  .bamby-section--contact-form-map > .bamby-contact-faq-row {
    width: calc(100% - 24px) !important;
  }

  .bamby-contact-panel {
    margin-top: 16px;
  }

  .bamby-contact-panel > .bamby-column {
    padding: 14px;
    border-radius: 10px;
  }

  .bamby-contact-panel__details {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bamby-form-captcha {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .bamby-section--contact-form-map .bamby-form .bamby-form-captcha input[type="number"] {
    width: 82px;
  }

  .bamby-contact-detail {
    padding: 12px;
  }

  .bamby-contact-panel__intro {
    margin-top: 16px;
    text-align: left;
  }

  .bamby-contact-faq-row {
    margin-top: 20px;
  }

  .bamby-contact-faq h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
    text-align: left;
  }

  .bamby-contact-faq summary {
    padding: 13px 14px;
  }

  .bamby-contact-faq details > div {
    padding: 0 14px 13px;
  }

  .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-button {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    float: none !important;
    width: auto !important;
    max-width: 100% !important;
    min-height: 44px;
    height: auto !important;
    margin: 12px 0 0 auto !important;
    padding: 10px 18px !important;
    overflow: visible !important;
    line-height: 1.2 !important;
    transform: none !important;
  }

  .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 100% !important;
    min-height: 44px !important;
    height: auto !important;
    max-height: none !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop,
  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop > .bamby-row,
  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-column {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop {
    padding-bottom: 28px !important;
  }
}

@media (min-width: 768px) {
  /* Match the calendar to the same 90% / 1280px frame as the site header. */
  .page-id-987508340 .bamby-section--contact-form-map {
    width: 90% !important;
    max-width: 1280px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .page-id-987508340 .bamby-section--contact-form-map > .bamby-row:first-child {
    width: 100% !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .page-id-987508340 .bamby-section--contact-form-map > .bamby-row:first-child .bamby-embed,
  .page-id-987508340 .bamby-section--contact-form-map > .bamby-row:first-child iframe {
    display: block;
    width: 100% !important;
    max-width: none !important;
  }
}

/* Compact high-contrast shared header and footer socials - 2026-08-16 */
.bamby-socials--mobile-header {
	display: none !important;
}

@media (min-width: 768px) {
	.bamby-site-header {
		background: rgba(255, 255, 255, 0.92) !important;
		border-radius: 0 0 36px 36px !important;
		-webkit-backdrop-filter: blur(16px) saturate(125%);
		backdrop-filter: blur(16px) saturate(125%);
		overflow: visible !important;
	}

	.bamby-header-top {
		background: rgba(17, 17, 17, 0.90) !important;
		color: #fff !important;
		height: 56px !important;
		min-height: 56px !important;
		position: relative !important;
		z-index: 100020 !important;
	}

	.bamby-header-inner--top {
		grid-template-columns: minmax(160px, 1fr) minmax(320px, 620px) minmax(160px, 1fr) !important;
		gap: clamp(0.8rem, 2vw, 2rem) !important;
		height: 56px !important;
		min-height: 56px !important;
		padding-block: 6px !important;
		position: relative !important;
		z-index: 100020 !important;
	}

	.bamby-logo {
		justify-self: start;
	}

	.bamby-logo img,
	.is-condensed .bamby-logo img {
		height: 42px !important;
	}

	.bamby-header-search {
		justify-self: center !important;
		margin: 0 !important;
		max-width: 620px !important;
		width: 100% !important;
		position: relative !important;
		z-index: 100021 !important;
	}

	.bamby-header-search .bpls-search-shell,
	.bamby-header-search .bpls-input,
	.bamby-header-search .bpls-submit {
		min-height: 40px !important;
		height: 40px !important;
	}

	.bamby-header-main {
		background: rgba(255, 255, 255, 0.92) !important;
		border-radius: 0 0 36px 36px !important;
		height: 44px !important;
		min-height: 44px !important;
		position: relative !important;
		z-index: 1 !important;
	}

	.bamby-header-inner--main {
		display: flex !important;
		flex-direction: row !important;
		height: 44px !important;
		min-height: 44px !important;
		padding-block: 4px 6px !important;
	}

	.bamby-primary-nav {
		margin-top: 0 !important;
	}

	.bamby-header-action,
	.bamby-header-action:hover,
	.bamby-header-action:focus-visible {
		color: #fff !important;
	}

	body:not(.home) #page {
		padding-top: 102px !important;
	}

	body.admin-bar .bamby-site-header {
		top: 32px;
	}
}

.bamby-footer-bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
}

.bamby-footer-bottom p {
	flex: 1 1 auto;
}

.bamby-site-footer .bamby-socials--footer {
	position: static;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	gap: 10px;
	color: #fff;
	transform: none;
}

.bamby-site-footer .bamby-socials--footer a {
	display: inline-grid;
	width: 24px;
	height: 24px;
	place-items: center;
}

.bamby-site-footer .bamby-socials--footer svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

@media (max-width: 767px) {
	.bamby-site-header {
		background: rgba(255, 255, 255, 0.95) !important;
		-webkit-backdrop-filter: blur(14px) saturate(120%);
		backdrop-filter: blur(14px) saturate(120%);
	}

	.bamby-header-top,
	.bamby-header-main {
		background: transparent !important;
	}

	.bamby-menu-toggle > span:not(.bamby-visually-hidden) {
		background: #111 !important;
	}

	.bamby-socials--mobile-header {
		display: flex !important;
		left: 14px !important;
		right: auto !important;
		top: 12px !important;
	}

	.bamby-header-actions > .bamby-cart-link,
	.bamby-header-actions > .bamby-cart-link:link,
	.bamby-header-actions > .bamby-cart-link:visited {
		align-items: center !important;
		color: #111 !important;
		display: inline-flex !important;
		height: 24px !important;
		justify-content: center !important;
		min-width: 24px !important;
		visibility: visible !important;
		width: 24px !important;
	}

	.bamby-header-actions > .bamby-cart-link .bamby-cart-icon {
		color: #111 !important;
		display: block !important;
		height: 24px !important;
		visibility: visible !important;
		width: 24px !important;
	}

	.bamby-primary-nav,
	.bamby-primary-nav.is-open {
		background: #fff !important;
		border: 1px solid rgba(17, 17, 17, 0.1) !important;
		border-radius: 0 0 22px 22px !important;
		box-shadow: 0 18px 32px rgba(17, 17, 17, 0.22) !important;
		color: #111 !important;
		left: 12px !important;
		padding: 12px 14px 16px !important;
		width: calc(100% - 24px) !important;
		z-index: 100010 !important;
	}

	.bamby-primary-nav .bamby-menu,
	.bamby-primary-nav .bamby-menu a {
		background: #fff !important;
		color: #111 !important;
	}

	.bamby-primary-nav .bamby-menu a:hover,
	.bamby-primary-nav .bamby-menu a:focus-visible,
	.bamby-primary-nav .current-menu-item > a {
		background: #f2f2f2 !important;
		color: #111 !important;
	}

	.bamby-footer-bottom {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
	}

	.bamby-site-footer .bamby-socials--footer {
		align-self: flex-end;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}
}

/* Homepage estimator and mobile project-action refinement - 2026-08-16 */
@media (min-width: 769px) {
	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) {
		padding: 34px 24px !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) > .bamby-row {
		align-items: stretch !important;
		gap: clamp(28px, 4vw, 54px) !important;
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, 410px) !important;
		margin-inline: auto !important;
		max-width: 1080px !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) h3 {
		font-size: clamp(24px, 2.2vw, 32px) !important;
		line-height: 1.2 !important;
		margin: 0 0 18px !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-home-estimator-step {
		border-left: 3px solid var(--bamby-gold) !important;
		font-size: 15px !important;
		line-height: 1.55 !important;
		margin: 10px 0 !important;
		padding: 7px 0 7px 14px !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-home-estimator-step strong {
		display: inline-block;
		font-size: 16px;
		margin-bottom: 2px;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-home-estimator-more {
		margin: 12px 0 0 !important;
		text-align: right !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-home-estimator-more a {
		font-size: 14px;
		font-weight: 700;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-video {
		border-radius: 14px !important;
		box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16) !important;
		display: flex !important;
		height: 100% !important;
		margin-inline: auto !important;
		max-width: 410px !important;
		overflow: hidden !important;
		width: 100% !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-column:last-child {
		display: flex !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-column:last-child > div {
		display: flex !important;
		width: 100% !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-video iframe {
		aspect-ratio: auto !important;
		height: 100% !important;
		min-height: 300px !important;
		width: 100% !important;
	}
}

@media (max-width: 768px) {
	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions {
		margin-bottom: 22px !important;
		margin-top: 16px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions + hr.bamby-divider {
		margin-top: 24px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider {
		margin-bottom: 26px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions--center,
	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text + .bamby-rich-text + .bamby-actions {
		align-items: stretch !important;
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 10px !important;
		justify-content: center !important;
		margin: 18px auto 22px !important;
		max-width: 360px !important;
		width: 100% !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions--center .bamby-button {
		flex: 1 1 0 !important;
		margin: 0 !important;
		max-width: 175px !important;
		min-height: 44px !important;
		text-align: center !important;
		white-space: normal !important;
	}
}

/* Collections landing page and centred mobile header controls - 2026-08-16 */
.bamby-collections-intro a {
	color: inherit !important;
	font-weight: 600;
	text-decoration-color: rgba(17, 17, 17, 0.32) !important;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 2px;
}

.bamby-collections-intro a:hover,
.bamby-collections-intro a:focus-visible {
	color: var(--bamby-gold-dark) !important;
	text-decoration-color: currentColor !important;
}

@media (max-width: 767px) {
	.bamby-header-inner--main {
		position: relative !important;
	}

	.bamby-header-inner--main::after {
		color: #111;
		content: "•";
		font-size: 17px;
		font-weight: 700;
		left: 50%;
		line-height: 1;
		pointer-events: none;
		position: absolute;
		top: 61px;
		transform: translate(-50%, -50%);
		z-index: 8;
	}

	.bamby-menu-toggle {
		left: calc(50% - 36px) !important;
		top: 61px !important;
		transform: translate(-50%, -50%) !important;
	}

	.bamby-mobile-search-toggle {
		left: calc(50% + 16px) !important;
		top: 42px !important;
		transform: none !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile {
		padding: 16px 0 28px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row {
		margin-inline: auto !important;
		max-width: 560px !important;
		padding-inline: 0 !important;
		width: calc(100% - 32px) !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row + .bamby-row {
		margin-top: 20px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:first-child h2 {
		font-size: 25px !important;
		line-height: 1.16 !important;
		margin: 0 !important;
	}

	.bamby-collections-mobile-lead {
		font-size: 14px !important;
		line-height: 1.5 !important;
		margin: 10px auto 0 !important;
		max-width: 34rem;
		text-align: center;
	}

	.bamby-collections-mobile-details {
		background: #f7f7f7;
		border: 1px solid #dedede;
		border-radius: 12px;
		box-shadow: 0 7px 18px rgba(17, 17, 17, 0.07);
		margin-top: 14px;
		overflow: hidden;
		text-align: left;
	}

	.bamby-collections-mobile-details summary {
		align-items: center;
		cursor: pointer;
		display: flex;
		font-size: 13px;
		font-weight: 700;
		gap: 7px;
		justify-content: flex-start;
		line-height: 1.35;
		list-style: none;
		padding: 12px 14px;
	}

	.bamby-collections-mobile-details summary::-webkit-details-marker {
		display: none;
	}

	.bamby-collections-mobile-details summary::after {
		content: "+";
		font-size: 18px;
		font-weight: 500;
		line-height: 1;
		margin-left: auto;
	}

	.bamby-collections-mobile-details[open] summary::after {
		content: "−";
	}

	.bamby-collections-mobile-details__content {
		border-top: 1px solid #e1e1e1;
		padding: 12px 14px 14px;
	}

	.bamby-collections-mobile-details__content p {
		font-size: 13px !important;
		line-height: 1.55 !important;
		margin: 0 0 11px !important;
		text-align: left !important;
		text-transform: none !important;
	}

	.bamby-collections-mobile-details__content p:last-child {
		margin-bottom: 0 !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) {
		margin-top: 24px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) .bamby-media {
		margin: 0 auto !important;
		max-width: 310px;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) .bamby-media img {
		display: block;
		height: auto !important;
		margin: 0 auto;
		max-height: 190px;
		object-fit: contain !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) h2,
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(4) h2 {
		font-size: 23px !important;
		line-height: 1.16 !important;
		margin: 14px 0 8px !important;
		text-align: center !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) p,
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(4) p {
		font-size: 13px !important;
		line-height: 1.55 !important;
		margin-bottom: 10px !important;
		text-align: center !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) .bamby-actions {
		justify-content: center !important;
		margin: 14px 0 0 !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) .bamby-button {
		min-height: 42px !important;
		padding: 10px 16px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(3) {
		margin-top: 24px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(3) .bamby-divider {
		margin: 0 !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(4) {
		margin-top: 20px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) {
		margin-top: 18px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column {
		display: grid !important;
		gap: 10px 12px !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-template-rows: auto auto auto auto auto auto;
		min-height: 0 !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card {
		background: #fff !important;
		border: 1px solid #e3e3e3 !important;
		border-radius: 13px !important;
		box-shadow: 0 7px 18px rgba(17, 17, 17, 0.09) !important;
		display: flex !important;
		flex-direction: column !important;
		height: auto !important;
		margin: 0 !important;
		max-width: none !important;
		min-height: 0 !important;
		overflow: hidden !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card > p:empty {
		display: none !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card > img {
		aspect-ratio: auto !important;
		background: #fff !important;
		display: block !important;
		height: 122px !important;
		margin: 0 !important;
		object-fit: contain !important;
		padding: 8px !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card__content {
		padding: 10px 10px 12px !important;
		text-align: center !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card__content h3 {
		font-family: "Open Sans", Arial, sans-serif !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		line-height: 1.25 !important;
		margin: 0 0 6px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card__content p {
		font-size: 11px !important;
		line-height: 1.4 !important;
		margin: 0 !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) .bamby-actions {
		align-self: start;
		justify-content: stretch !important;
		margin: 0 !important;
		padding: 0 !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) .bamby-button {
		font-size: 11px !important;
		justify-content: center !important;
		min-height: 40px !important;
		padding: 8px 10px !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(1) { grid-column: 1; grid-row: 1; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(2) { grid-column: 1; grid-row: 2; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(3) { grid-column: 2; grid-row: 1; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(4) { grid-column: 2; grid-row: 2; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(5) { grid-column: 1; grid-row: 3; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(6) { grid-column: 1; grid-row: 4; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(7) { grid-column: 2; grid-row: 3; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(8) { grid-column: 2; grid-row: 4; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(9) {
		grid-column: 1 / -1;
		grid-row: 5;
		justify-self: center;
		width: calc(50% - 6px) !important;
	}
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(10) {
		grid-column: 1 / -1;
		grid-row: 6;
		justify-self: center;
		width: calc(50% - 6px) !important;
	}
}

/* =====================================================================
   GLOBAL WOOCOMMERCE CATALOGUE CONTROLS - 2026-08-16
   Shared by product categories, product tags and the main shop archive.
   ===================================================================== */
body.woocommerce.archive .bamby-shop-filters {
	clear: both;
	margin: 16px 0 22px !important;
	padding: 0 !important;
	text-align: center;
}

body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle {
	align-items: center;
	background: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 10px !important;
	box-shadow: 0 6px 16px rgba(17, 17, 17, 0.13);
	color: #fff !important;
	display: inline-flex !important;
	font-family: "Open Sans", Arial, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	gap: 8px;
	height: 42px !important;
	justify-content: center;
	letter-spacing: 0.035em;
	line-height: 1 !important;
	margin: 0 auto 14px !important;
	min-height: 42px !important;
	min-width: 168px;
	padding: 10px 18px !important;
	text-align: center !important;
	text-decoration: none !important;
	transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
	width: auto !important;
}

body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle span {
	color: currentColor !important;
	flex: 0 0 auto;
}

body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle span :is(i, b, s) {
	background: currentColor !important;
}

body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle:hover,
body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle:focus-visible {
	background: #fff !important;
	box-shadow: 0 8px 20px rgba(17, 17, 17, 0.16);
	color: #111 !important;
}

body.woocommerce.archive .bamby-shop-filters .berocket_element_above_products_is_hide {
	margin-top: 2px;
	text-align: left;
}

body.woocommerce.archive .woocommerce-result-count {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.35;
	margin-bottom: 18px !important;
	white-space: normal !important;
}

body.woocommerce.archive .woocommerce-ordering {
	margin-bottom: 18px !important;
	width: 220px;
}

body.woocommerce.archive .woocommerce-ordering select {
	min-height: 40px;
	width: 100%;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	body.woocommerce.archive ul.products li.product {
		transition: transform .2s ease !important;
	}

	body.woocommerce.archive ul.products li.product:hover,
	body.woocommerce.archive ul.products li.product:focus-within {
		transform: translateY(-4px);
	}

	body.woocommerce.archive ul.products li.product img {
		transition: box-shadow .2s ease !important;
	}

	body.woocommerce.archive ul.products li.product:hover img,
	body.woocommerce.archive ul.products li.product:focus-within img {
		box-shadow: 0 15px 24px -8px rgba(0, 0, 0, 0.48) !important;
	}
}

@media (max-width: 767px) {
	body.woocommerce.archive .bamby-shop-filters {
		margin: 12px 0 20px !important;
	}

	body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle {
		height: 40px !important;
		margin-bottom: 10px !important;
		min-height: 40px !important;
		min-width: 156px;
		padding: 9px 15px !important;
	}

	body.woocommerce.archive .woocommerce-result-count {
		align-items: center;
		display: flex;
		float: left !important;
		font-size: 11px !important;
		line-height: 1.3 !important;
		margin: 0 0 16px !important;
		min-height: 36px;
		padding: 2px 0;
		text-align: left;
		width: calc(47% - 6px);
	}

	body.woocommerce.archive .woocommerce-ordering {
		float: right !important;
		margin: 0 0 16px !important;
		width: calc(53% - 6px) !important;
	}

	body.woocommerce.archive .woocommerce-ordering select {
		background: #f5f5f5 !important;
		border: 1px solid #d8d8d8 !important;
		border-radius: 8px !important;
		color: #111 !important;
		font-size: 11px !important;
		height: 36px !important;
		min-height: 36px !important;
		padding: 5px 26px 5px 9px !important;
		-webkit-text-fill-color: #111 !important;
	}

	body.woocommerce.archive ul.products {
		clear: both !important;
	}
}

/* =====================================================================
   GLOBAL PRODUCT META, ESTIMATOR CHOICES + DESCRIPTION-ONLY TABS
   2026-08-16
   ===================================================================== */

/* Defence in depth while cached product fragments expire. The PHP hook above
   removes this markup completely on fresh responses. */
body.single-product .summary .product_meta {
	display: none !important;
}

/* Keep both estimator choices equal, centred and independent from the
   calculator workspace. Once the workspace loads, the existing loaded-state
   rules restore it to full width. */
body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded)) {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) !important;
	align-items: stretch !important;
	column-gap: 16px !important;
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	margin: 0 auto !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	> .bamby-estimator-actions__calculator {
	display: block !important;
	grid-column: 1 / -1 !important;
	grid-row: 1 !important;
	width: 100% !important;
	min-width: 0 !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	.bamby-calc-wrapper:not(.has-calculator-loaded) {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) !important;
	align-items: stretch !important;
	column-gap: 16px !important;
	width: 100% !important;
	min-width: 0 !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	#load_calculator {
	display: flex !important;
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	min-height: 56px !important;
	margin: 0 !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	> .bamby-estimator-actions__or {
	display: flex !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 56px !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	> .bamby-estimator-actions__plans {
	display: flex !important;
	grid-column: 3 !important;
	grid-row: 1 !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	min-height: 56px !important;
	margin: 0 !important;
}

/* A product with only Description still uses the same compact, recognisable
   tab language as the two-tab mobile product layout. */
@media (max-width: 767px) {
	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded)) {
		grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) !important;
		column-gap: 8px !important;
	}

	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
		.bamby-calc-wrapper:not(.has-calculator-loaded) {
		grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) !important;
		column-gap: 8px !important;
	}

	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
		#load_calculator,
	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
		> .bamby-estimator-actions__plans {
		min-height: 64px !important;
		padding: 9px 10px !important;
		font-size: 12px !important;
		line-height: 1.22 !important;
	}

	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
		> .bamby-estimator-actions__or {
		min-height: 64px !important;
		font-size: 10px !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child) {
		box-sizing: border-box;
		width: 100% !important;
		margin-top: 28px !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child) > ul.tabs {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		box-sizing: border-box;
		width: 100% !important;
		margin: 0 0 22px !important;
		padding: 4px !important;
		background: #f3f3f3 !important;
		border: 1px solid #d8d8d8 !important;
		border-radius: 12px !important;
		box-shadow: 0 5px 15px rgba(17, 17, 17, .08);
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> ul.tabs > li {
		display: block !important;
		box-sizing: border-box;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #111 !important;
		border: 0 !important;
		border-radius: 9px !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> ul.tabs > li::before,
	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> ul.tabs > li::after {
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> ul.tabs > li > a {
		display: flex !important;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		width: 100% !important;
		min-height: 48px;
		padding: 10px 16px !important;
		color: #fff !important;
		-webkit-text-fill-color: #fff !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		line-height: 1.2 !important;
		text-align: center;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> .woocommerce-Tabs-panel {
		box-sizing: border-box;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> .woocommerce-Tabs-panel > h3:first-of-type {
		margin-top: 0 !important;
		font-size: clamp(24px, 7vw, 30px) !important;
		line-height: 1.2 !important;
	}
}

/* Final service-product placement: match the slab action block below the
   desktop purchase divider without disturbing the established phone layout. */
@media (min-width: 768px) {
	body.single-product.bamby-service-product .summary .bamby-stone-next-steps {
		order: 6;
		width: 100%;
	}
}

/* Keep the shared popup close control visually identical even while the
   browser gives it initial keyboard focus after opening a dialog. */
body.bamby-lightweight-theme.single-product main dialog.bamby-site-dialog button.bamby-site-dialog__close,
body.bamby-lightweight-theme.single-product main dialog.bamby-site-dialog button.bamby-site-dialog__close:focus-visible {
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	min-height: 40px !important;
	padding: 0 !important;
	color: #111 !important;
	-webkit-text-fill-color: #111 !important;
	background: #f1f1f1 !important;
	border: 0 !important;
	border-radius: 50% !important;
	font-family: Arial, sans-serif !important;
	font-size: 24px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

/* Shared content-start rhythm: keep standard pages close to the fixed header
   without allowing page-builder padding to create a second oversized gap. */
@media (min-width: 768px) {
	body:not(.home):not(.single-product) .entry-content > .bamby-section:first-child {
		padding-top: 24px !important;
	}

	body:not(.home):not(.single-product) .entry-content > .bamby-section:first-child > .bamby-row:first-child {
		padding-top: 0 !important;
	}

	.page-id-987508340 .bamby-contact-panel,
	.page-id-987508340 .bamby-contact-faq-row {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.page-id-987508340 .bamby-contact-faq-row {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	body:not(.home):not(.single-product) .entry-content > .bamby-section:first-child {
		padding-top: 16px !important;
	}

	body:not(.home):not(.single-product) .entry-content > .bamby-section:first-child > .bamby-row:first-child {
		padding-top: 0 !important;
	}
}

/* Shared page finish: legacy builder heights must not create blank bands
   between the final visible section and the global footer. */
body:not(.home):not(.single-product) .entry-content > .bamby-section:last-child {
	box-sizing: border-box;
	height: auto !important;
	min-height: 0 !important;
	padding-bottom: clamp(28px, 3vw, 40px) !important;
}

.bamby-section--account-arrivals {
	height: auto !important;
	min-height: 0 !important;
}

body.bamby-lightweight-theme.single-product main dialog.bamby-site-dialog button.bamby-site-dialog__close:hover {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	background: #111 !important;
}

/* =====================================================================
   GLOBAL TEMPLATE RHYTHM + BLOG READING SYSTEM FINAL - 2026-08-16
   One shared start/end system for content templates. Product detail and
   calculator canvases keep their purpose-built layouts.
   ===================================================================== */
:root {
	--bamby-content-start-desktop: 24px;
	--bamby-content-end-desktop: 40px;
	--bamby-content-start-mobile: 16px;
	--bamby-content-end-mobile: 28px;
}

body.blog main.bamby-blog-index {
	padding-top: var(--bamby-content-start-desktop) !important;
	padding-bottom: var(--bamby-content-end-desktop) !important;
}

body.blog .bamby-blog-archive-title {
	margin-bottom: 28px !important;
}

/* Single posts previously inherited padding on both MAIN and ARTICLE. */
body.single-post main.site-main {
	padding-top: var(--bamby-content-start-desktop) !important;
	padding-bottom: var(--bamby-content-end-desktop) !important;
}

body.single-post .site-main > article:not(.page),
body.single-post .inside-article {
	box-sizing: border-box;
	padding: 0 !important;
}

body.single-post .entry-header {
	margin-bottom: 24px !important;
}

body.single-post .entry-title {
	font-size: clamp(36px, 4.6vw, 54px) !important;
	line-height: 1.08 !important;
}

body.single-post .inside-article > .featured-image,
body.single-post .inside-article > .post-image {
	margin-bottom: 32px !important;
}

body.single-post .entry-content {
	font-size: 17px !important;
	line-height: 1.78 !important;
}

body.single-post .entry-content > *:first-child {
	margin-top: 0 !important;
}

body.single-post .entry-content figure {
	box-sizing: border-box;
	max-width: 100% !important;
	margin: 28px auto 32px !important;
	text-align: center;
}

body.single-post .entry-content figure img {
	display: block;
	height: auto !important;
	margin: 0 auto !important;
	box-shadow: 0 8px 22px rgba(17, 17, 17, .1);
}

body.single-post .entry-content figcaption,
body.single-post .entry-content figure > p:last-child {
	margin: 9px auto 0 !important;
	color: #666;
	font-size: 13px !important;
	line-height: 1.45 !important;
	text-align: center;
}

/* Older posts sometimes stored section headings as bold-only paragraphs. */
body.single-post .entry-content p:has(> strong):not(:has(> :not(strong))) {
	margin-top: 34px !important;
	margin-bottom: 12px !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 2.4vw, 30px) !important;
	line-height: 1.22 !important;
}

body.single-post .entry-content blockquote {
	margin: 28px 0 !important;
	padding: 18px 22px !important;
	background: #f6f4f1;
	border-left: 4px solid #8a6038;
	border-radius: 0 10px 10px 0;
}

body.single-post .entry-content a {
	color: #765435;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body.single-post .entry-footer {
	box-sizing: border-box;
	margin-top: 38px !important;
	padding-top: 18px;
	color: #717171;
	border-top: 1px solid #e1e1e1;
	font-size: 12px;
	line-height: 1.7;
}

body.single-post .entry-footer a {
	color: #555;
	text-underline-offset: 2px;
}

body.single-post .post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px !important;
}

body.single-post .post-navigation > div,
body.single-post .post-navigation .nav-previous,
body.single-post .post-navigation .nav-next {
	box-sizing: border-box;
	min-width: 0;
}

body.single-post .post-navigation a {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	min-height: 76px;
	height: 100%;
	padding: 14px 16px;
	color: #111;
	background: #fff;
	border: 1px solid #dedede;
	border-radius: 10px;
	box-shadow: 0 5px 14px rgba(17, 17, 17, .06);
	line-height: 1.35;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}

body.single-post .post-navigation a:hover,
body.single-post .post-navigation a:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(17, 17, 17, .1);
}

body.single-post .comments-area {
	box-sizing: border-box;
	width: min(100%, 800px);
	margin: 36px auto 0 !important;
	padding: 24px !important;
	background: #f7f7f7;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
}

body.single-post .comments-area textarea {
	width: 100%;
	min-height: 150px;
	border: 1px solid #cfcfcf;
	border-radius: 8px;
}

body.single-post .comments-area input[type="submit"] {
	min-height: 46px;
	padding: 10px 22px;
	color: #fff;
	background: #111;
	border: 1px solid #111;
	border-radius: 8px;
}

body.archive:not(.woocommerce) main.site-main,
body.search main.site-main {
	padding-top: var(--bamby-content-start-desktop) !important;
	padding-bottom: var(--bamby-content-end-desktop) !important;
}

/* Commerce archives retain their filter/header design and use the shared end. */
body.tax-product_cat main.site-main {
	padding-bottom: var(--bamby-content-end-desktop) !important;
}

@media (max-width: 767px) {
	body.blog main.bamby-blog-index,
	body.single-post main.site-main {
		width: min(100% - 28px, 1180px) !important;
		padding-top: var(--bamby-content-start-mobile) !important;
		padding-bottom: var(--bamby-content-end-mobile) !important;
	}

	body.blog .bamby-blog-archive-title {
		margin-bottom: 20px !important;
		font-size: 30px !important;
	}

	body.blog .bamby-blog-column {
		gap: 20px !important;
	}

	body.blog .bamby-blog-card__image img {
		aspect-ratio: 16 / 10 !important;
		object-fit: cover !important;
	}

	body.blog .bamby-blog-card__title {
		margin: 15px 16px 7px !important;
		font-size: 22px !important;
		line-height: 1.28 !important;
	}

	body.blog .bamby-blog-card__meta {
		margin-right: 16px !important;
		margin-left: 16px !important;
		font-size: 13px !important;
	}

	body.blog .bamby-blog-card__excerpt {
		padding: 0 16px 18px !important;
		font-size: 15px !important;
		line-height: 1.6 !important;
		-webkit-line-clamp: 3;
	}

	body.single-post .entry-header {
		margin-bottom: 18px !important;
	}

	body.single-post .entry-title {
		font-size: clamp(30px, 9vw, 38px) !important;
		line-height: 1.13 !important;
	}

	body.single-post .entry-meta {
		font-size: 12px !important;
		line-height: 1.5;
	}

	body.single-post .inside-article > .featured-image,
	body.single-post .inside-article > .post-image {
		margin-bottom: 24px !important;
	}

	body.single-post .entry-content {
		font-size: 16px !important;
		line-height: 1.7 !important;
	}

	body.single-post .entry-content h2 {
		margin-top: 30px !important;
		font-size: 27px !important;
	}

	body.single-post .entry-content h3 {
		margin-top: 24px !important;
		font-size: 22px !important;
	}

	body.single-post .entry-content p:has(> strong):not(:has(> :not(strong))) {
		margin-top: 28px !important;
		font-size: 23px !important;
	}

	body.single-post .entry-content figure {
		margin: 22px auto 26px !important;
	}

	body.single-post .entry-content table {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.single-post .post-navigation {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	body.single-post .post-navigation a {
		min-height: 64px;
		padding: 12px 14px;
	}

	body.single-post .comments-area {
		margin-top: 28px !important;
		padding: 18px !important;
		border-radius: 10px;
	}

	body.archive:not(.woocommerce) main.site-main,
	body.search main.site-main {
		padding-top: var(--bamby-content-start-mobile) !important;
		padding-bottom: var(--bamby-content-end-mobile) !important;
	}

	body.tax-product_cat main.site-main {
		padding-bottom: var(--bamby-content-end-mobile) !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.single-post .post-navigation a {
		transition: none;
	}
}

/* =====================================================================
   GLOBAL BLOG DISCOVERY + COMPACT TAXONOMY - 2026-08-16
   Related cards replace the plain previous/next footer on every post.
   ===================================================================== */
body.single-post .inside-article > footer.entry-meta {
	order: 4;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-sizing: border-box;
	width: min(100%, 800px) !important;
	margin: 34px auto 0 !important;
	padding: 16px 0 0 !important;
	color: #777;
	border-top: 1px solid #e2e2e2;
	font-size: 0;
	line-height: 1.5;
}

body.single-post footer.entry-meta .cat-links,
body.single-post footer.entry-meta .tags-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 9px;
	width: 100%;
	margin: 0 !important;
	font-size: 0;
}

body.single-post footer.entry-meta .cat-links {
	margin-bottom: 8px !important;
}

body.single-post footer.entry-meta .gp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	margin: 0 2px 0 0 !important;
	color: #765435;
	font-size: 12px;
}

body.single-post footer.entry-meta .cat-links a,
body.single-post footer.entry-meta .tags-links a {
	display: inline-block;
	margin: 0 !important;
	padding: 0 0 2px !important;
	color: #737373;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #d0d0d0 !important;
	border-radius: 0 !important;
	font-family: Arial, sans-serif;
	font-size: 11px !important;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: .01em;
	text-decoration: none;
}

body.single-post footer.entry-meta .cat-links a:hover,
body.single-post footer.entry-meta .cat-links a:focus-visible,
body.single-post footer.entry-meta .tags-links a:hover,
body.single-post footer.entry-meta .tags-links a:focus-visible {
	color: #111;
	border-bottom-color: #111 !important;
}

body.single-post footer.entry-meta .post-navigation {
	display: none !important;
}

body.single-post .bamby-related-posts {
	order: 5;
	box-sizing: border-box;
	width: min(100%, 900px);
	margin: 34px auto 0;
	padding-top: 24px;
	border-top: 1px solid #e2e2e2;
}

body.single-post .bamby-related-posts__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

body.single-post .bamby-related-posts__header h2 {
	margin: 0 !important;
	font-size: clamp(25px, 2.6vw, 32px) !important;
	line-height: 1.2 !important;
}

body.single-post .bamby-related-posts__all {
	flex: 0 0 auto;
	color: #765435;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-underline-offset: 3px;
}

body.single-post .bamby-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

body.single-post .bamby-related-post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 6px 17px rgba(17, 17, 17, .07);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

body.single-post .bamby-related-post-card:hover,
body.single-post .bamby-related-post-card:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(17, 17, 17, .12);
}

body.single-post .bamby-related-post-card__image {
	display: block;
	width: 100%;
	background: #f2f2f2;
	overflow: hidden;
}

body.single-post .bamby-related-post-card__image img,
body.single-post .bamby-related-post-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 10;
	margin: 0 !important;
	color: #777;
	background: #f2f2f2;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font-size: 13px;
	object-fit: cover;
	transition: transform .25s ease;
}

body.single-post .bamby-related-post-card:hover .bamby-related-post-card__image img,
body.single-post .bamby-related-post-card:focus-within .bamby-related-post-card__image img {
	transform: scale(1.025);
}

body.single-post .bamby-related-post-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 12px 13px 14px;
}

body.single-post .bamby-related-post-card__body time {
	margin-bottom: 5px;
	color: #777;
	font-family: Arial, sans-serif;
	font-size: 11px;
	line-height: 1.35;
}

body.single-post .bamby-related-post-card__body h3 {
	display: -webkit-box;
	margin: 0 !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 19px !important;
	line-height: 1.28 !important;
}

body.single-post .bamby-related-post-card__body h3 a {
	color: #111;
	text-decoration: none;
}

@media (max-width: 767px) {
	body.single-post .inside-article > footer.entry-meta {
		margin-top: 28px !important;
		padding-top: 14px !important;
	}

	body.single-post footer.entry-meta .cat-links,
	body.single-post footer.entry-meta .tags-links {
		gap: 5px 8px;
	}

	body.single-post footer.entry-meta .cat-links a,
	body.single-post footer.entry-meta .tags-links a {
		font-size: 10px !important;
	}

	body.single-post .bamby-related-posts {
		width: 100%;
		margin-top: 28px;
		padding-top: 20px;
	}

	body.single-post .bamby-related-posts__header {
		align-items: center;
		margin-bottom: 13px;
	}

	body.single-post .bamby-related-posts__header h2 {
		font-size: 25px !important;
	}

	body.single-post .bamby-related-posts__all {
		font-size: 11px;
	}

	body.single-post .bamby-related-posts__grid {
		display: flex;
		gap: 12px;
		padding-bottom: 8px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	body.single-post .bamby-related-post-card {
		flex: 0 0 min(78vw, 286px);
		scroll-snap-align: start;
	}

	body.single-post .bamby-related-post-card__body h3 {
		font-size: 18px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.single-post .bamby-related-post-card,
	body.single-post .bamby-related-post-card__image img {
		transition: none;
	}
}

/* =====================================================================
   GLOBAL BLOG LISTING ARCHIVES - 2026-08-16
   Blog home, category, tag, author and date listings share one card grid.
   ===================================================================== */
main.bamby-blog-index {
	box-sizing: border-box;
	width: min(100% - 48px, 1180px) !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
	padding: var(--bamby-content-start-desktop) 0 var(--bamby-content-end-desktop) !important;
}

main.bamby-blog-index .bamby-blog-archive-title {
	position: static !important;
	clip: auto !important;
	clip-path: none !important;
	display: block !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 28px !important;
	padding: 0 !important;
	overflow: visible !important;
	white-space: normal !important;
	font-size: clamp(34px, 4vw, 50px) !important;
	line-height: 1.12 !important;
	letter-spacing: -.02em;
	text-align: center;
}

main.bamby-blog-index .bamby-blog-archive-description {
	width: min(100%, 760px);
	margin: -14px auto 28px;
	color: #5f5f5f;
	font-size: 16px;
	line-height: 1.7;
	text-align: center;
}

main.bamby-blog-index .bamby-blog-archive-description > *:last-child {
	margin-bottom: 0;
}

main.bamby-blog-index .bamby-blog-column {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

main.bamby-blog-index article.bamby-blog-card {
	display: flex !important;
	flex-direction: column;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 16px;
	box-shadow: 0 9px 24px rgba(0, 0, 0, .09);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

main.bamby-blog-index article.bamby-blog-card:hover,
main.bamby-blog-index article.bamby-blog-card:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 13px 30px rgba(0, 0, 0, .13);
}

main.bamby-blog-index .bamby-blog-card__image {
	display: block;
	width: 100%;
	margin: 0 !important;
	overflow: hidden;
}

main.bamby-blog-index .bamby-blog-card__image img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 10 !important;
	margin: 0 !important;
	object-fit: cover !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transition: transform .25s ease;
}

main.bamby-blog-index article.bamby-blog-card:hover .bamby-blog-card__image img,
main.bamby-blog-index article.bamby-blog-card:focus-within .bamby-blog-card__image img {
	transform: scale(1.025);
}

main.bamby-blog-index .bamby-blog-card__title {
	margin: 17px 18px 8px !important;
	padding: 0 !important;
	font-size: 23px !important;
	line-height: 1.25 !important;
	text-wrap: balance;
}

main.bamby-blog-index .bamby-blog-card__title a {
	color: #111;
	text-decoration: none;
}

main.bamby-blog-index .bamby-blog-card__meta {
	margin: 0 18px 10px !important;
	padding: 0 !important;
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}

main.bamby-blog-index .bamby-blog-card__excerpt {
	display: -webkit-box;
	flex: 1 1 auto;
	margin: 0 !important;
	padding: 0 18px 20px !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: #666;
	font-size: 16px;
	line-height: 1.65;
}

main.bamby-blog-index .navigation.pagination {
	grid-column: 1 / -1;
	margin: 4px 0 0 !important;
	padding: 0 !important;
}

main.bamby-blog-index .navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

main.bamby-blog-index .navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 7px 10px;
	color: #111;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	text-decoration: none;
}

main.bamby-blog-index .navigation.pagination .page-numbers.current,
main.bamby-blog-index .navigation.pagination a.page-numbers:hover,
main.bamby-blog-index .navigation.pagination a.page-numbers:focus-visible {
	color: #fff;
	background: #111;
	border-color: #111;
}

@media (max-width: 1024px) {
	main.bamby-blog-index .bamby-blog-column {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	main.bamby-blog-index {
		width: min(100% - 28px, 1180px) !important;
		padding-top: var(--bamby-content-start-mobile) !important;
		padding-bottom: var(--bamby-content-end-mobile) !important;
	}

	main.bamby-blog-index .bamby-blog-archive-title {
		margin-bottom: 20px !important;
		font-size: 30px !important;
	}

	main.bamby-blog-index .bamby-blog-archive-description {
		margin-top: -8px;
		margin-bottom: 20px;
		font-size: 15px;
		line-height: 1.6;
	}

	main.bamby-blog-index .bamby-blog-column {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px !important;
	}

	main.bamby-blog-index .bamby-blog-card__title {
		margin: 15px 16px 7px !important;
		font-size: 22px !important;
		line-height: 1.28 !important;
	}

	main.bamby-blog-index .bamby-blog-card__meta {
		margin-right: 16px !important;
		margin-left: 16px !important;
		font-size: 13px !important;
	}

	main.bamby-blog-index .bamby-blog-card__excerpt {
		padding: 0 16px 18px !important;
		font-size: 15px !important;
		line-height: 1.6 !important;
		-webkit-line-clamp: 3;
	}
}

@media (prefers-reduced-motion: reduce) {
	main.bamby-blog-index article.bamby-blog-card,
	main.bamby-blog-index .bamby-blog-card__image img {
		transition: none;
	}
}

/* Shared product-grid interaction: service fees, catalogue archives, homepage
   arrivals, account arrivals and recommendations use the same subtle lift. */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	body.bamby-lightweight-theme .woocommerce ul.products li.product {
		transition: transform .2s ease, box-shadow .2s ease !important;
		will-change: transform;
	}

	body.bamby-lightweight-theme .woocommerce ul.products li.product:hover,
	body.bamby-lightweight-theme .woocommerce ul.products li.product:focus-within {
		transform: translateY(-4px) !important;
	}

	body.bamby-lightweight-theme .woocommerce ul.products li.product img {
		transition: box-shadow .2s ease !important;
	}

	body.bamby-lightweight-theme .woocommerce ul.products li.product:hover img,
	body.bamby-lightweight-theme .woocommerce ul.products li.product:focus-within img {
		box-shadow: 0 15px 24px -8px rgba(0, 0, 0, .48) !important;
	}
}

/* Services phone hero: reserve space below the CTA so its rounded bottom edge
   remains fully visible before the next section begins. */
@media (max-width: 767px) {
	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop {
		height: auto !important;
		min-height: 0 !important;
		margin-bottom: 0 !important;
		padding-bottom: 44px !important;
		overflow: visible !important;
	}

	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop > .bamby-row,
	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-column {
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
	}

	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-actions {
		box-sizing: border-box;
		min-height: 52px !important;
		margin: 14px 0 0 !important;
		padding: 0 0 8px !important;
		overflow: visible !important;
	}

	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-button {
		margin: 0 0 0 auto !important;
	}
}

	color: inherit;
	text-decoration: none;
}

.bamby-section--let-s-bring-it-to-life-section .bamby-journey-link:hover,
.bamby-section--let-s-bring-it-to-life-section .bamby-journey-link:focus-visible {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bamby-paper);
	color: var(--bamby-ink);
	font-family: "Open Sans", Arial, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--bamby-gold-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
	color: var(--bamby-ink);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--bamby-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 0.65em;
}

h1 {
	font-size: clamp(2.15rem, 1.6rem + 2.4vw, 4.4rem);
}

h2 {
	font-size: clamp(1.75rem, 1.35rem + 1.65vw, 3.15rem);
}

h3 {
	font-size: clamp(1.35rem, 1.15rem + 0.65vw, 1.9rem);
}

p,
ul,
ol,
blockquote {
	margin-top: 0;
}

blockquote {
	border-left: 3px solid var(--bamby-gold);
	color: var(--bamby-muted);
	margin-inline: 0;
	padding: 0.35rem 0 0.35rem 1.15rem;
}

table {
	border-collapse: collapse;
	display: block;
	overflow-x: auto;
	width: 100%;
}

th,
td {
	border: 1px solid var(--bamby-line);
	padding: 0.8rem;
	vertical-align: top;
}

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

.bamby-visually-hidden,
.bamby-honeypot {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bamby-skip-link {
	background: var(--bamby-white);
	left: 1rem;
	padding: 0.7rem 1rem;
	position: fixed;
	top: -10rem;
	z-index: 100000;
}

.bamby-skip-link:focus {
	top: 1rem;
}

/* Header */
.bamby-site-header {
	background: var(--bamby-white);
	border-radius: 0 0 50px 50px;
	box-shadow: 0 2px 60px rgba(0, 0, 0, 0.55);
	left: 50%;
	max-width: 1280px;
	overflow: hidden;
	position: fixed;
	top: 0;
	transform: translateX(-50%);
	width: 90%;
	z-index: 9999;
}

.bamby-header-top {
	background: var(--bamby-ink);
	color: var(--bamby-white);
}

.bamby-header-inner {
	align-items: center;
	display: grid;
	gap: var(--bamby-sm);
	margin-inline: auto;
	max-width: none;
	padding-inline: clamp(1.2rem, 3.5vw, 3.7rem);
	width: 100%;
}

.bamby-header-inner--top {
	grid-template-columns: 1fr auto 1fr;
	min-height: 62px;
}

.bamby-header-inner--main {
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: center;
	min-height: 86px;
	padding-block: 8px 9px;
}

.bamby-logo img {
	height: 54px;
	object-fit: contain;
	transition: height 180ms ease;
	width: auto;
}

.is-condensed .bamby-logo img {
	height: 48px;
}

.bamby-socials,
.bamby-header-actions {
	align-items: center;
	display: flex;
	gap: 0.85rem;
}

.bamby-socials a {
	color: currentColor;
	display: inline-grid;
	place-items: center;
}

.bamby-socials svg {
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.bamby-header-actions {
	justify-content: flex-end;
}

.bamby-header-action {
	color: var(--bamby-white);
	font-size: 0.75rem;
	font-weight: 650;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.bamby-header-action:hover,
.bamby-header-action:focus-visible {
	color: #e8c9a8;
}

.bamby-cart-link {
	align-items: center;
	display: flex;
	gap: 0.35rem;
}

.bamby-cart-icon {
	display: none;
}

.bamby-cart-count {
	background: var(--bamby-gold);
	border-radius: 999px;
	color: var(--bamby-white);
	display: inline-grid;
	font-size: 0.65rem;
	height: 1.35rem;
	place-items: center;
	width: 1.35rem;
}

.bamby-primary-nav,
.bamby-menu {
	min-width: 0;
}

.bamby-menu {
	align-items: center;
	display: flex;
	gap: clamp(1rem, 2.3vw, 2.25rem);
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bamby-menu a {
	color: var(--bamby-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	text-decoration: none;
}

.bamby-menu .current-menu-item > a,
.bamby-menu a:hover,
.bamby-menu a:focus-visible {
	color: var(--bamby-gold-dark);
}

.bamby-menu-toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: none;
	padding: 0.65rem;
}

.bamby-menu-toggle > span:not(.bamby-visually-hidden) {
	background: var(--bamby-ink);
	display: block;
	height: 2px;
	margin: 4px 0;
	width: 24px;
}

.bamby-header-search form,
.bamby-header-search .bamby-live-product-search {
	margin: 0;
}

.bamby-header-search {
	margin: 0 auto;
	max-width: 515px;
	width: 100%;
}

.bamby-header-search input[type="search"],
.bamby-header-search input[type="text"] {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 4px 0 0 4px;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
	font-size: 0.9rem;
	min-height: 35px;
	padding: 0.55rem 1rem;
	width: 100%;
}

.bamby-primary-nav {
	margin-top: 3px;
}

body:not(.home) #page {
	padding-top: 120px;
}

/* GeneratePress shell reset */
#page.site,
.site.grid-container,
.site-content,
.content-area,
.site-main,
.inside-article {
	max-width: none;
	width: 100%;
}

.site-content {
	display: block;
	padding: 0;
}

.site-main,
.site-main .page,
.site-main .post,
.inside-article,
.entry-content {
	margin: 0;
}

.inside-article {
	background: transparent;
	padding: 0;
}

.separate-containers .site-main,
.separate-containers .inside-article {
	margin: 0;
	padding: 0;
}

.entry-content:not(:first-child) {
	margin-top: 0;
}

.site-main > article:not(.page),
.site-main > .page-header,
.site-main > .woocommerce,
.woocommerce.archive .site-main,
.single-product .site-main,
.blog .site-main,
.archive:not(.woocommerce) .site-main,
.single-post .site-main,
.search .site-main {
	margin-inline: auto;
	max-width: var(--bamby-content);
	padding: var(--bamby-xl) var(--bamby-sm);
}

/* Converted page system */
.bamby-section {
	background-position: center;
	background-repeat: no-repeat;
	padding: var(--bamby-xl) 0;
	position: relative;
}

.bamby-section:nth-of-type(even) {
	background-color: var(--bamby-sand);
}

.bamby-row {
	margin-inline: auto;
	max-width: var(--bamby-content);
	padding-inline: var(--bamby-sm);
	width: 100%;
}

.bamby-row + .bamby-row {
	margin-top: var(--bamby-lg);
}

.bamby-grid {
	align-items: stretch;
	display: grid;
	gap: var(--bamby-md);
}

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

.bamby-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.bamby-grid--5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bamby-column {
	min-width: 0;
}

.bamby-rich-text > :last-child,
.bamby-card__content > :last-child {
	margin-bottom: 0;
}

.bamby-rich-text:has(> h1:first-child),
.bamby-rich-text:has(> h2:first-child) {
	margin-inline: auto;
	max-width: 950px;
}

.bamby-rich-text > h1:first-child,
.bamby-rich-text > h2:first-child,
.bamby-page-heading,
.bamby-section--commerce > .bamby-row > h1,
.bamby-section--account > .bamby-row > h1 {
	text-align: center;
}

.bamby-media {
	margin: 0;
}

.bamby-media img,
.bamby-card > img {
	border-radius: var(--bamby-radius);
	height: auto;
	object-fit: cover;
	width: 100%;
}

.bamby-card {
	background: var(--bamby-white);
	border: 1px solid var(--bamby-line);
	border-radius: var(--bamby-radius);
	box-shadow: 0 12px 35px rgba(17, 17, 17, 0.06);
	height: 100%;
	overflow: hidden;
}

.bamby-card > img {
	aspect-ratio: 4 / 3;
	border-radius: 0;
}

.bamby-card__content {
	padding: var(--bamby-md);
}

.bamby-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: var(--bamby-md) 0 0;
}

.bamby-actions--center {
	justify-content: center;
}

.bamby-button,
button.bamby-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
	align-items: center;
	background: var(--bamby-ink);
	border: 1px solid var(--bamby-ink);
	border-radius: 999px;
	color: var(--bamby-white);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.08em;
	min-height: 46px;
	padding: 0.75rem 1.35rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.bamby-button:hover,
.bamby-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover {
	background: var(--bamby-gold-dark);
	border-color: var(--bamby-gold-dark);
	color: var(--bamby-white);
	transform: translateY(-1px);
}

.bamby-button--secondary {
	background: transparent;
	color: var(--bamby-ink);
}

.bamby-divider {
	border: 0;
	border-top: 1px solid var(--bamby-line);
	margin: var(--bamby-lg) 0;
}

.bamby-video {
	background: #000;
	border-radius: var(--bamby-radius);
	overflow: hidden;
	position: relative;
}

.bamby-video iframe {
	aspect-ratio: 16 / 9;
	border: 0;
	height: auto;
	width: 100%;
}

.bamby-video video {
	height: auto;
	max-height: calc(100vh - 110px);
	object-fit: cover;
	width: 100%;
}

.bamby-section--desktop-tablet-header-video,
.bamby-section--mobile-header-video {
	background: #000;
	margin-left: calc(50% - 50vw);
	min-height: 100vh;
	padding: 0;
	width: 100vw;
}

.bamby-section--desktop-tablet-header-video .bamby-video,
.bamby-section--mobile-header-video .bamby-video {
	border-radius: 0;
}

.bamby-section--desktop-tablet-header-video .bamby-video,
.bamby-section--mobile-header-video .bamby-video,
.bamby-section--desktop-tablet-header-video video,
.bamby-section--mobile-header-video video {
	height: 100vh;
	max-height: none;
	width: 100%;
}

.bamby-section--desktop-tablet-header-video video,
.bamby-section--mobile-header-video video {
	object-fit: cover;
}

@media (min-width: 768px) {
	.bamby-section--desktop-tablet-header-video,
	.bamby-section--desktop-tablet-header-video .bamby-video,
	.bamby-section--desktop-tablet-header-video video {
		height: 54.4vw;
		min-height: 0;
	}
}

/* Homepage: reproduce the live Divi composition without a page builder. */
.home .bamby-section--our-products-section {
	padding: 10px 0 54px;
}

.home .bamby-section--our-products-section .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.home .bamby-section--our-products-section .bamby-row + .bamby-row {
	margin-top: 0;
}

.home .bamby-section--our-products-section > .bamby-row:first-child {
	padding-top: 15px;
}

.home .bamby-section--our-products-section > .bamby-grid--1 {
	padding-block: 27px;
}

.home .bamby-section--our-products-section > .bamby-grid--1:first-child {
	padding-top: 15px;
}

.home .bamby-section--our-products-section > .bamby-grid--1 .bamby-rich-text {
	max-width: none;
	text-align: center;
	text-transform: uppercase;
}

.home .bamby-section--our-products-section h2 {
	font-size: 28px;
	letter-spacing: 0.01em;
	margin-bottom: 0.55rem;
}

.home .bamby-section--our-products-section > .bamby-grid--1 p {
	font-size: 13px;
	line-height: 1.85;
	margin-bottom: 0;
}

.home .bamby-section--our-products-section > .bamby-grid--2 {
	align-items: center;
	min-height: 377px;
	padding-bottom: 27px;
}

.home .bamby-section--our-products-section > .bamby-grid--2 .bamby-column:last-child {
	text-align: center;
}

.home .bamby-section--our-products-section > .bamby-grid--2 .bamby-media img {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	height: auto;
	margin-inline: auto;
	max-width: 338px;
	object-fit: cover;
}

.home .bamby-section--our-products-section h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
}

.home .bamby-section--our-products-section .bamby-grid--2 p {
	font-size: 14px;
	line-height: 1.65;
}

.home .bamby-section--our-products-section .bamby-actions {
	justify-content: center;
}

.home .bamby-section--our-products-section .bamby-button {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	min-height: 31px;
	padding: 0.35rem 1rem;
	text-transform: none;
}

.home .bamby-section--our-products-section .bamby-divider {
	border-top-color: #b8b8b8;
	margin: 0;
}

.home .bamby-section--our-products-section > .bamby-grid--3 {
	gap: 5.5%;
	padding-bottom: 27px;
}

.home .bamby-section--our-products-section .bamby-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.home .bamby-section--our-products-section .bamby-card > img {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin-inline: auto;
	max-width: 213px;
	object-fit: cover;
}

.home .bamby-section--our-products-section .bamby-card__content {
	font-size: 13px;
	line-height: 1.7;
	padding: 24px 0 0;
	text-align: center;
}

.home .bamby-section--our-products-section .bamby-card__content blockquote {
	border: 0;
	padding: 0;
}

.home .bamby-section--our-products-section > .bamby-grid--5 {
	gap: 3%;
}

.home .bamby-section--our-products-section > .bamby-grid--5 .bamby-card > img {
	max-width: 170px;
}

.home .bamby-section--our-products-section > .bamby-grid--5 .bamby-card__content {
	font-size: 12px;
	line-height: 1.6;
	padding-top: 16px;
}

.home .bamby-section--our-products-section > .bamby-grid--5 h3 {
	font-size: 15px;
}

.home .bamby-section--featured-products-section {
	padding: 54px 0 0;
}

.home .bamby-section--featured-products-section .bamby-row {
	max-width: 1200px;
	padding: 0 0 27px;
	width: calc(100% - 110px);
}

.home .bamby-section--featured-products-section h2,
.home .bamby-section--featured-products-section h3 {
	font-size: 28px;
	letter-spacing: 0.01em;
	text-align: center;
	text-transform: uppercase;
}

.home .bamby-section--featured-products-section .woocommerce ul.products {
	column-gap: 3.7%;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	row-gap: 0;
}

.home .bamby-section--featured-products-section .woocommerce ul.products li.product .onsale {
	display: none;
}

.home .bamby-section--featured-products-section .woocommerce ul.products li.product a img {
	box-shadow: none;
}

/* Collections & Products is a curated landing page on live, not a generic
   shop archive. Keep its supplied content and remove the duplicate shell. */
.post-type-archive-product .woocommerce-breadcrumb,
.post-type-archive-product .woocommerce-products-header > .woocommerce-products-header__title,
.post-type-archive-product .bamby-shop-filters,
.post-type-archive-product .woocommerce-result-count,
.post-type-archive-product .woocommerce-ordering,
.post-type-archive-product ul.products,
.post-type-archive-product .woocommerce-pagination {
	display: none !important;
}

.post-type-archive-product .woocommerce-archive-wrapper {
	max-width: none;
	width: 100%;
}

.post-type-archive-product .site-main {
	padding-block: 0;
}

.post-type-archive-product .woocommerce-products-header {
	margin: 0;
}

.post-type-archive-product .page-description {
	margin: 0;
}

.page-id-987508412 .entry-header {
	margin: 0 auto;
	max-width: 1080px;
	padding: 24px 0 20px;
	width: 80%;
}

.page-id-987508412 .entry-title {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 30px;
	margin: 0;
	text-align: left;
	text-transform: none;
}

.post-type-archive-product .bamby-section--our-products-section-desktop {
	padding: 76px 0 54px;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-row + .bamby-row {
	margin-top: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--1 {
	padding-block: 27px;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--1:first-child {
	padding-top: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--1 .bamby-rich-text {
	max-width: none;
	text-align: center;
	text-transform: uppercase;
}

.post-type-archive-product .bamby-section--our-products-section-desktop h1 {
	font-size: 32px;
	letter-spacing: 0.01em;
	margin-bottom: 0.35rem;
	text-transform: uppercase;
}

.post-type-archive-product .bamby-section--our-products-section-desktop h2 {
	font-size: 26px;
	letter-spacing: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--1 p {
	font-size: 13px;
	line-height: 1.9;
	margin-bottom: 0.7rem;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--2 {
	align-items: center;
	gap: 5.5%;
	padding-bottom: 27px;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--2 .bamby-media img {
	border-radius: 15px;
	box-shadow: 0 12px 13px -7px #000;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--2 p {
	font-size: 14px;
	line-height: 1.7;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--2 .bamby-actions {
	justify-content: flex-end;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-button {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	min-height: 31px;
	padding: 0.35rem 1rem;
	text-transform: uppercase;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-divider {
	border-top-color: #b8b8b8;
	margin: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop > .bamby-grid--5 {
	gap: 5.5%;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-card > img {
	aspect-ratio: 3 / 2;
	border-radius: 0;
	object-fit: contain;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-card__content {
	font-size: 13px;
	line-height: 1.65;
	padding: 22px 0 0;
	text-align: center;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-card__content h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
}

.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-actions {
	justify-content: center;
}

@media (min-width: 768px) {
	body.post-type-archive-product.woocommerce.archive .site-main {
		padding-block: 0;
	}

	body.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-row {
		width: 95%;
	}
}

/* Specialised services */
.bamby-section--services-section-desktop-header {
	padding: 78px 0 86px;
}

.bamby-section--services-section-desktop-header .bamby-row,
.bamby-section--our-services-and-fees-section .bamby-row,
.bamby-section--our-services-section-desktop .bamby-row,
.bamby-section--let-s-bring-it-to-life-section .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.bamby-section--services-section-desktop-header .bamby-grid--2 {
	align-items: center;
	gap: 5.5%;
}

.bamby-section--services-section-desktop-header .bamby-media img {
	border-radius: 15px;
	box-shadow: 0 12px 13px -7px #000;
	height: 380px;
	object-fit: cover;
}

.bamby-section--services-section-desktop-header h1 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0;
	text-align: left;
}

.bamby-section--services-section-desktop-header .bamby-rich-text > h1:first-child {
	text-align: left;
}

.bamby-section--services-section-desktop-header p {
	font-size: 14px;
	line-height: 1.75;
}

.bamby-section--services-section-desktop-header .bamby-actions {
	justify-content: flex-end;
}

.bamby-section--services-section-desktop-header .bamby-button,
.bamby-section--our-services-section-desktop .bamby-button,
.bamby-section--let-s-bring-it-to-life-section .bamby-button {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	min-height: 39px;
	padding: 0.45rem 1.15rem;
	text-transform: none;
}

.bamby-section--our-services-and-fees-section {
	padding: 27px 0 54px;
}

.bamby-section--our-services-and-fees-section .bamby-rich-text {
	max-width: none;
	text-align: center;
}

.bamby-section--our-services-and-fees-section h1,
.bamby-section--our-services-and-fees-section h2 {
	font-size: 30px;
	letter-spacing: 0.01em;
	margin-bottom: 0.35rem;
	text-transform: none;
}

.bamby-section--our-services-and-fees-section .bamby-rich-text p {
	font-size: 13px;
	line-height: 1.7;
}

.bamby-section--our-services-and-fees-section .woocommerce ul.products {
	column-gap: 3.8%;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	row-gap: 0;
}

.bamby-section--our-services-and-fees-section .woocommerce ul.products li.product a img {
	box-shadow: 0 12px 13px -7px #000;
}

.bamby-section--our-services-and-fees-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.1;
}

.bamby-products--hide-price .price,
.bamby-products--hide-price .onsale {
	display: none !important;
}

.bamby-section--our-services-section-desktop {
	padding: 80px 0 54px;
}

.bamby-section--our-services-section-desktop .bamby-row + .bamby-row {
	margin-top: 28px;
}

.bamby-section--our-services-section-desktop > .bamby-grid--1 .bamby-rich-text {
	max-width: none;
	text-align: center;
}

.bamby-section--our-services-section-desktop h2 {
	font-size: 48px;
	font-style: italic;
	font-weight: 700;
}

.bamby-section--our-services-section-desktop > .bamby-grid--1 p {
	font-size: 18px;
	line-height: 1.8;
}

.bamby-section--our-services-section-desktop > .bamby-grid--3 {
	gap: 5.5%;
}

.bamby-section--our-services-section-desktop .bamby-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.bamby-section--our-services-section-desktop .bamby-card > img {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin-inline: auto;
	max-width: 213px;
	object-fit: cover;
}

.bamby-section--our-services-section-desktop .bamby-card__content {
	font-size: 13px;
	line-height: 1.75;
	padding: 24px 0 0;
	text-align: center;
}

.bamby-section--our-services-section-desktop .bamby-card__content h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
}

.bamby-section--our-services-section-desktop .bamby-card__content blockquote {
	border-left-color: #d7a22a;
	font-size: 13px;
	margin-top: 1.3rem;
}

.bamby-section--our-services-section-desktop .bamby-actions {
	justify-content: center;
}

.bamby-section--let-s-bring-it-to-life-section {
	min-height: 548px;
	padding: 54px 0;
}

.bamby-section--let-s-bring-it-to-life-section .bamby-row + .bamby-row {
	margin-top: 27px;
}

.bamby-section--let-s-bring-it-to-life-section h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 400;
}

.bamby-section--let-s-bring-it-to-life-section p {
	font-size: 13px;
	line-height: 1.75;
}

.bamby-section--let-s-bring-it-to-life-section .bamby-grid--5 {
	gap: 3%;
}

.bamby-section--let-s-bring-it-to-life-section h4 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
}

/* Contact & bookings */
.bamby-section--contact-form-map {
	padding: 81px 0 54px;
}

.bamby-section--contact-form-map .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.bamby-section--contact-form-map > .bamby-row:first-child .bamby-rich-text {
	max-width: none;
	text-align: center;
}

.bamby-section--contact-form-map > .bamby-row:first-child h1 {
	font-size: 32px;
	letter-spacing: 0.08em;
	line-height: 1.4;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.bamby-section--contact-form-map .bamby-embed iframe {
	min-height: 800px;
}

.bamby-section--contact-form-map > .bamby-grid--2 {
	gap: 5.5%;
	margin-top: 104px;
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-card__content {
	padding: 0 0 0 2.4rem;
	position: relative;
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-column:first-child .bamby-card__content::before,
.bamby-section--contact-form-map > .bamby-grid--2 .bamby-column:last-child .bamby-card__content::before {
	font-size: 1.15rem;
	left: 0;
	position: absolute;
	top: 0;
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-column:first-child .bamby-card__content::before {
	content: "📍";
}

.bamby-section--contact-form-map > .bamby-grid--2 .bamby-column:last-child .bamby-card__content::before {
	content: "☎";
}

.bamby-section--contact-form-map > .bamby-grid--2 h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.bamby-section--contact-form-map > .bamby-grid--2 p {
	font-size: 14px;
}

.bamby-section--contact-form-map > .bamby-grid--1:last-child {
	margin-top: 124px;
}

.bamby-section--contact-form-map > .bamby-grid--1:last-child .bamby-rich-text {
	max-width: none;
}

.bamby-section--contact-form-map > .bamby-grid--1:last-child h2 {
	font-size: 30px;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 32px;
}

.bamby-section--contact-form-map .bamby-contact-form-title {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 20px;
	text-align: left;
}

.bamby-section--contact-form-map .bamby-form {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-top: 0;
	padding: 0;
}

.bamby-section--contact-form-map .bamby-form label:not([for="bamby-company-website"]) {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bamby-section--contact-form-map .bamby-form-grid {
	gap: 32px;
}

.bamby-section--contact-form-map .bamby-form p {
	margin-bottom: 32px;
}

.bamby-section--contact-form-map .bamby-form input,
.bamby-section--contact-form-map .bamby-form textarea {
	background: #f4f4f4;
	border: 0;
	border-radius: 15px;
	box-sizing: border-box;
	font-size: 14px;
	height: 51px;
	min-height: 51px;
	padding: 16px;
}

.bamby-section--contact-form-map .bamby-form textarea {
	height: 150px;
	min-height: 150px;
}

.bamby-section--contact-form-map .bamby-form > p:last-child {
	margin-bottom: 0;
	text-align: right;
}

.bamby-section--contact-form-map .bamby-form button {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	min-height: 40px;
	padding: 0.4rem 1.1rem;
	text-transform: none;
}

/* Instant project estimate */
.page-id-987514640 .entry-content > .bamby-section {
	padding: 0;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row + .bamby-row {
	margin-top: 0;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child {
	gap: 5.55%;
	padding: 60px 0 27px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child > .bamby-column:first-child > div {
	aspect-ratio: 4 / 3;
	border-radius: 30px;
	overflow: hidden;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child iframe {
	aspect-ratio: auto;
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child .bamby-video {
	height: 100%;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child h3,
.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.25;
	margin-bottom: 12px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child p,
.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child p {
	font-size: 14px;
	line-height: 1.7;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child .bamby-rich-text p {
	margin-bottom: 16px;
}

.page-id-987514640 .bamby-accordion {
	border: 1px solid #e3e3e3;
}

.page-id-987514640 .bamby-accordion__item {
	background: #f6f6f6;
	border-bottom: 1px solid #dfdfdf;
}

.page-id-987514640 .bamby-accordion__item:last-child {
	border-bottom: 0;
}

.page-id-987514640 .bamby-accordion__item summary {
	align-items: center;
	display: flex;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	justify-content: space-between;
	list-style: none;
	box-sizing: border-box;
	height: 55px;
	min-height: 55px;
	padding: 14px 20px;
}

.page-id-987514640 .bamby-accordion__item summary::-webkit-details-marker {
	display: none;
}

.page-id-987514640 .bamby-accordion__item summary::after {
	color: #bdbdbd;
	content: "⊕";
	font-size: 17px;
}

.page-id-987514640 .bamby-accordion__item[open] summary::after {
	content: "⊖";
}

.page-id-987514640 .bamby-accordion__content {
	background: #fff;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.7;
	padding: 18px 20px;
}

.page-id-987514640 .bamby-accordion__content p {
	margin-bottom: 0;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child .bamby-accordion__item:first-child summary {
	display: none;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:first-child .bamby-accordion__item:first-child .bamby-accordion__content {
	min-height: 87px;
	padding: 20px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:nth-child(2) {
	padding: 27px 0;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:nth-child(2) h2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.45;
	margin-bottom: 29px;
	text-align: center;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:nth-child(2) .bamby-accordion__item summary {
	height: 55px;
	min-height: 55px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:nth-child(2) .bamby-accordion__content {
	padding: 7px 20px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child {
	align-items: start;
	gap: 5.55%;
	padding: 27px 0 54px;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child .bamby-media {
	margin-inline: auto;
	width: 80%;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child .bamby-media img {
	aspect-ratio: 1 / 1;
	border-radius: 15px;
	box-shadow: 0 12px 24px rgba(17, 17, 17, 0.18);
	object-fit: cover;
}

.page-id-987514640 .entry-content > .bamby-section > .bamby-row:last-child .bamby-actions {
	margin-top: 28px;
	text-align: right;
}

/* Availability viewer */
.page-id-987514686 .entry-content > .bamby-section {
	padding: 0 0 55px;
}

.page-id-987514686 .entry-content > .bamby-section::after {
	background: #000;
	bottom: 0;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
	content: "";
	height: 100px;
	left: 0;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	position: relative;
	width: 80%;
	z-index: 1;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row + .bamby-row {
	margin-top: 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child {
	padding: 34px 0 22px;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child .bamby-rich-text {
	max-width: none;
	text-align: center;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	line-height: 27px;
	margin: 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child p {
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:first-child .bamby-divider {
	margin: 29px 0 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:nth-child(2) {
	gap: 5.55%;
	padding: 27px 0;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:nth-child(2) .bamby-rich-text {
	margin-bottom: 30px;
	max-width: none;
	text-align: center;
}

.page-id-987514686 .entry-content > .bamby-section > .bamby-row:nth-child(2) h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
	margin: 0;
}

.page-id-987514686 .bamby-embed {
	border: 1px solid #e0e0e0;
	border-radius: 15px;
	height: 1008px;
	overflow: hidden;
}

.page-id-987514686 .bamby-embed iframe {
	display: block;
	height: 1000px;
	min-height: 1000px;
	width: 100%;
}

.page-id-987514686 .bamby-embed p:empty {
	display: none;
	margin: 0;
}

/* Customer service schedulers */
body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section {
	padding: 24px 0 54px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row + .bamby-row {
	margin-top: 0;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child {
	padding-top: 27px;
}

.page-id-987509860 .entry-content > .bamby-section > .bamby-row:first-child {
	padding-bottom: 47px;
}

.page-id-987510959 .entry-content > .bamby-section > .bamby-row:first-child {
	padding-bottom: 71px;
}

.page-id-987519795 .entry-content > .bamby-section > .bamby-row:first-child {
	padding-bottom: 117px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child .bamby-rich-text {
	max-width: none;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child .bamby-rich-text:first-child {
	text-align: center;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child h1 {
	color: #a77b51;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 40px;
	margin: 0 0 26px;
	text-align: center;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child p,
body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child li {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child p {
	line-height: 23.8px;
	margin-bottom: 0;
	padding-bottom: 14px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child li {
	line-height: 26px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child h5 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child table {
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child table td {
	padding: 0 24px;
	vertical-align: top;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child table td p {
	margin: 0;
	padding-bottom: 0;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:first-child table td p img:not(.emoji) {
	aspect-ratio: 1 / 1;
	height: auto;
	max-width: none;
	object-fit: cover;
	width: 100%;
}

body:is(.page-id-987509860, .page-id-987510959, .page-id-987519795) .entry-content > .bamby-section > .bamby-row:last-child {
	padding: 27px 0 34px;
}

body:is(.page-id-987509860, .page-id-987510959) .entry-content > .bamby-section > .bamby-row:last-child iframe {
	height: 600px;
	min-height: 600px;
}

.page-id-987519795 .entry-content > .bamby-section > .bamby-row:last-child iframe {
	height: 900px;
	min-height: 900px;
}

/* WooCommerce customer account */
.bamby-section--account {
	padding: 24px 0 54px;
}

.bamby-section--account > .bamby-row {
	max-width: 1080px;
	padding: 27px 0;
	width: 80%;
}

.bamby-section--account > .bamby-row > h1 {
	color: #111;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 40px;
	margin: 0 0 44px;
	text-align: center;
}

.bamby-section--account .woocommerce {
	min-height: 308px;
}

.bamby-section--account .woocommerce-MyAccount-navigation {
	min-height: 308px;
}

.bamby-section--account-arrivals {
	box-sizing: border-box;
	height: 534px;
	padding: 81px 0 54px;
}

.bamby-section--account-arrivals > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.bamby-section--account-arrivals h1 {
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 40px;
	margin: 0 0 34px;
	text-align: center;
}

.bamby-section--account-arrivals .woocommerce ul.products {
	display: grid;
	gap: 3%;
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.bamby-section--account-arrivals .woocommerce ul.products li.product {
	margin: 0;
	width: auto;
}

.bamby-section--account-arrivals .woocommerce ul.products li.product img {
	aspect-ratio: 1 / 1;
	border-radius: 15px;
	box-shadow: 0 10px 20px rgba(17, 17, 17, 0.14);
	object-fit: cover;
}

.bamby-section--account-arrivals .bamby-actions {
	margin-top: 24px;
}

/* Customer registration */
.page-id-987510124 .entry-content > .bamby-section {
	padding: 24px 0 54px;
}

.page-id-987510124 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding: 27px 0 26px;
	width: 80%;
}

.page-id-987510124 .entry-content > .bamby-section .bamby-rich-text {
	max-width: none;
}

.page-id-987510124 .entry-content > .bamby-section .bamby-rich-text:first-child {
	margin-bottom: 30px;
	text-align: center;
}

.page-id-987510124 .entry-content > .bamby-section h1 {
	color: #a77b51;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 30px;
	margin: 0;
	padding-bottom: 10px;
	text-align: center;
}

.page-id-987510124 .entry-content > .bamby-section h4 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 18px;
	margin: 0;
	padding-bottom: 10px;
	text-align: center;
}

.page-id-987510124 .entry-content > .bamby-section form.register {
	margin-inline: auto;
	max-width: 960px;
}

/* Password recovery */
.page-id-987518435 .entry-content > .bamby-section {
	padding: 0 0 81px;
}

.page-id-987518435 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding: 80px 0 0;
	width: 80%;
}

.page-id-987518435 .entry-content > .bamby-section .bamby-rich-text {
	max-width: none;
}

.page-id-987518435 form.ur_lost_reset_password {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 23.8px;
	margin-inline: auto;
	min-height: 320px;
}

.page-id-987518435 form.ur_lost_reset_password .ur-lost-password-title {
	padding-bottom: 32px;
}

.page-id-987518435 form.ur_lost_reset_password .user-registration-form-row--first {
	padding-bottom: 14px;
}

.page-id-987518435 form.ur_lost_reset_password p:empty {
	margin-bottom: 0;
	padding-bottom: 14px;
}

/* Registration confirmation */
.page-id-987515355 .entry-content > .bamby-section {
	padding: 24px 0 54px;
}

.page-id-987515355 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding: 27px 0;
	width: 80%;
}

.page-id-987515355 .entry-content > .bamby-section .bamby-rich-text {
	max-width: none;
}

.page-id-987515355 .entry-content > .bamby-section h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 22px;
	margin: 0;
	padding-bottom: 10px;
}

.page-id-987515355 .entry-content > .bamby-section p {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 23.8px;
	margin: 0;
	padding-bottom: 14px;
}

.page-id-987515355 .entry-content > .bamby-section p:last-child {
	padding-bottom: 0;
}

/* Bamby Crew */
.page-id-987508506 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding-inline: 0;
	width: 80%;
}

.page-id-987508506 .bamby-section--header-video {
	box-sizing: border-box;
	height: 864px;
	padding: 71px 0 0;
}

.page-id-987508506 .bamby-section--header-video > .bamby-row:first-child {
	grid-template-columns: 3fr 1fr;
}

.page-id-987508506 .bamby-section--header-video > .bamby-row + .bamby-row {
	grid-template-columns: 1fr 3fr;
	margin-top: 52px;
}

.page-id-987508506 .bamby-section--header-video h1 {
	color: #a77b51;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 48px;
	margin: 0 0 10px;
	text-align: left !important;
	text-transform: none;
}

.page-id-987508506 .bamby-section--header-video h3 {
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 25px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 37.5px;
	margin: 0;
	text-align: left !important;
	text-transform: none;
}

.page-id-987508506 .bamby-section--header-video .bamby-video,
.page-id-987508506 .bamby-section--header-video .bamby-video iframe {
	border-radius: 8px;
	height: 100%;
}

.page-id-987508506 .bamby-section--header-video .bamby-video iframe {
	aspect-ratio: 16 / 9;
}

.page-id-987508506 .bamby-section--services {
	background: #000;
	box-sizing: border-box;
	color: #fff;
	height: 617px;
	padding: 110px 0 0;
}

.page-id-987508506 .bamby-section--services > .bamby-row + .bamby-row {
	margin-top: 96px;
}

.page-id-987508506 .bamby-section--services h4,
.page-id-987508506 .bamby-section--about h4 {
	font-family: "Work Sans", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3.25px;
	line-height: 18.2px;
	margin: 0;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.page-id-987508506 .bamby-section--services h2,
.page-id-987508506 .bamby-section--about h2 {
	font-family: "Work Sans", Helvetica, Arial, sans-serif;
	font-size: 52px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 62.4px;
	margin: 0;
	max-width: 800px;
	text-align: left;
}

.page-id-987508506 .bamby-section--services > .bamby-row:first-child .bamby-rich-text,
.page-id-987508506 .bamby-section--about > .bamby-row:first-child .bamby-rich-text {
	margin: 0;
	max-width: none;
}

.page-id-987508506 .bamby-section--services h4,
.page-id-987508506 .bamby-section--services h2 {
	color: #fff;
}

.page-id-987508506 .bamby-section--services .bamby-grid--4 .bamby-media {
	display: none;
}

.page-id-987508506 .bamby-section--services h5 {
	color: #fff;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
	margin: 0 0 16px;
}

.page-id-987508506 .bamby-section--services > .bamby-grid--4 {
	gap: 6%;
}

.page-id-987508506 .bamby-section--services > .bamby-grid--4 .bamby-rich-text {
	color: #bdbdbd;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

.page-id-987508506 .bamby-section--about {
	background: #f6f6f6;
	box-sizing: border-box;
	height: 723px;
	padding: 91px 0 0;
}

.page-id-987508506 .bamby-section--about > .bamby-row + .bamby-row {
	margin-top: 64px;
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 {
	gap: 5.5%;
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column {
	background-position: center;
	background-size: cover;
	border-radius: 40px;
	min-height: 270px;
	overflow: hidden;
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column:first-child {
	background: #fff;
	border-radius: 0;
	padding: 40px;
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column:nth-child(2) {
	background-image: url('/wp-content/uploads/2024/05/interior-design.png');
}

.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column:nth-child(3) {
	background-image: url('/wp-content/uploads/2024/05/Bamby-Crew-while-working-for-project.png');
}

.page-id-987508506 .bamby-section--about p {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

/* Privacy and terms */
body:is(.page-id-987508509, .page-id-987508508) .entry-content > .bamby-section--section {
	padding: 24px 0 52px;
}

body:is(.page-id-987508509, .page-id-987508508) .entry-content > .bamby-section--section > .bamby-row {
	max-width: 1080px;
	padding: 27px 0;
	width: 80%;
}

body:is(.page-id-987508509, .page-id-987508508) .entry-content > .bamby-section--section .bamby-rich-text {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 23.8px;
	max-width: none;
}

body:is(.page-id-987508509, .page-id-987508508) .entry-content > .bamby-section--section p {
	font-size: 14px;
	line-height: 23.8px;
	margin: 0;
	padding-bottom: 14px;
}

.page-id-987508508 .entry-content > .bamby-section--section > .bamby-row {
	padding-top: 23px;
}

.page-id-987508508 .entry-content > .bamby-section--section h1 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 32px;
	margin: 0;
	padding-bottom: 10px;
	text-align: center;
}

.page-id-987508508 .entry-content > .bamby-section--section h2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	margin: 0;
	padding-bottom: 10px;
	text-align: left;
}

.page-id-987508508 .entry-content > .bamby-section--section h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 22px;
	margin: 0;
	padding-bottom: 10px;
}

/* Divi renders this legal copy as continuous text nodes between headings. */
.page-id-987508508 .entry-content > .bamby-section--section p {
	display: contents;
}

.page-id-987508508 .entry-content > .bamby-section--section br {
	display: none;
}

.page-id-987508508 .entry-content > .bamby-section--section hr {
	margin: 0;
}

.page-id-987508508 .entry-content > .bamby-section--section {
	padding-bottom: 78px;
}

/* Blog archive */
body.blog #primary.bamby-blog-index {
	margin-inline: auto;
	max-width: 1080px;
	padding: 0 0 54px;
	width: 80%;
}

.bamby-blog-column {
	width: 73.6%;
}

body.blog .bamby-blog-card {
	margin: 0 0 60px;
}

.bamby-blog-card__image {
	display: block;
	margin-bottom: 30px;
}

.bamby-blog-card__image img {
	aspect-ratio: auto;
	border-radius: 0;
	contain-intrinsic-size: none;
	display: block;
	height: auto;
	width: 100%;
}

/* Preserve the same feature-image proportions generated by Divi. */
.bamby-blog-card:nth-of-type(1) .bamby-blog-card__image img {
	aspect-ratio: 1000 / 675;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(2) .bamby-blog-card__image img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(3) .bamby-blog-card__image img {
	aspect-ratio: 1024 / 675;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(4) .bamby-blog-card__image img {
	aspect-ratio: 1080 / 579;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(5) .bamby-blog-card__image img {
	aspect-ratio: 710 / 675;
	object-fit: cover;
}

.bamby-blog-card:nth-of-type(6) .bamby-blog-card__image img,
.bamby-blog-card:nth-of-type(7) .bamby-blog-card__image img {
	aspect-ratio: 1080 / 754;
	object-fit: cover;
}

.bamby-blog-card__title {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	margin: 0;
	padding-bottom: 10px;
}

.bamby-blog-card__title a {
	color: #000;
	text-decoration: none;
}

.bamby-blog-card__meta,
.bamby-blog-card__excerpt {
	color: #666;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
}

.bamby-blog-card__meta {
	margin: 0 0 6px;
	padding-bottom: 15px;
}

.bamby-blog-card__excerpt {
	margin: 0;
}

/* Calculator workspace */
.page-id-987520036 .entry-content > .bamby-section {
	box-sizing: border-box;
	padding: 78px 0 75px;
}

.page-id-987520036 .entry-content > .bamby-section > .bamby-row {
	max-width: 1080px;
	padding: 0;
	width: 80%;
}

/* Single product layout */
body.single-product .site-main {
	max-width: none;
	padding: 0;
	width: 100%;
}

body.single-product .site-main > article.product {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: 1080px;
	padding: 82px 0 54px;
	width: 80%;
}

body.single-product .site-main > .woocommerce {
	margin-inline: auto;
	max-width: 1080px;
	padding: 82px 0 54px;
	width: 80%;
}

body.single-product div.product {
	column-gap: 5.5%;
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 1.904fr);
}

body.single-product div.product .woocommerce-product-gallery,
body.single-product div.product .summary {
	float: none;
	margin: 0;
	width: 100% !important;
}

body.single-product div.product .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 1;
}

body.single-product .bamby-thumb-carousel {
	margin-top: 10px;
	position: relative;
}

body.single-product .bamby-thumb-carousel .flex-control-thumbs {
	align-items: flex-start;
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 10px;
	margin: 0 !important;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	width: 100%;
}

body.single-product .bamby-thumb-carousel .flex-control-thumbs::-webkit-scrollbar {
	display: none;
}

body.single-product .bamby-thumb-carousel .flex-control-thumbs li {
	display: flex !important;
	flex: 0 0 17.5% !important;
	flex-direction: column;
	float: none !important;
	margin: 0 !important;
	max-width: 17.5% !important;
	scroll-snap-align: start;
	width: 17.5% !important;
}

body.single-product .bamby-thumb-carousel .flex-control-thumbs img {
	aspect-ratio: 1;
	display: block;
	flex: 0 0 auto;
	height: auto;
	object-fit: cover;
	width: 100%;
}

body.single-product .bamby-thumb-carousel__label {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 6pt;
	font-weight: 500;
	height: 20px;
	line-height: 10px;
	margin-top: 4px;
	overflow: hidden;
	overflow-wrap: anywhere;
	text-align: center;
	width: 100%;
}

body.single-product .bamby-thumb-carousel__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 50%;
	box-shadow: 0 3px 12px rgb(0 0 0 / 18%);
	color: #111;
	cursor: pointer;
	display: none;
	height: 38px;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: calc(50% - 12px);
	transform: translateY(-50%);
	transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
	width: 38px;
	z-index: 3;
}

body.single-product .bamby-thumb-carousel.is-scrollable .bamby-thumb-carousel__arrow {
	display: flex;
}

body.single-product .bamby-thumb-carousel__arrow--previous {
	left: -19px;
}

body.single-product .bamby-thumb-carousel__arrow--next {
	right: -19px;
}

body.single-product .bamby-thumb-carousel__arrow svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 18px;
}

body.single-product .bamby-thumb-carousel__arrow:hover,
body.single-product .bamby-thumb-carousel__arrow:focus-visible {
	background: #111;
	color: #fff;
}

body.single-product .bamby-thumb-carousel__arrow:disabled {
	cursor: default;
	opacity: 0.28;
}

body.single-product div.product .summary {
	grid-column: 2;
	grid-row: 1;
}

body.single-product .product_title {
	color: #000;
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 26px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

body.single-product .summary .woocommerce-breadcrumb {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 23.8px;
	margin: 0 0 11px;
	padding: 0;
	text-align: center;
}

body.single-product .summary .woocommerce-product-details__short-description {
	color: #666;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 23.8px;
	margin: 30px 0 5px;
	text-align: center;
}

body.single-product .summary .woocommerce-product-details__short-description p {
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

body.single-product .summary p.price {
	color: #000 !important;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 23.8px;
	margin: 0 0 5px;
}

body.single-product .summary form.cart {
	align-items: stretch;
	border-bottom: 1px solid #eee;
	display: flex;
	gap: 22px;
	margin: 0;
	padding: 0 0 5px;
}

body.single-product .summary form.cart .quantity .qty {
	background: #f1f1f1;
	border: 1px solid #777;
	border-radius: 4px;
	font-size: 14px;
	height: 57px;
	padding: 0;
	text-align: center;
	width: 95px;
}

body.single-product .summary form.cart .single_add_to_cart_button {
	background: #000;
	border-radius: 4px;
	color: #fff;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	height: 57px;
	line-height: 23.8px;
	padding: 0 16px;
	text-transform: none;
}

body.single-product .summary .product_meta {
	display: none;
}

body.single-product div.product .woocommerce-tabs {
	border: 0;
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 92px 0 0;
	width: 64%;
}

body.single-product div.product .woocommerce-tabs ul.tabs,
body.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel > h2 {
	display: none;
}

body.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel {
	border: 0;
	color: #666;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 32px;
	margin: 0;
	padding: 0;
}

body.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel p {
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding-bottom: 16px;
}

body.single-product div.product .related.products {
	display: none;
}

/* Cart and checkout */
body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce {
	box-sizing: border-box;
	padding: 51px 0 54px;
}

body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce > .bamby-row {
	max-width: 1080px;
	padding: 0;
	width: 80%;
}

body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce h1 {
	color: #000;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 32px;
	margin: 0;
	padding: 0 0 10px;
	text-align: left;
	text-transform: none;
}

body:is(.page-id-987508413, .page-id-987508414) .bamby-section--commerce .woocommerce {
	margin-top: 28px;
}

.page-id-987508413 .entry-content > .bamby-section--commerce {
	min-height: 482px;
}

body.page-id-987508413:has(.woocommerce-cart-form) .entry-content > .bamby-section--commerce {
	min-height: 976px;
}

.page-id-987508413 .woocommerce-cart-form,
.page-id-987508413 .woocommerce table.shop_table,
.page-id-987508413 .cart-collaterals,
.page-id-987508413 .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

.page-id-987508413 .woocommerce table.shop_table {
	border: 1px solid #eee;
	border-collapse: collapse;
	border-radius: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 23.8px;
	display: table !important;
	table-layout: fixed;
}

.page-id-987508413 .woocommerce table.shop_table th,
.page-id-987508413 .woocommerce table.shop_table td {
	border-color: #eee;
	padding: 12px 8px;
	vertical-align: middle;
}

.page-id-987508413 .woocommerce table.cart .product-remove {
	width: 5%;
}

.page-id-987508413 .woocommerce table.cart .product-thumbnail {
	width: 8%;
}

.page-id-987508413 .woocommerce table.cart .product-name {
	width: 37%;
}

.page-id-987508413 .woocommerce table.cart .product-price,
.page-id-987508413 .woocommerce table.cart .product-quantity,
.page-id-987508413 .woocommerce table.cart .product-subtotal {
	width: 16.66%;
}

.page-id-987508413 .cart-collaterals .cart_totals h2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 26px;
	margin: 74px 0 20px;
	padding: 0;
}

.page-id-987508413 .woocommerce-cart-form .coupon .input-text {
	background: #f1f1f1;
	border: 0;
	font-size: 16px;
	height: 56px;
	padding: 0 14px;
	width: 150px !important;
}

.page-id-987508413 .woocommerce-cart-form button,
.page-id-987508413 .wc-proceed-to-checkout .checkout-button,
.page-id-987508413 .return-to-shop .button {
	background: #000;
	border-radius: 999px;
	color: #fff;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	text-transform: none;
}

.page-id-987508413 .woocommerce-cart-form button {
	height: 48px;
	padding: 0 20px;
}

.page-id-987508413 .wc-proceed-to-checkout .checkout-button {
	border-radius: 0;
	height: 46px;
	line-height: 46px;
	margin: 0;
	padding: 0;
	width: 100%;
}

.page-id-987508413 .wc-empty-cart-message .cart-empty,
.page-id-987508413 .cart-empty.woocommerce-info {
	align-items: center;
	background: #000;
	border: 0;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	height: 54px;
	line-height: 23.8px;
	margin: 0;
	padding: 0 14px;
}

.page-id-987508413 .cart-empty.woocommerce-info::before {
	display: none;
}

.page-id-987508413 .return-to-shop {
	margin: 36px 0 0;
}

.page-id-987508413 .return-to-shop .button {
	display: inline-flex;
	height: 49px;
	align-items: center;
	padding: 0 21px;
}

.page-id-987508414 form.checkout,
.page-id-987508414 #customer_details,
.page-id-987508414 #order_review,
.page-id-987508414 #order_review_heading {
	width: 100%;
}

.page-id-987508414 .woocommerce-form-coupon-toggle .woocommerce-info {
	align-items: center;
	background: #000;
	border: 0;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	height: 54px;
	line-height: 23.8px;
	margin: 0 0 60px;
	padding: 0 14px;
}

.page-id-987508414 .woocommerce-form-coupon-toggle .woocommerce-info::before {
	display: none;
}

.page-id-987508414 .woocommerce-form-coupon-toggle .woocommerce-info a {
	color: #fff;
}

.page-id-987508414 .woocommerce-checkout h3 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 31px;
	margin: 0 0 10px;
	padding: 0;
}

.page-id-987508414 .woocommerce-checkout input.input-text,
.page-id-987508414 .woocommerce-checkout select,
.page-id-987508414 .woocommerce-checkout textarea {
	background: #f1f1f1;
	border: 0;
	border-radius: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	min-height: 56px;
	padding: 15px;
}

.page-id-987508414 .woocommerce-checkout textarea {
	min-height: 106px;
}

.page-id-987508414 .woocommerce-checkout .form-row {
	margin: 0 0 14px;
	padding: 0;
}

.page-id-987508414 #payment {
	background: #f5f5f5;
	border-radius: 0;
}

.page-id-987508414 .entry-content > .bamby-section--commerce {
	padding-bottom: 81px;
}

.page-id-987508414 .woocommerce-additional-fields::before {
	content: "Additional information";
	display: block;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 31px;
	margin: 32px 0 8px;
}

@media (max-width: 767px) {
	body.single-product .site-main > .woocommerce,
	body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce > .bamby-row,
	.page-id-987520036 .entry-content > .bamby-section > .bamby-row {
		width: 80%;
	}

	body.single-product .site-main > article.product {
		padding-top: 8px;
		width: 80%;
	}

	body.single-product div.product {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product div.product .summary {
		display: contents;
	}

	body.single-product .product_title {
		font-size: 30px;
		grid-column: 1;
		grid-row: 1;
		line-height: 30px;
	}

	body.single-product .summary .woocommerce-breadcrumb {
		grid-column: 1;
		grid-row: 2;
		margin: 7px 0 0;
	}

	body.single-product .summary .woocommerce-product-details__short-description {
		grid-column: 1;
		grid-row: 3;
		margin: 10px 0 0;
	}

	body.single-product div.product .woocommerce-product-gallery {
		grid-column: 1;
		grid-row: 4;
		margin-top: 33px;
	}

	body.single-product .bamby-thumb-carousel__arrow {
		height: 32px;
		width: 32px;
	}

	body.single-product .bamby-thumb-carousel__arrow--previous {
		left: -16px;
	}

	body.single-product .bamby-thumb-carousel__arrow--next {
		right: -16px;
	}

	body.single-product .summary p.price {
		grid-column: 1;
		grid-row: 5;
		margin-top: 30px;
	}

	body.single-product .summary form.cart {
		grid-column: 1;
		grid-row: 6;
		padding-bottom: 0;
	}

	body.single-product div.product .woocommerce-tabs {
		grid-column: 1;
		grid-row: 7;
		margin-top: 30px;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs ul.tabs {
		border: 1px solid #eee;
		display: block;
		margin: 0 0 20px;
		padding: 30px 0 0;
	}

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

	body.single-product div.product .woocommerce-tabs ul.tabs li {
		background: #000;
		border: 0;
		border-radius: 0;
		display: block;
		margin: 0;
		padding: 0;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs ul.tabs li a {
		color: #fff;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 14px;
		font-weight: 500;
		padding: 8px 30px;
	}
}

.bamby-terms-list {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.35rem;
}

.bamby-terms-list li {
  margin: 0 0 0.45rem;
  padding-left: 0.2rem;
  line-height: 1.65;
}

.bamby-embed iframe {
	border: 0;
	min-height: 760px;
	width: 100%;
}

.bamby-accordion {
	border-top: 1px solid var(--bamby-line);
}

.bamby-accordion__item {
	border-bottom: 1px solid var(--bamby-line);
}

.bamby-accordion__item summary {
	cursor: pointer;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	padding: 1rem 0;
}

.bamby-accordion__content {
	padding: 0 0 1.5rem;
}

.bamby-narrow {
	max-width: var(--bamby-reading);
	text-align: center;
}

.bamby-eyebrow {
	color: var(--bamby-gold-dark);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

/* Forms */
.bamby-form {
	background: var(--bamby-white);
	border: 1px solid var(--bamby-line);
	border-radius: var(--bamby-radius);
	box-shadow: var(--bamby-shadow);
	margin-top: var(--bamby-md);
	padding: var(--bamby-md);
}

.bamby-form-grid {
	display: grid;
	gap: var(--bamby-sm);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bamby-form label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
	text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
	background: var(--bamby-white);
	border: 1px solid #b9b2aa;
	border-radius: 9px;
	color: var(--bamby-ink);
	font: inherit;
	min-height: 46px;
	padding: 0.7rem 0.8rem;
	width: 100%;
}

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

.bamby-form-message {
	border-radius: 9px;
	padding: 0.8rem 1rem;
}

.bamby-form-message--success {
	background: #e8f5ed;
	color: var(--bamby-success);
}

.bamby-form-message--error {
	background: #fff0f0;
	color: var(--bamby-error);
}

/* Blog */
.bamby-post-grid {
	display: grid;
	gap: var(--bamby-md);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bamby-post-card {
	background: var(--bamby-white);
	border: 1px solid var(--bamby-line);
	border-radius: var(--bamby-radius);
	overflow: hidden;
}

.bamby-post-card > a {
	color: inherit;
	display: block;
	height: 100%;
	text-decoration: none;
}

.bamby-post-card img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.bamby-post-card__body {
	padding: var(--bamby-md);
}

/* WooCommerce */
.woocommerce.archive .site-main {
	max-width: none;
	padding-inline: 0;
}

.woocommerce.archive .woocommerce-archive-wrapper {
	margin-inline: auto;
	max-width: 1080px;
	width: 80%;
}

.woocommerce.archive .woocommerce-products-header {
	margin-bottom: 1.6rem;
	text-align: center;
}

.woocommerce.archive .woocommerce-products-header__title {
	font-family: "Aboreto", Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 26px;
	margin: 0;
	text-align: center;
	text-transform: none;
}

.page-id-987509196 .bamby-section--our-services-and-fees-section,
.page-id-987509196 .bamby-section--let-s-bring-it-to-life-section {
	background-color: #fff !important;
}

.woocommerce.archive .term-description {
	font-size: 14px;
	line-height: 1.45;
	margin-inline: auto;
	max-width: 960px;
	text-align: center;
}

.woocommerce .woocommerce-breadcrumb {
	color: var(--bamby-muted);
	font-size: 0.8rem;
}

.woocommerce ul.products {
	display: grid;
	column-gap: 5.5%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	row-gap: 3.7rem;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: transparent;
	border: 0;
	border-radius: 0;
	float: none;
	margin: 0 !important;
	overflow: visible;
	padding: 0;
	width: 100% !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	border-radius: 15px;
	box-shadow: 0 12px 13px -7px #000;
	margin: 0 0 9px;
	object-fit: cover;
	width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
	font-family: "Open Sans", Arial, sans-serif;
	margin: 0;
	text-align: center;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding: 7px 0;
}

.woocommerce ul.products li.product .price {
	color: #666;
	font-size: 14px;
	line-height: 26px;
}

.woocommerce ul.products li.product .button {
	display: none !important;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--bamby-gold-dark);
}

.woocommerce ul.products li.product .price {
	color: #666;
}

.woocommerce div.product {
	display: flow-root;
}

.woocommerce div.product div.images img {
	border-radius: var(--bamby-radius);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--bamby-white);
	border-top-color: var(--bamby-gold);
}

.bamby-shop-filters {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 2rem 0 3.7rem;
	padding: 0;
}

.bamby-section--commerce .woocommerce,
.bamby-section--account .woocommerce {
	margin-top: var(--bamby-md);
}

/* Footer */
.bamby-site-footer {
	background: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	padding: 64px 0 0;
}

.bamby-footer-grid {
	display: grid;
	column-gap: 5.5%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-inline: auto;
	max-width: 1080px;
	width: 80%;
}

.bamby-site-footer h2 {
	color: var(--bamby-white);
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 0.55rem;
}

.bamby-site-footer a {
	color: #fff;
	text-decoration: none;
}

.bamby-site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bamby-site-footer li + li {
	margin-top: 0;
}

.bamby-footer-about p {
	max-width: 560px;
}

.bamby-socials--footer {
	color: var(--bamby-white);
}

.bamby-footer-bottom {
	border-top: 0;
	font-size: 13px;
	font-weight: 500;
	margin: 54px auto 0;
	max-width: 1080px;
	padding: 0 0 25px;
	text-align: left;
	width: 80%;
}

.bamby-footer-bottom a {
	font-weight: 700;
}

.bamby-footer-bottom p {
	margin: 0;
}

@media (max-width: 1024px) {
	.bamby-grid--4,
	.bamby-grid--5,
	.woocommerce ul.products,
	.bamby-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bamby-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bamby-menu-toggle {
		display: block;
		left: 1rem;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.bamby-primary-nav {
		background: var(--bamby-white);
		box-shadow: var(--bamby-shadow);
		display: none;
		left: 0;
		padding: var(--bamby-sm);
		position: absolute;
		top: 100%;
		width: 100%;
	}

	.bamby-primary-nav.is-open {
		display: block;
	}

	.bamby-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.bamby-menu a {
		display: block;
		padding: 0.7rem;
	}

}

@media (min-width: 768px) and (max-width: 1024px) {
	.bamby-hide-tablet {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.bamby-hide-desktop {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.bamby-site-header {
		background: #fff;
		border-radius: 0 0 42px 42px;
		height: 86px;
		overflow: visible;
		width: 100%;
	}

	.bamby-header-top {
		background: transparent;
		inset: 0;
		pointer-events: none;
		position: absolute;
		z-index: 2;
	}

	.bamby-header-inner--top {
		min-height: 86px;
		padding: 0;
	}

	.bamby-socials,
	.bamby-logo,
	.bamby-phone,
	.bamby-header-actions > a:nth-child(2),
	.bamby-cart-link > span:not(.bamby-cart-icon),
	.bamby-header-search {
		display: none;
	}

	.bamby-header-actions {
		left: calc(50% - 8px);
		pointer-events: auto;
		position: absolute;
		top: 61px;
		transform: translate(-100%, -50%);
	}

	.bamby-cart-link,
	.bamby-cart-icon {
		color: #000;
		display: block;
	}

	.bamby-cart-icon svg {
		height: 22px;
		width: 22px;
	}

	.bamby-header-main,
	.bamby-header-inner--main {
		min-height: 86px;
		padding: 0;
	}

	.bamby-menu-toggle {
		left: calc(50% + 8px);
		top: 61px;
		transform: translateY(-50%);
	}

	.bamby-section--mobile-header-video,
	.bamby-section--mobile-header-video .bamby-video,
	.bamby-section--mobile-header-video video {
		height: 600px;
		min-height: 600px;
	}

	.home #page {
		padding-top: 50px;
	}

	html,
	body {
		overflow-x: hidden;
	}

	.bamby-grid--2,
	.bamby-grid--3,
	.bamby-grid--4,
	.bamby-grid--5,
	.bamby-post-grid,
	.bamby-form-grid,
	.bamby-footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.woocommerce ul.products {
		column-gap: 1rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 2.4rem;
	}

	.woocommerce.archive .woocommerce-archive-wrapper,
	.bamby-footer-grid,
	.bamby-footer-bottom {
		width: 80%;
	}

	.woocommerce.archive .woocommerce-archive-wrapper {
		margin-top: -68px;
	}

	.woocommerce.archive .woocommerce-products-header {
		padding-top: 20px;
	}

	.woocommerce.archive .woocommerce-products-header__title {
		font-size: 20px;
		line-height: 24px;
		white-space: nowrap;
	}

	.page-id-987508412 .entry-header {
		padding: 20px 0;
		width: 90%;
	}

	.woocommerce.archive .term-description {
		display: none;
	}

	.woocommerce.archive .bamby-shop-filters {
		margin: 39px 0 69px;
	}

	.woocommerce.archive .bamby-shop-filters .berocket_inline_filters {
		clear: both !important;
		float: none !important;
		width: 100% !important;
	}

	.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle {
		margin: 0;
	}

	.woocommerce.archive .woocommerce-result-count {
		font-size: 14px;
		line-height: 23.8px;
		margin-bottom: 14px;
	}

	.woocommerce.archive .woocommerce-ordering {
		float: right;
		margin: 0 0 14px;
		width: 52.63%;
	}

	.woocommerce.archive .woocommerce-ordering select {
		background: #eee;
		border: 0;
		border-radius: 0;
		font-size: 12px;
		height: 25px;
		min-height: 25px;
		padding: 2px 8px;
	}

	.woocommerce.archive ul.products {
		clear: both;
	}

	body:is(.page-id-987508413, .page-id-987508414) .entry-content > .bamby-section--commerce {
		padding-top: 38px;
	}

	.page-id-987508413 .woocommerce-cart-form table.shop_table {
		display: block !important;
		padding: 12px 4px;
		table-layout: auto;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table thead,
	.page-id-987508413 .woocommerce-cart-form .shop_table tbody,
	.page-id-987508413 .woocommerce-cart-form .shop_table tr,
	.page-id-987508413 .woocommerce-cart-form .shop_table td {
		display: block !important;
		width: 100% !important;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table thead,
	.page-id-987508413 .woocommerce-cart-form .shop_table td.product-thumbnail {
		display: none !important;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table td.product-remove {
		padding-block: 15px;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table td.product-quantity {
		padding-block: 16px;
	}

	.page-id-987508413 .woocommerce-cart-form .shop_table td.actions {
		margin-top: 24px;
	}

	.page-id-987508413 .woocommerce-cart-form .coupon,
	.page-id-987508413 .woocommerce-cart-form .coupon .input-text,
	.page-id-987508413 .woocommerce-cart-form .coupon button,
	.page-id-987508413 .woocommerce-cart-form .actions > button {
		float: none;
		width: 100% !important;
	}

	.page-id-987508413 .woocommerce-cart-form .coupon button {
		margin-top: 10px;
	}

	body.page-id-987508413 .entry-content > .bamby-section--commerce {
		padding-bottom: 119px;
	}

	body.page-id-987508414 .entry-content > .bamby-section--commerce h1 {
		font-size: 20px;
		line-height: 28px;
		padding-bottom: 0;
	}

	.page-id-987508414 .woocommerce-form-coupon-toggle .woocommerce-info {
		display: block;
		line-height: 24px;
		min-height: 78px;
		padding: 13px 14px;
	}

	body.page-id-987508414 #customer_details {
		margin-top: 11px;
		padding-top: 8px;
	}

	.page-id-987508414 form.checkout .form-row-first,
	.page-id-987508414 form.checkout .form-row-last {
		float: none;
		width: 100%;
	}

	.page-id-987508506 .bamby-section--header-video {
		height: 619px;
		padding-top: 58px;
	}

	.page-id-987508506 .bamby-section--header-video > .bamby-row:first-child,
	.page-id-987508506 .bamby-section--header-video > .bamby-row + .bamby-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.page-id-987508506 .bamby-section--header-video > .bamby-row + .bamby-row {
		margin-top: 53px;
	}

	.page-id-987508506 .bamby-section--header-video h1 {
		font-size: 24px;
		line-height: 28.8px;
	}

	.page-id-987508506 .bamby-section--header-video h3 {
		font-size: 16px;
		line-height: 22.4px;
	}

	.page-id-987508506 .bamby-section--header-video .bamby-video,
	.page-id-987508506 .bamby-section--header-video .bamby-video iframe {
		aspect-ratio: 16 / 9;
		height: auto;
		width: 100%;
	}

	.page-id-987508506 .bamby-section--services,
	.page-id-987508506 .bamby-section--about {
		height: auto;
		padding-bottom: 70px;
	}

	.page-id-987508506 .bamby-section--services {
		padding-top: 107px;
	}

	.page-id-987508506 .bamby-section--services h2,
	.page-id-987508506 .bamby-section--about h2 {
		font-size: 20px;
		line-height: 24px;
	}

	.page-id-987508506 .bamby-section--services > .bamby-row + .bamby-row {
		margin-top: 60px;
	}

	.page-id-987508506 .bamby-section--services > .bamby-grid--4,
	.page-id-987508506 .bamby-section--about > .bamby-grid--3 {
		gap: 32px;
	}

	.page-id-987508506 .bamby-section--about > .bamby-grid--3 .bamby-column:first-child {
		padding: 30px;
	}

	body.blog #page {
		padding-top: 58px !important;
	}

	body.blog .bamby-blog-column {
		width: 100%;
	}

	body.blog .bamby-blog-card {
		margin-bottom: 42px;
	}

	body.blog .bamby-blog-card__image img {
		aspect-ratio: 1 / 1 !important;
		object-fit: cover;
	}

	body.blog .bamby-blog-card__title {
		font-size: 16px;
		line-height: 16px;
		padding-bottom: 0;
	}

	.bamby-site-footer {
		padding-top: 44px;
	}

	.bamby-footer-grid {
		gap: 2rem;
	}

	.bamby-footer-bottom {
		margin-top: 36px;
	}

	body:not(.home) #page {
		padding-top: 132px;
	}

	.bamby-section {
		padding: var(--bamby-lg) 0;
	}

	.bamby-card {
		max-width: 560px;
		margin-inline: auto;
	}

	.bamby-embed iframe {
		min-height: 680px;
	}

	.bamby-hide-phone {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	video[autoplay] {
		display: none;
	}
}


/* Mobile header actions and product sale badge - 2026-08-15 */
body.single-product div.product > .onsale {
	align-self: start;
	grid-column: 1;
	grid-row: 1;
	inset: auto;
	justify-self: start;
	margin: 12px 0 0 12px;
	position: relative;
	z-index: 20;
}

@media (max-width: 767px) {
	.bamby-site-header,
	.bamby-header-top,
	.bamby-header-inner--top,
	.bamby-header-main,
	.bamby-header-inner--main {
		height: 86px;
		min-height: 86px;
	}

	.bamby-logo {
		display: block !important;
		left: 50%;
		pointer-events: auto;
		position: absolute;
		top: 6px;
		transform: translateX(-50%);
		z-index: 3;
	}

	.bamby-logo img,
	.is-condensed .bamby-logo img {
		filter: brightness(0);
		height: 32px;
		width: auto;
	}

	.bamby-socials {
		color: #000;
		display: flex !important;
		gap: 6px;
		pointer-events: auto;
		position: absolute;
		right: 76px;
		top: 12px;
		z-index: 4;
	}

	.bamby-socials svg {
		height: 14px;
		width: 14px;
	}

	.bamby-header-actions {
		gap: 7px;
		left: auto;
		right: 12px;
		top: 8px;
		transform: none;
		z-index: 4;
	}

	.bamby-header-actions > a[href*="/my-account/"] {
		color: #000;
		display: inline-grid !important;
		font-size: 0;
		height: 24px;
		padding: 0;
		place-items: center;
		position: relative;
		width: 24px;
	}

	.bamby-header-actions > a[href*="/my-account/"]::before {
		border: 2px solid currentColor;
		border-radius: 50%;
		content: "";
		height: 7px;
		left: 6.5px;
		position: absolute;
		top: 1px;
		width: 7px;
	}

	.bamby-header-actions > a[href*="/my-account/"]::after {
		border: 2px solid currentColor;
		border-bottom: 0;
		border-radius: 9px 9px 0 0;
		bottom: 1px;
		content: "";
		height: 8px;
		left: 2px;
		position: absolute;
		width: 16px;
	}

	.bamby-cart-link,
	.bamby-cart-icon {
		color: #000;
		display: block;
		height: 24px;
		width: 24px;
	}

	.bamby-cart-icon svg {
		height: 22px;
		width: 22px;
	}

	.bamby-menu-toggle {
		left: 50%;
		pointer-events: auto;
		top: 61px;
		transform: translate(-50%, -50%);
		z-index: 5;
	}

	.bamby-primary-nav {
		left: 0;
		max-height: calc(100vh - 86px);
		overflow-y: auto;
		pointer-events: auto;
		top: 86px;
		z-index: 6;
	}

	body.single-product div.product > .onsale {
		grid-row: 4;
		margin: 45px 0 0 12px;
	}
}


/* Keep the compact mobile header visible below the WordPress admin toolbar. */
@media (max-width: 767px) {
	body.admin-bar .bamby-site-header {
		top: 46px;
	}
}

/* Preserve logo and action spacing on 320px-wide screens. */
@media (max-width: 359px) {
	.bamby-socials {
		gap: 4px;
		right: 72px;
	}

	.bamby-socials svg {
		height: 12px;
		width: 12px;
	}
}

/* Position mobile social links on the requested left side. */
@media (max-width: 767px) {
	.bamby-socials {
		left: 14px;
		right: auto;
	}
}

@media (max-width: 359px) {
	.bamby-socials {
		left: 10px;
		right: auto;
	}
}



/* Unified product summary and customer controls - 2026-08-15 */
:root {
	--bamby-control-height: 44px;
	--bamby-control-radius: 10px;
}

/* Keep customer-facing text buttons consistent without changing icon controls. */
.bamby-button,
button.bamby-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wp-element-button,
.wc-block-components-button,
.ur-frontend-form button[type="submit"],
input.wpcf7-submit {
	border-radius: var(--bamby-control-radius) !important;
}

body.single-product .site-main > article.product {
	padding-top: 65px;
}

body.single-product div.product .summary {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

body.single-product .summary .product_title,
body.single-product .summary .woocommerce-breadcrumb,
body.single-product .summary .woocommerce-product-details__short-description,
body.single-product .summary p.price {
	width: 100%;
}

body.single-product .summary .woocommerce-breadcrumb {
	margin-bottom: 0;
}

body.single-product .summary .woocommerce-product-details__short-description {
	margin: 10px 0 7px;
}

body.single-product .summary p.price {
	margin: 0 0 10px;
	text-align: center;
}

body.single-product .summary form.cart {
	align-items: center;
	border-bottom: 1px solid #eee;
	gap: 12px;
	justify-content: center;
	margin: 0 auto;
	order: 5;
	padding: 0 0 14px;
	width: min(100%, 430px);
}

body.single-product .summary form.cart .quantity {
	margin: 0;
}

body.single-product .summary form.cart .quantity .qty {
	border-radius: var(--bamby-control-radius);
	height: var(--bamby-control-height);
	width: 76px;
}

body.single-product .summary form.cart .single_add_to_cart_button {
	border-radius: var(--bamby-control-radius) !important;
	height: var(--bamby-control-height);
	line-height: 1.2;
	min-height: var(--bamby-control-height);
	min-width: 122px;
	padding: 0 18px;
}

body.single-product .summary p.stock {
	font-size: 12px;
	line-height: 1.45;
	margin: 7px 0 0;
	order: 6;
	text-align: center;
	width: 100%;
}

body.single-product .summary .product_meta {
	color: #777;
	display: block;
	font-size: 10.5px;
	letter-spacing: 0.01em;
	line-height: 1.5;
	margin: 8px 0 0;
	order: 7;
	text-align: center;
	width: 100%;
}

body.single-product .summary .product_meta .sku_wrapper {
	display: inline-block;
}

body.single-product .summary .product_meta .posted_in,
body.single-product .summary .product_meta .tagged_as {
	display: none;
}

/* Variable products: align labels and choices, then keep the buying row centred. */
body.single-product .product-type-variable .summary form.variations_form {
	align-items: center;
	flex-direction: column;
}

body.single-product .summary table.variations {
	border: 0;
	margin: 0 auto 10px;
	max-width: 430px;
	table-layout: fixed;
	width: 100%;
}

body.single-product .summary table.variations tbody,
body.single-product .summary table.variations tr {
	display: block;
	width: 100%;
}

body.single-product .summary table.variations tr {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: 96px minmax(0, 1fr);
	margin: 0 0 10px;
}

body.single-product .summary table.variations th.label,
body.single-product .summary table.variations td.value {
	background: transparent;
	border: 0;
	display: block;
	padding: 0;
	text-align: left;
	width: auto;
}

body.single-product .summary table.variations th.label label {
	align-items: center;
	display: flex;
	font-size: 13px;
	font-weight: 600;
	height: var(--bamby-control-height);
	justify-content: flex-end;
	line-height: 1.2;
	margin: 0;
}

body.single-product .summary table.variations select {
	background-color: #fff;
	border: 1px solid #777;
	border-radius: var(--bamby-control-radius);
	font-size: 13px;
	height: var(--bamby-control-height);
	margin: 0;
	padding: 0 36px 0 12px;
	width: 100%;
}

body.single-product .summary table.variations .reset_variations {
	display: inline-block;
	font-size: 11px;
	line-height: 1.4;
	margin-top: 5px;
}

body.single-product .summary .single_variation_wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
	width: 100%;
}

body.single-product .summary .single_variation {
	display: contents !important;
}

body.single-product .summary .woocommerce-variation-description {
	order: 1;
}

body.single-product .summary .woocommerce-variation-price {
	margin: 0 0 9px;
	order: 2;
	text-align: center;
	width: 100%;
}

body.single-product .summary .woocommerce-variation-add-to-cart {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: center;
	order: 3;
	width: 100%;
}

body.single-product .summary .woocommerce-variation-availability {
	margin: 7px 0 0;
	order: 4;
	text-align: center;
	width: 100%;
}

body.single-product .summary .woocommerce-variation-availability p.stock {
	margin: 0;
}

@media (max-width: 767px) {
	body.single-product #page {
		padding-top: 108px;
	}

	body.admin-bar.single-product #page {
		padding-top: 154px;
	}

	body.single-product .site-main > article.product {
		padding-top: 8px;
	}

	body.single-product div.product .summary {
		display: contents;
	}

	body.single-product .summary p.price {
		margin-top: 24px;
		text-align: center;
	}

	body.single-product .summary form.cart {
		justify-self: center;
		width: 100%;
	}

	body.single-product .summary p.stock {
		grid-column: 1;
		grid-row: 7;
	}

	body.single-product .summary .product_meta {
		grid-column: 1;
		grid-row: 8;
	}

	body.single-product div.product .woocommerce-tabs {
		grid-row: 9;
	}

	body.single-product .summary table.variations tr {
		grid-template-columns: 88px minmax(0, 1fr);
	}

	body.single-product .summary table.variations th.label label {
		justify-content: flex-start;
	}
}



/* Keep unselected variable-product controls compact. */
body.single-product .summary .single_variation_wrap {
	min-height: 0 !important;
}

body.single-product .summary .single_variation:empty,
body.single-product .summary .reset_variations[style*="hidden"] {
	display: none !important;
}



/* Product content flow and sticky summary - 2026-08-15 */
body.single-product .summary form.cart .quantity {
	flex: 0 0 76px;
	height: var(--bamby-control-height);
}

body.single-product .summary form.cart .quantity .qty,
body.single-product .summary form.cart .single_add_to_cart_button {
	box-sizing: border-box;
	height: var(--bamby-control-height) !important;
	min-height: var(--bamby-control-height) !important;
}

body.single-product .product-type-simple .summary form.cart {
	border-bottom: 0;
	padding-bottom: 0;
}

body.single-product .product-type-simple .summary p.stock {
	border-bottom: 1px solid #eee;
	box-sizing: border-box;
	margin: 7px auto 0;
	max-width: 430px;
	padding: 0 0 12px calc((100% - 210px) / 2);
	text-align: left;
	width: 100%;
}

body.single-product .product-type-variable .summary form.cart {
	border-bottom: 1px solid #eee;
	padding-bottom: 14px;
}

body.single-product .summary .product_meta {
	margin-left: auto;
	margin-right: auto;
	max-width: 430px;
	text-align: left;
}

body.single-product div.product .up-sells.upsells.products {
	clear: both;
	grid-column: 1 / -1;
	grid-row: 99;
	margin: 48px 0 0;
	order: 999;
	width: 100% !important;
}

@media (min-width: 768px) {
	body.single-product div.product .summary {
		align-self: start;
		position: sticky;
		top: 175px;
		z-index: 2;
	}

	body.admin-bar.single-product div.product .summary {
		top: 207px;
	}
}

@media (max-width: 767px) {
	body.single-product div.product .summary {
		position: static;
		top: auto;
		z-index: auto;
	}

	body.single-product .summary form.cart .quantity,
	body.single-product .summary form.cart .quantity .qty,
	body.single-product .summary form.cart .single_add_to_cart_button {
		height: var(--bamby-control-height) !important;
		min-height: var(--bamby-control-height) !important;
	}

	body.single-product .product-type-simple .summary p.stock {
		justify-self: center;
		padding-left: calc((100% - 210px) / 2);
	}

	body.single-product .summary .product_meta {
		justify-self: center;
		text-align: left;
		width: 100%;
	}

	body.single-product div.product .up-sells.upsells.products {
		grid-column: 1;
		grid-row: 99;
		margin-top: 36px;
	}
}



/* Align variation stock messages beneath the quantity field. */
body.single-product .summary .woocommerce-variation-availability {
	box-sizing: border-box;
	max-width: 430px;
	padding-left: calc((100% - 210px) / 2);
	text-align: left;
}



/* Stone Slabs information, media, and upsell system - 2026-08-15 */
body.single-product div.product .woocommerce-product-gallery {
	align-self: start;
}

body.single-product div.product .summary {
	height: max-content;
}

body.single-product div.product .woocommerce-tabs {
	margin-top: 30px;
}

body.single-product .woocommerce-Tabs-panel figure.wp-block-embed-youtube,
body.single-product .woocommerce-Tabs-panel .wp-block-embed__wrapper,
body.single-product .woocommerce-Tabs-panel .fluid-width-video-wrapper,
body.single-product .woocommerce-Tabs-panel .wp-video {
	margin-left: auto;
	margin-right: auto;
	max-width: 620px;
	width: 100%;
}

body.single-product .woocommerce-Tabs-panel iframe[src*="youtube"],
body.single-product .woocommerce-Tabs-panel iframe[src*="youtu.be"],
body.single-product .woocommerce-Tabs-panel video {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto !important;
	margin: 24px auto;
	max-width: 620px;
	width: 100% !important;
}

body.bamby-stone-slab-product .bamby-material-notes {
	border-top: 1px solid #e8e8e8;
	margin-top: 28px;
	padding-top: 22px;
}

body.bamby-stone-slab-product .bamby-material-notes h3 {
	color: #333;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 18px;
}

body.bamby-stone-slab-product .bamby-material-notes p {
	color: #666;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.65;
	margin: 0;
	padding: 0 0 15px;
}

body.bamby-stone-slab-product .bamby-material-notes a {
	color: #2f6f9f;
	font-weight: 500;
	text-decoration: none;
}

body.bamby-stone-slab-product .bamby-material-notes a:hover,
body.bamby-stone-slab-product .bamby-material-notes a:focus-visible {
	text-decoration: underline;
}

/* Recommendations: six compact products on desktop, four on mobile, scrollable when needed. */
body.single-product div.product .up-sells.upsells.products {
	margin-top: 42px;
	overflow: visible;
}

body.single-product .up-sells.upsells.products > h2 {
	color: #111;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 20px;
	text-align: left;
}

body.single-product .bamby-upsell-carousel {
	position: relative;
	width: 100%;
}

body.single-product .bamby-upsell-carousel ul.products {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 14px;
	grid-template-columns: none !important;
	margin: 0 !important;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 !important;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	width: 100%;
}

body.single-product .bamby-upsell-carousel ul.products::-webkit-scrollbar {
	display: none;
}

body.single-product .bamby-upsell-carousel ul.products li.product {
	box-sizing: border-box;
	flex: 0 0 calc((100% - 70px) / 6) !important;
	float: none !important;
	margin: 0 !important;
	max-width: calc((100% - 70px) / 6) !important;
	min-width: 0;
	position: relative;
	scroll-snap-align: start;
	text-align: center;
	width: auto !important;
}

body.single-product .bamby-upsell-carousel ul.products li.product a {
	display: block;
}

body.single-product .bamby-upsell-carousel ul.products li.product a img {
	aspect-ratio: 1;
	border-radius: 10px;
	display: block;
	height: auto;
	margin: 0 0 8px !important;
	object-fit: cover;
	width: 100%;
}

body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
	min-height: 30px;
	padding: 0 2px;
	text-transform: none;
}

body.single-product .bamby-upsell-carousel ul.products li.product .price {
	font-size: 10px;
	line-height: 1.35;
	margin: 4px 0 0;
}

body.single-product .bamby-upsell-carousel ul.products li.product .onsale {
	font-size: 9px;
	height: 30px;
	line-height: 30px;
	min-height: 30px;
	min-width: 30px;
	padding: 0;
}

body.single-product .bamby-upsell-carousel__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 50%;
	box-shadow: 0 3px 12px rgb(0 0 0 / 18%);
	color: #111;
	cursor: pointer;
	display: none;
	height: 36px;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 36px;
	z-index: 4;
}

body.single-product .bamby-upsell-carousel.is-scrollable .bamby-upsell-carousel__arrow {
	display: flex;
}

body.single-product .bamby-upsell-carousel__arrow--previous {
	left: -18px;
}

body.single-product .bamby-upsell-carousel__arrow--next {
	right: -18px;
}

body.single-product .bamby-upsell-carousel__arrow svg {
	fill: none;
	height: 17px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 17px;
}

body.single-product .bamby-upsell-carousel__arrow:hover,
body.single-product .bamby-upsell-carousel__arrow:focus-visible {
	background: #111;
	color: #fff;
}

body.single-product .bamby-upsell-carousel__arrow:disabled {
	cursor: default;
	opacity: 0.3;
}

@media (min-width: 768px) {
	body.bamby-stone-slab-product div.product .woocommerce-tabs {
		align-items: start;
		column-gap: 48px;
		display: grid;
		grid-template-columns: minmax(0, 1.9fr) minmax(280px, 1fr);
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs {
		display: none;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description,
	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-additional_information {
		display: block !important;
		margin: 0;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description {
		grid-column: 1;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description::before {
		background: #111;
		color: #fff;
		content: "Description";
		display: block;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.3;
		margin: 0 0 24px;
		padding: 10px 24px;
		width: max-content;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-additional_information {
		grid-column: 2;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-additional_information > h2 {
		display: block !important;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 24px;
		font-weight: 400;
		line-height: 1.25;
		margin: 0 0 18px;
		text-transform: none;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes {
		border-collapse: collapse;
		margin: 0;
		width: 100%;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes tr:nth-child(even) {
		background: #f7f7f7;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes th,
	body.bamby-stone-slab-product table.woocommerce-product-attributes td {
		border: 0;
		border-bottom: 1px solid #ececec;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 13px;
		line-height: 1.4;
		padding: 9px 10px;
		text-align: left;
		vertical-align: top;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes th {
		font-weight: 600;
		width: 48%;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes td {
		color: #666;
		font-style: italic;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes td p {
		margin: 0;
		padding: 0;
	}
}

@media (max-width: 767px) {
	body.single-product div.product .up-sells.upsells.products {
		margin-top: 34px;
	}

	body.single-product .up-sells.upsells.products > h2 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	body.single-product .bamby-upsell-carousel ul.products {
		gap: 10px;
	}

	body.single-product .bamby-upsell-carousel ul.products li.product {
		flex-basis: calc((100% - 30px) / 4) !important;
		max-width: calc((100% - 30px) / 4) !important;
	}

	body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
		font-size: 9px;
		line-height: 1.3;
		min-height: 25px;
	}

	body.single-product .bamby-upsell-carousel ul.products li.product .price {
		font-size: 8.5px;
	}

	body.single-product .bamby-upsell-carousel__arrow {
		height: 30px;
		top: 36%;
		width: 30px;
	}

	body.single-product .bamby-upsell-carousel__arrow--previous {
		left: -15px;
	}

	body.single-product .bamby-upsell-carousel__arrow--next {
		right: -15px;
	}
}



/* The Description section begins after this gallery-bound product-top container. */
body.single-product div.product.is-bamby-structured {
	display: block;
}

body.single-product .bamby-product-top {
	column-gap: 5.5%;
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 1.904fr);
	position: relative;
	width: 100%;
}

body.single-product .bamby-product-top > .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 1;
}

body.single-product .bamby-product-top > .summary {
	grid-column: 2;
	grid-row: 1;
}

body.single-product .bamby-product-top > .onsale {
	align-self: start;
	grid-column: 1;
	grid-row: 1;
	inset: auto;
	justify-self: start;
	margin: 12px 0 0 12px;
	position: relative;
	z-index: 20;
}

body.single-product div.product.is-bamby-structured > .woocommerce-tabs,
body.single-product div.product.is-bamby-structured > .up-sells.upsells.products {
	display: block;
	width: 100%;
}

@media (max-width: 767px) {
	body.single-product .bamby-product-top {
		column-gap: 0;
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product .bamby-product-top > .summary {
		display: contents;
	}

	body.single-product .bamby-product-top > .onsale {
		grid-column: 1;
		grid-row: 4;
		margin: 45px 0 0 12px;
	}
}



/* Keep the Stone Slabs information panels side by side after structural wrapping. */
@media (min-width: 768px) {
	body.bamby-stone-slab-product div.product.is-bamby-structured > .woocommerce-tabs {
		display: grid;
	}
}



/* Keep product attributes compact instead of inheriting Description paragraph spacing. */
@media (min-width: 768px) {
	body.bamby-stone-slab-product div.product .woocommerce-tabs table.woocommerce-product-attributes th,
	body.bamby-stone-slab-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		line-height: 1.3;
		padding: 7px 9px;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs table.woocommerce-product-attributes td p {
		line-height: inherit;
		margin: 0 !important;
		padding: 0 !important;
	}
}



/* The desktop long description is self-explanatory; keep the label only in mobile tabs. */
@media (min-width: 768px) {
	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description::before {
		display: none;
	}
}



/* Clear two-option switch for Description and Additional info on mobile. */
@media (max-width: 767px) {
	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs {
		background: #f3f3f3;
		border: 1px solid #dedede;
		border-radius: 10px;
		display: grid;
		gap: 4px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		margin: 0 0 22px;
		overflow: hidden;
		padding: 4px;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li {
		background: transparent;
		border: 0;
		border-radius: 7px;
		display: block;
		margin: 0;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li a {
		align-items: center;
		color: #333;
		display: flex;
		font-size: 12px;
		justify-content: center;
		line-height: 1.25;
		min-height: 42px;
		padding: 7px 8px;
		text-align: center;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li.active {
		background: #111;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li.active a {
		color: #fff;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li:not(.active):hover,
	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li:not(.active):focus-within {
		background: #e7e7e7;
	}
}



/* Keep recommendation prices exactly 10px below their product names. */
body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
	margin: 0 !important;
	min-height: 0;
	padding-bottom: 0;
}

body.single-product .bamby-upsell-carousel ul.products li.product .price {
	display: block;
	margin: 10px 0 0 !important;
}

/* Product detail refinement: mobile hierarchy, information width, and conversion sections - 2026-08-15. */
@media (max-width: 767px) {
	body.single-product .bamby-product-top {
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product .bamby-product-top > .summary {
		display: contents;
	}

	body.single-product .summary .product_title {
		grid-column: 1;
		grid-row: 1;
	}

	body.single-product .summary .woocommerce-breadcrumb {
		grid-column: 1;
		grid-row: 2;
	}

	body.single-product .bamby-product-top > .woocommerce-product-gallery {
		grid-column: 1;
		grid-row: 3;
		margin-top: 30px;
	}

	body.single-product .bamby-product-top > .onsale {
		grid-column: 1;
		grid-row: 3;
		margin: 42px 0 0 12px;
	}

	body.single-product .summary .woocommerce-product-details__short-description {
		box-sizing: border-box;
		grid-column: 1;
		grid-row: 4;
		margin: 20px auto 0 !important;
		max-width: 620px;
		padding: 0 4px;
		text-align: center !important;
		width: 100%;
	}

	body.single-product .summary .woocommerce-product-details__short-description p {
		margin: 0;
		text-align: center !important;
	}

	body.single-product .summary p.price {
		grid-column: 1;
		grid-row: 5;
		margin-top: 24px;
	}

	body.single-product .summary form.cart {
		grid-column: 1;
		grid-row: 6;
	}

	body.single-product .summary p.stock {
		grid-column: 1;
		grid-row: 7;
	}

	body.single-product .summary .product_meta {
		grid-column: 1;
		grid-row: 8;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs {
		box-sizing: border-box;
		width: 100% !important;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs {
		align-items: stretch;
		box-sizing: border-box;
		gap: 4px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 4px !important;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li,
	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li a {
		box-sizing: border-box;
		height: 100%;
		margin: 0 !important;
		width: 100%;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li::before,
	body.bamby-stone-slab-product div.product .woocommerce-tabs ul.tabs li::after {
		display: none !important;
	}

	body.bamby-stone-slab-product div.product .woocommerce-tabs .woocommerce-Tabs-panel,
	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-additional_information,
	body.bamby-stone-slab-product div.product .woocommerce-tabs #tab-description {
		box-sizing: border-box;
		max-width: none !important;
		width: 100% !important;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes {
		border-collapse: collapse;
		display: table !important;
		table-layout: fixed;
		width: 100% !important;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes tbody {
		display: table-row-group !important;
		width: 100%;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes tr {
		display: table-row !important;
		width: 100%;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes th,
	body.bamby-stone-slab-product table.woocommerce-product-attributes td {
		background: transparent;
		border: 0;
		border-bottom: 1px solid #e7e7e7;
		box-sizing: border-box;
		display: table-cell !important;
		font-size: 12px;
		line-height: 1.4;
		max-width: none !important;
		overflow-wrap: anywhere;
		padding: 10px 12px !important;
		text-align: left;
		vertical-align: top;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes th {
		font-weight: 600;
		width: 40% !important;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes td {
		color: #666;
		font-style: normal;
		width: 60% !important;
	}

	body.bamby-stone-slab-product table.woocommerce-product-attributes td p {
		line-height: inherit;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.bamby-stone-slab-product .bamby-material-notes {
		box-sizing: border-box;
		width: 100%;
	}
}

/* Keep recommendation prices close to their names on every screen. */
body.single-product .bamby-upsell-carousel ul.products li.product .price {
	margin: 4px 0 0 !important;
}

/* Calculator and project journey, inserted between product information and recommendations. */
body.single-product .bamby-product-estimator,
body.single-product .bamby-project-journey {
	box-sizing: border-box;
	clear: both;
	grid-column: 1 / -1;
	margin: 56px 0 0;
	width: 100%;
}

body.single-product .bamby-product-estimator {
	background: #f7f7f7;
	border: 1px solid #e4e4e4;
	border-radius: 16px;
	padding: clamp(24px, 4vw, 52px);
}

body.single-product .bamby-product-estimator__intro,
body.single-product .bamby-project-journey__intro {
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
}

body.single-product .bamby-product-estimator h2,
body.single-product .bamby-project-journey h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(25px, 3vw, 38px);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 18px;
	text-transform: none;
}

body.single-product .bamby-estimator-steps {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 24px 0;
	padding: 0;
}

body.single-product .bamby-estimator-steps li {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.45;
	padding: 16px;
}

body.single-product .bamby-estimator-details {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 auto 26px;
	max-width: 920px;
	text-align: left;
}

body.single-product .bamby-estimator-details details {
	background: #fff;
	border: 1px solid #dedede;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 0 16px;
}

body.single-product .bamby-estimator-details summary {
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	padding: 15px 24px 15px 0;
	position: relative;
}

body.single-product .bamby-estimator-details summary::after {
	content: "+";
	font-size: 20px;
	font-weight: 400;
	position: absolute;
	right: 0;
	top: 10px;
}

body.single-product .bamby-estimator-details details[open] summary::after {
	content: "−";
}

body.single-product .bamby-estimator-details ul {
	font-size: 13px;
	line-height: 1.55;
	margin: 0 0 16px;
	padding-left: 20px;
}

body.single-product .bamby-estimator-guide {
	margin: 0 auto 28px;
	max-width: 620px;
}

body.single-product .bamby-estimator-guide iframe {
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 12px;
	display: block;
	height: auto;
	width: 100%;
}

body.single-product .bamby-product-estimator__tool {
	background: #fff;
	border-radius: 12px;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
}

body.single-product .bamby-product-estimator__tool iframe {
	border: 0;
	display: block;
	min-height: 760px;
	width: 100%;
}

body.single-product .bamby-project-journey {
	background: #111;
	border-radius: 16px;
	color: #fff;
	padding: clamp(26px, 4vw, 52px);
}

body.single-product .bamby-project-journey__intro p {
	color: #fff;
	font-size: 15px;
	line-height: 1.6;
	margin: 0 auto;
	max-width: 760px;
}

body.single-product .bamby-project-journey__steps {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 30px;
}

body.single-product .bamby-project-journey__steps article {
	background: #fff;
	border-radius: 12px;
	box-sizing: border-box;
	color: #111;
	padding: 22px;
}

body.single-product .bamby-project-journey__steps h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 10px;
	text-transform: none;
}

body.single-product .bamby-project-journey__steps p {
	color: #555;
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

@media (max-width: 767px) {
	body.single-product .bamby-product-estimator,
	body.single-product .bamby-project-journey {
		margin-top: 36px;
		padding: 22px 16px;
	}

	body.single-product .bamby-estimator-steps,
	body.single-product .bamby-estimator-details,
	body.single-product .bamby-project-journey__steps {
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product .bamby-estimator-steps {
		gap: 9px;
		margin: 18px 0;
	}

	body.single-product .bamby-estimator-steps li,
	body.single-product .bamby-project-journey__steps article {
		padding: 15px;
	}

	body.single-product .bamby-product-estimator__tool iframe {
		min-height: 620px;
	}

	body.single-product div.product .up-sells.upsells.products {
		margin-top: 38px;
	}
}

/* Keep the calculator guide compact beside the useful estimator information. */
@media (min-width: 768px) {
	body.single-product .bamby-product-estimator__intro {
		align-items: start;
		display: grid;
		gap: 22px 30px;
		grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
		max-width: none;
		text-align: left;
	}

	body.single-product .bamby-product-estimator__intro > h2 {
		grid-column: 1 / -1;
		text-align: center;
	}

	body.single-product .bamby-estimator-steps {
		grid-column: 1;
		margin: 0;
	}

	body.single-product .bamby-estimator-details {
		grid-column: 1;
		margin: 0;
		max-width: none;
		width: 100%;
	}

	body.single-product .bamby-estimator-guide {
		align-self: start;
		grid-column: 2;
		grid-row: 2 / span 2;
		margin: 0;
		max-width: 420px;
		width: 100%;
	}
}

@media (max-width: 767px) {
	body.single-product .bamby-estimator-guide {
		margin: 22px auto 26px;
		max-width: 360px;
	}
}

/* True two-column estimator layout and a more compact project journey. */
body.single-product .bamby-product-estimator__intro {
	display: block;
	max-width: none;
	text-align: center;
}

body.single-product .bamby-product-estimator__layout {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
	margin-top: 24px;
	text-align: left;
	width: 100%;
}

body.single-product .bamby-product-estimator__content {
	min-width: 0;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-steps {
	margin: 0 0 18px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details {
	margin: 0;
	max-width: none;
}

body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
	margin: 0;
	max-width: 420px;
	width: 100%;
}

body.single-product .bamby-project-journey {
	margin-top: 40px;
	padding: clamp(22px, 3vw, 36px);
}

body.single-product .bamby-project-journey h2,
body.single-product .bamby-project-journey #bamby-project-journey-title {
	color: #fff !important;
	font-size: clamp(24px, 2.5vw, 32px);
	margin-bottom: 12px;
}

body.single-product .bamby-project-journey__intro p {
	font-size: 14px;
	line-height: 1.5;
}

body.single-product .bamby-project-journey__steps {
	gap: 12px;
	margin-top: 22px;
}

body.single-product .bamby-project-journey__steps article {
	padding: 17px;
}

body.single-product .bamby-project-journey__steps h3 {
	font-size: 19px;
	margin-bottom: 7px;
}

body.single-product .bamby-project-journey__steps p {
	font-size: 13px;
	line-height: 1.45;
}

@media (max-width: 767px) {
	body.single-product .bamby-product-estimator__layout {
		display: block;
		margin-top: 18px;
	}

	body.single-product .bamby-product-estimator__content .bamby-estimator-details {
		display: grid;
	}

	body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
		margin: 22px auto 0;
		max-width: 360px;
	}

	body.single-product .bamby-project-journey {
		margin-top: 30px;
		padding: 20px 14px;
	}

	body.single-product .bamby-project-journey__steps {
		gap: 9px;
		margin-top: 18px;
	}
}

/* Compact estimator guidance without constraining the calculator workspace. */
body.single-product .bamby-product-estimator {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

body.single-product .bamby-product-estimator__intro {
	background: #f7f7f7;
	border: 1px solid #e4e4e4;
	border-radius: 14px;
	box-sizing: border-box;
	padding: clamp(18px, 2.5vw, 28px);
}

body.single-product .bamby-product-estimator__layout {
	gap: 20px;
	margin-top: 16px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-steps {
	gap: 8px;
	margin-bottom: 12px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-steps li {
	border-radius: 8px;
	font-size: 12px;
	line-height: 1.35;
	padding: 10px 11px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details {
	gap: 8px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details details {
	border-radius: 8px;
	padding: 0 12px;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details summary {
	font-size: 12px;
	padding: 10px 20px 10px 0;
}

body.single-product .bamby-product-estimator__content .bamby-estimator-details summary::after {
	font-size: 17px;
	top: 6px;
}

body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
	align-self: start;
	grid-column: auto;
	grid-row: auto;
	justify-self: end;
	margin: 0;
	max-width: 360px;
}

body.single-product .bamby-product-estimator__tool {
	background: transparent;
	border-radius: 0;
	margin-top: 24px;
	overflow: visible;
	width: 100%;
}

body.single-product .bamby-product-estimator__tool > *,
body.single-product .bamby-product-estimator__tool iframe {
	box-sizing: border-box;
	max-width: none !important;
	width: 100% !important;
}

@media (max-width: 767px) {
	body.single-product .bamby-product-estimator__intro {
		padding: 16px 12px;
	}

	body.single-product .bamby-product-estimator__layout {
		margin-top: 14px;
	}

	body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
		justify-self: center;
		margin: 16px auto 0;
		max-width: 320px;
	}

	body.single-product .bamby-product-estimator__tool {
		margin-top: 18px;
	}
}

/* Requested estimator flow: three steps, then stacked details beside the video. */
@media (min-width: 768px) {
	body.single-product .bamby-product-estimator__layout {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
		grid-template-rows: auto auto;
	}

	body.single-product .bamby-product-estimator__content {
		display: contents;
	}

	body.single-product .bamby-product-estimator__content .bamby-estimator-steps {
		grid-column: 1 / -1;
		grid-row: 1;
		margin: 0;
	}

	body.single-product .bamby-product-estimator__content .bamby-estimator-details {
		align-self: start;
		display: grid;
		gap: 8px;
		grid-column: 1;
		grid-row: 2;
		grid-template-columns: minmax(0, 1fr);
		margin: 0;
	}

	body.single-product .bamby-product-estimator__layout .bamby-estimator-guide {
		align-self: start;
		grid-column: 2 !important;
		grid-row: 2 !important;
		justify-self: stretch;
		margin: 0;
		max-width: 360px;
		width: 100%;
	}
}

@media (max-width: 767px) {
	body.single-product .bamby-product-estimator__content {
		display: block;
	}
}

/* Full-width calculator workspace with a consistent 30px viewport gutter. */
body.single-product .bamby-product-estimator__tool {
	box-sizing: border-box;
	margin-left: calc(50% - 50vw + 30px) !important;
	margin-right: calc(50% - 50vw + 30px) !important;
	max-width: none !important;
	width: calc(100vw - 60px) !important;
}

body.single-product .bamby-product-estimator__tool > *,
body.single-product .bamby-product-estimator__tool iframe {
	max-width: none !important;
	width: 100% !important;
}

@supports (width: 100dvw) {
	body.single-product .bamby-product-estimator__tool {
		margin-left: calc(50% - 50dvw + 30px) !important;
		margin-right: calc(50% - 50dvw + 30px) !important;
		width: calc(100dvw - 60px) !important;
	}
}



/* Final product audit: compact the slab material guidance without reducing readability. */
body.bamby-stone-slab-product .bamby-material-notes {
	margin-top: 18px;
}

body.bamby-stone-slab-product .bamby-material-notes h3 {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 10px;
}

body.bamby-stone-slab-product .bamby-material-notes p {
	font-size: 13px;
	line-height: 1.5 !important;
	margin: 0 !important;
	padding: 0 0 10px !important;
}

body.bamby-stone-slab-product .bamby-material-notes p:last-child {
	padding-bottom: 0 !important;
}

@media (max-width: 767px) {
	body.bamby-stone-slab-product .bamby-material-notes h3 {
		font-size: 16px;
	}

	body.bamby-stone-slab-product .bamby-material-notes p {
		font-size: 12px;
	}
}


/* Final product audit: use the same information layout for every product with attributes. */
@media (min-width: 768px) {
	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) {
		align-items: start;
		column-gap: 48px;
		display: grid !important;
		grid-template-columns: minmax(0, 1.9fr) minmax(280px, 1fr);
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs {
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-description,
	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-additional_information {
		display: block !important;
		margin: 0 !important;
		width: 100% !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-description {
		grid-column: 1;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-description::before {
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-additional_information {
		grid-column: 2;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes {
		border-collapse: collapse;
		margin: 0;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes tr:nth-child(even) {
		background: #f7f7f7;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes th,
	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		border: 0;
		border-bottom: 1px solid #ececec;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 13px;
		line-height: 1.3;
		padding: 7px 9px;
		text-align: left;
		vertical-align: top;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes th {
		font-weight: 600;
		width: 48%;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		color: #666;
		font-style: italic;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td p {
		line-height: inherit;
		margin: 0 !important;
		padding: 0 !important;
	}
}

@media (max-width: 767px) {
	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) {
		box-sizing: border-box;
		width: 100% !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs {
		align-items: stretch;
		background: #f3f3f3;
		border: 1px solid #dedede;
		border-radius: 10px;
		display: grid !important;
		gap: 4px;
		grid-auto-columns: minmax(0, 1fr);
		grid-auto-flow: column;
		margin: 0 0 22px !important;
		overflow: hidden;
		padding: 4px !important;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li {
		background: transparent;
		border: 0;
		border-radius: 7px;
		display: block;
		margin: 0 !important;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li a {
		align-items: center;
		box-sizing: border-box;
		color: #333;
		display: flex;
		font-size: 12px;
		height: 100%;
		justify-content: center;
		line-height: 1.25;
		min-height: 42px;
		padding: 7px 8px;
		text-align: center;
		width: 100%;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li.active {
		background: #111;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li.active a {
		color: #fff;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li::before,
	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li::after {
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) .woocommerce-Tabs-panel {
		box-sizing: border-box;
		max-width: none !important;
		width: 100% !important;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes {
		border-collapse: collapse;
		display: table !important;
		table-layout: fixed;
		width: 100% !important;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes th,
	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		background: transparent;
		border: 0;
		border-bottom: 1px solid #e7e7e7;
		box-sizing: border-box;
		display: table-cell !important;
		font-size: 12px;
		line-height: 1.4;
		overflow-wrap: anywhere;
		padding: 10px 12px !important;
		text-align: left;
		vertical-align: top;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes th {
		font-weight: 600;
		width: 40% !important;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td {
		color: #666;
		font-style: normal;
		width: 60% !important;
	}

	body.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes td p {
		line-height: inherit;
		margin: 0 !important;
		padding: 0 !important;
	}
}


/* Universal product consistency: variation layout, information heading and estimator launch. */
@media (min-width: 768px) {
	body.single-product .bamby-product-top {
		align-items: start;
	}

	body.single-product .bamby-product-top > .woocommerce-product-gallery {
		align-self: start;
		height: auto !important;
		min-height: 0 !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) #tab-additional_information > h2 {
		display: block !important;
		font-family: "Open Sans", Arial, sans-serif;
		font-size: 22px;
		font-weight: 500;
		line-height: 1.3;
		margin: 0 0 18px;
		text-transform: none;
	}
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs {
	position: static !important;
}

body.single-product .summary table.variations {
	margin-bottom: 2px !important;
}

body.single-product .summary table.variations tr:last-child {
	margin-bottom: 0 !important;
}

body.single-product .summary .single_variation_wrap {
	gap: 0 !important;
	margin-top: 0 !important;
}

body.single-product .summary .woocommerce-variation-availability {
	align-self: center;
	box-sizing: border-box;
	max-width: none;
	padding-left: 0 !important;
	position: relative;
	right: 67px;
	text-align: center !important;
	width: 76px !important;
}

body.single-product .summary .woocommerce-variation-availability p.stock {
	margin: 0 !important;
	padding: 0 !important;
	text-align: center !important;
	white-space: normal;
	width: 76px !important;
}

body.single-product .bamby-product-estimator__tool .bamby-calc-wrapper {
	text-align: center;
}

body.single-product .bamby-product-estimator__tool #load_calculator {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.single-product .bamby-product-estimator__tool #load_calculator:disabled {
	cursor: wait;
	opacity: .72;
}


/* Keep every variable-product selection and purchase row visually connected. */
body.single-product .product-type-variable .summary form.variations_form {
	gap: 0 !important;
}


/* Match every variation label to its dropdown height on every product. */
body.single-product .summary table.variations th.label {
	align-items: center;
	box-sizing: border-box;
	display: flex !important;
	height: 46px;
	min-height: 46px;
}

body.single-product .summary table.variations th.label label {
	align-items: center;
	display: flex;
	height: 100%;
	line-height: 1.25;
}


/* Final mobile product stacking and tab affordance. */
@media (max-width: 767px) {
	body.single-product .bamby-product-top {
		display: grid !important;
		grid-auto-flow: row;
		isolation: isolate;
	}

	body.single-product .summary .product_title {
		grid-column: 1 !important;
		grid-row: 1 !important;
		position: relative;
		z-index: 3;
	}

	body.single-product .summary .woocommerce-breadcrumb {
		grid-column: 1 !important;
		grid-row: 2 !important;
		position: relative;
		z-index: 3;
	}

	body.single-product .bamby-product-top > .woocommerce-product-gallery {
		align-self: start;
		grid-column: 1 !important;
		grid-row: 3 !important;
		height: auto !important;
		margin-top: 30px !important;
		min-height: 0 !important;
		position: relative;
		z-index: 2;
	}

	body.single-product .summary .woocommerce-product-details__short-description {
		background: #fff;
		box-sizing: border-box;
		clear: both;
		display: block !important;
		grid-column: 1 !important;
		grid-row: 4 !important;
		margin: 18px auto 0 !important;
		max-width: 620px;
		padding: 0 4px;
		position: relative !important;
		text-align: center !important;
		width: 100%;
		z-index: 1;
	}

	body.single-product .summary .woocommerce-product-details__short-description p {
		margin: 0 !important;
		text-align: center !important;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs {
		background: #ededed;
		border-color: #cfcfcf;
		box-shadow: 0 2px 8px rgba(0, 0, 0, .09);
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li {
		background: #fff !important;
		border: 1px solid #c9c9c9 !important;
		box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li a {
		color: #222 !important;
		font-weight: 600;
		min-height: 46px;
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li.active {
		background: #111 !important;
		border-color: #111 !important;
		box-shadow: 0 2px 5px rgba(0, 0, 0, .24);
	}

	body.single-product div.product .woocommerce-tabs:has(#tab-additional_information) ul.tabs li.active a {
		color: #fff !important;
	}
}


/* Final mobile tab clearfix correction */
@media (max-width: 768px) {
	body.single-product div.product .woocommerce-tabs ul.tabs::before,
	body.single-product div.product .woocommerce-tabs ul.tabs::after {
		content: none !important;
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> #tab-title-additional_information) ul.tabs,
	body.single-product div.product .woocommerce-tabs ul.tabs:has(> #tab-title-additional_information) {
		grid-auto-flow: row !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}


/* Homepage mobile parity with live */
@media (max-width: 768px) {
	body.home .bamby-section--mobile-collections-and-services-section {
		font-size: 14px;
		line-height: 1.7;
		padding: 50px 0 0;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-row {
		padding-left: 16px;
		padding-right: 16px;
	}

	body.home .bamby-section--mobile-collections-and-services-section h2 {
		font-size: 22px !important;
		line-height: 1 !important;
		margin: 0 0 10px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section h3,
	body.home .bamby-section--mobile-collections-and-services-section h4 {
		font-size: 18px !important;
		line-height: 1 !important;
		margin: 0 !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-rich-text p {
		font-size: 14px;
		line-height: 1.7;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-rich-text:has(> h2) p {
		font-size: 13px;
		line-height: 23.8px;
		margin-bottom: 5px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media {
		margin-bottom: 30px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Slabs Collection Showroom"]) {
		margin-left: auto;
		margin-right: auto;
		width: 210px;
	}

	body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Slabs Collection Showroom"] {
		height: 210px !important;
		object-fit: cover;
		width: 210px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Project and Slab calculator"]) {
		margin-left: auto;
		margin-right: auto;
		width: 249px;
	}

	body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Project and Slab calculator"] {
		height: auto !important;
		width: 249px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Service Areas and Projects Image"]),
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Production and Installation Services"]),
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="White-Onxy-03"]) {
		margin-left: -16px;
		margin-right: -16px;
		width: calc(100% + 32px);
	}

	body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Service Areas and Projects Image"],
	body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Production and Installation Services"],
	body.home .bamby-section--mobile-collections-and-services-section img[alt="White-Onxy-03"] {
		height: auto !important;
		width: 100% !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions {
		display: flex;
		justify-content: flex-end;
		margin-left: -16px;
		margin-right: -16px;
		width: calc(100% + 32px);
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-button {
		font-size: 14px !important;
		letter-spacing: 0 !important;
		line-height: 23.8px !important;
		min-height: 36px !important;
		padding: 4.2px 14px !important;
		text-transform: none !important;
		white-space: nowrap;
		width: auto !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions--center {
		align-items: flex-end;
		flex-direction: column;
		gap: 6px;
		justify-content: flex-start;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions--center .bamby-button:first-child {
		margin-right: 10px;
	}
}


/* Homepage mobile lower-section parity */
@media (max-width: 768px) {
	body.home .bamby-section--mobile-collections-and-services-section {
		padding-bottom: 30px;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-button {
		padding-left: 11.5px !important;
		padding-right: 11.5px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:has(+ .bamby-media > img[alt="Bamby Stone Production and Installation Services"]),
	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:has(+ .bamby-media > img[alt="White-Onxy-03"]) {
		margin-bottom: 20.5px;
		margin-top: 20.5px;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Production and Installation Services"]) + .bamby-rich-text,
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="White-Onxy-03"]) + .bamby-rich-text {
		margin-left: -16px;
		text-align: center;
		width: calc(100% + 32px);
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Production and Installation Services"]) + .bamby-rich-text p,
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="White-Onxy-03"]) + .bamby-rich-text p {
		font-size: 18px;
		line-height: 23.8px;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Production and Installation Services"]) + .bamby-rich-text + .bamby-rich-text,
	body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="White-Onxy-03"]) + .bamby-rich-text + .bamby-rich-text {
		margin-left: auto;
		margin-right: auto;
		max-width: 256px;
		text-align: center;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text {
		margin-bottom: 30px;
		margin-left: -16px;
		text-align: center;
		width: calc(100% + 32px);
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text p {
		font-size: 18px;
		line-height: 23.8px;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text + .bamby-rich-text {
		margin-left: auto;
		margin-right: auto;
		max-width: 256px;
		text-align: center;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text + .bamby-rich-text + .bamby-actions {
		margin-top: 30px;
	}
}


/* Homepage mobile final vertical alignment */
@media (max-width: 768px) {
	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type {
		margin-bottom: 54px;
	}
}


/* BAMBY CART COLLATERALS AND BUTTON CONTRAST - 2026-08-15 */
.page-id-987508413 .cart-collaterals {
	clear: both;
	margin-top: 30px;
}

.page-id-987508413 .cart-collaterals .cross-sells,
.page-id-987508413 .cart-collaterals .cart_totals {
	box-sizing: border-box;
	float: none !important;
	margin: 0 !important;
	min-width: 0;
}

.page-id-987508413 .cart-collaterals .cross-sells > h2,
.page-id-987508413 .cart-collaterals .cart_totals > h2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 20px;
	padding: 0;
	text-align: left;
}

.page-id-987508413 .woocommerce-cart-form button.button,
.page-id-987508413 .woocommerce-message a.button,
.page-id-987508413 .return-to-shop a.button,
.page-id-987508413 .wc-proceed-to-checkout a.checkout-button {
	align-items: center;
	background: #000 !important;
	border: 1px solid #000 !important;
	border-radius: 10px !important;
	color: #fff !important;
	display: inline-flex;
	justify-content: center;
	opacity: 1;
	text-decoration: none;
}

.page-id-987508413 .woocommerce-cart-form button.button:hover,
.page-id-987508413 .woocommerce-cart-form button.button:focus-visible,
.page-id-987508413 .woocommerce-message a.button:hover,
.page-id-987508413 .woocommerce-message a.button:focus-visible,
.page-id-987508413 .return-to-shop a.button:hover,
.page-id-987508413 .return-to-shop a.button:focus-visible,
.page-id-987508413 .wc-proceed-to-checkout a.checkout-button:hover,
.page-id-987508413 .wc-proceed-to-checkout a.checkout-button:focus-visible {
	background: #765435 !important;
	border-color: #765435 !important;
	color: #fff !important;
}

.page-id-987508413 .woocommerce-cart-form button[name="update_cart"]:disabled,
.page-id-987508413 .woocommerce-cart-form button[name="update_cart"][disabled] {
	background: #f1f1f1 !important;
	border-color: #c8c8c8 !important;
	color: #4f4f4f !important;
	cursor: not-allowed;
	opacity: 1 !important;
}

.page-id-987508413 .wc-proceed-to-checkout a.checkout-button {
	display: flex;
	min-height: 48px;
}

@media (min-width: 769px) {
	.page-id-987508413 .cart-collaterals {
		align-items: start;
		display: grid !important;
		gap: 40px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.page-id-987508413 .cart-collaterals .cross-sells,
	.page-id-987508413 .cart-collaterals .cart_totals {
		clear: none !important;
		width: auto !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 768px) {
	.page-id-987508413 .cart-collaterals {
		display: flex !important;
		flex-direction: column;
		gap: 30px;
	}

	.page-id-987508413 .cart-collaterals .cross-sells,
	.page-id-987508413 .cart-collaterals .cart_totals {
		clear: both !important;
		width: 100% !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells > h2,
	.page-id-987508413 .cart-collaterals .cart_totals > h2 {
		font-size: 22px;
		line-height: 1.3;
	}
}


/* BAMBY CART GRID PSEUDO-ELEMENT FIX - 2026-08-15 */
.page-id-987508413 .cart-collaterals::before,
.page-id-987508413 .cart-collaterals::after {
	content: none !important;
	display: none !important;
}

body.page-id-987508413 .woocommerce .woocommerce-cart-form table.cart td.actions button.button[name="update_cart"]:disabled,
body.page-id-987508413 .woocommerce .woocommerce-cart-form table.cart td.actions button.button[name="update_cart"][disabled] {
	background: #f1f1f1 !important;
	border-color: #c8c8c8 !important;
	color: #333 !important;
	opacity: 1 !important;
}

@media (min-width: 769px) {
	.page-id-987508413 .cart-collaterals .cross-sells {
		grid-column: 1;
		grid-row: 1;
	}

	.page-id-987508413 .cart-collaterals .cart_totals {
		grid-column: 2;
		grid-row: 1;
	}
}


/* BAMBY CART TOTALS THEN HORIZONTAL RECOMMENDATIONS - 2026-08-15 */
@media (min-width: 769px) {
	.page-id-987508413 .cart-collaterals {
		display: grid !important;
		gap: 40px;
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.page-id-987508413 .cart-collaterals .cart_totals {
		grid-column: 1 !important;
		grid-row: 1 !important;
		width: 100% !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells {
		grid-column: 1 !important;
		grid-row: 2 !important;
		width: 100% !important;
	}

	.page-id-987508413 .cart-collaterals .cross-sells ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}


/* BAMBY CART HORIZONTAL RECOMMENDATION COUNT - 2026-08-15 */
@media (min-width: 769px) {
	.page-id-987508413 .cart-collaterals .cross-sells ul.products {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
	}
}


/* BAMBY CART MOBILE TOTALS BEFORE RECOMMENDATIONS - 2026-08-15 */
@media (max-width: 768px) {
	.page-id-987508413 .cart-collaterals .cart_totals {
		order: 1;
	}

	.page-id-987508413 .cart-collaterals .cross-sells {
		order: 2;
	}
}


/* BAMBY GLOBAL PRODUCT CONTROLS AND LINK CONTRAST - 2026-08-15 */

/* Keep the dark header actions readable after visit, click, focus and hover. */
.bamby-header-action.bamby-phone,
.bamby-header-action.bamby-phone:link,
.bamby-header-action.bamby-phone:visited,
.bamby-header-action.bamby-phone:hover,
.bamby-header-action.bamby-phone:focus,
.bamby-header-action.bamby-phone:active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	opacity: 1 !important;
}

/* Button-style links keep brand contrast in every interactive state. */
.woocommerce a.button,
.woocommerce a.button:link,
.woocommerce a.button:visited,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button:active,
.woocommerce button.button,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active,
.bamby-actions a,
.bamby-actions a:link,
.bamby-actions a:visited,
.bamby-actions a:hover,
.bamby-actions a:focus,
.bamby-actions a:active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	background-color: #111 !important;
	border-color: #111 !important;
	text-decoration-color: currentColor !important;
}

.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.bamby-actions a:hover,
.bamby-actions a:focus {
	background-color: #765435 !important;
	border-color: #765435 !important;
}

/* A practical cart quantity target that remains compact and touch friendly. */
.woocommerce-cart-form .quantity .qty {
	width: 104px !important;
	min-width: 104px !important;
	height: 54px !important;
	padding: 8px 16px !important;
	text-align: center !important;
}

/* Every product uses the same divider before its public SKU row. */
.single-product .summary .product_meta {
	clear: both;
	margin-top: 24px !important;
	padding-top: 14px !important;
	border-top: 1px solid #e3e3e3 !important;
}

/* The dynamic prompt replaces the separate variation label visually.
   The real label remains in the document for screen readers. */
.single-product form.variations_form table.variations,
.single-product form.variations_form table.variations tbody,
.single-product form.variations_form table.variations tr {
	display: block !important;
	width: 100% !important;
}

.single-product form.variations_form table.variations th.label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.single-product form.variations_form table.variations td.value {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 8px 12px !important;
	width: 100% !important;
	padding: 0 !important;
	text-align: center !important;
}

.single-product form.variations_form table.variations td.value > select {
	display: block !important;
	width: min(100%, 420px) !important;
	min-height: 52px !important;
	margin: 0 auto !important;
	padding: 0 42px 0 18px !important;
	text-align: center !important;
	text-align-last: center !important;
	border-radius: 10px !important;
}

.single-product form.variations_form .reset_variations {
	flex: 0 0 100% !important;
	margin: 2px auto 0 !important;
	text-align: center !important;
}

@media (max-width: 767px) {
	.woocommerce-cart-form .quantity .qty {
		width: 92px !important;
		min-width: 92px !important;
	}
	.single-product form.variations_form table.variations td.value > select {
		width: 100% !important;
		max-width: 420px !important;
	}
}


/* BAMBY GLOBAL PRODUCT CONTROLS AND LINK CONTRAST - 2026-08-15 */

/* Keep the dark header actions readable after visit, click, focus and hover. */
.bamby-header-action.bamby-phone,
.bamby-header-action.bamby-phone:link,
.bamby-header-action.bamby-phone:visited,
.bamby-header-action.bamby-phone:hover,
.bamby-header-action.bamby-phone:focus,
.bamby-header-action.bamby-phone:active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	opacity: 1 !important;
}

/* Button-style links keep brand contrast in every interactive state. */
.woocommerce a.button,
.woocommerce a.button:link,
.woocommerce a.button:visited,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button:active,
.woocommerce button.button,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active,
.bamby-actions a,
.bamby-actions a:link,
.bamby-actions a:visited,
.bamby-actions a:hover,
.bamby-actions a:focus,
.bamby-actions a:active {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	background-color: #111 !important;
	border-color: #111 !important;
	text-decoration-color: currentColor !important;
}

.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.bamby-actions a:hover,
.bamby-actions a:focus {
	background-color: #765435 !important;
	border-color: #765435 !important;
}

/* A practical cart quantity target that remains compact and touch friendly. */
.woocommerce-cart-form .quantity .qty {
	width: 104px !important;
	min-width: 104px !important;
	height: 54px !important;
	padding: 8px 16px !important;
	text-align: center !important;
}

/* Every product uses the same divider before its public SKU row. */
.single-product .summary .product_meta {
	clear: both;
	margin-top: 24px !important;
	padding-top: 14px !important;
	border-top: 1px solid #e3e3e3 !important;
}

/* The dynamic prompt replaces the separate variation label visually.
   The real label remains in the document for screen readers. */
.single-product form.variations_form table.variations,
.single-product form.variations_form table.variations tbody,
.single-product form.variations_form table.variations tr {
	display: block !important;
	width: 100% !important;
}

.single-product form.variations_form table.variations th.label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.single-product form.variations_form table.variations td.value {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 8px 12px !important;
	width: 100% !important;
	padding: 0 !important;
	text-align: center !important;
}

.single-product form.variations_form table.variations td.value > select {
	display: block !important;
	width: min(100%, 420px) !important;
	min-height: 52px !important;
	margin: 0 auto !important;
	padding: 0 42px 0 18px !important;
	text-align: center !important;
	text-align-last: center !important;
	border-radius: 10px !important;
}

.single-product form.variations_form .reset_variations {
	flex: 0 0 100% !important;
	margin: 2px auto 0 !important;
	text-align: center !important;
}

@media (max-width: 767px) {
	.woocommerce-cart-form .quantity .qty {
		width: 92px !important;
		min-width: 92px !important;
	}
	.single-product form.variations_form table.variations td.value > select {
		width: 100% !important;
		max-width: 420px !important;
	}
}


/* BAMBY CART CONTROL HEIGHT AND SPACING - 2026-08-15 */
.page-id-987508413 .woocommerce-cart-form td.actions .coupon {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px !important;
}

.page-id-987508413 .woocommerce-cart-form td.actions .coupon #coupon_code {
	flex: 1 1 180px;
	width: auto !important;
	min-width: 180px;
	height: 54px !important;
	min-height: 54px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border-radius: 10px !important;
}

.page-id-987508413 .woocommerce-cart-form td.actions button.button,
.page-id-987508413 .woocommerce-cart-form td.actions input.button,
.page-id-987508413 .wc-proceed-to-checkout .checkout-button {
	height: 54px !important;
	min-height: 54px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 10px !important;
}

@media (max-width: 600px) {
	.page-id-987508413 .woocommerce-cart-form td.actions .coupon {
		width: 100% !important;
	}
	.page-id-987508413 .woocommerce-cart-form td.actions .coupon #coupon_code,
	.page-id-987508413 .woocommerce-cart-form td.actions .coupon button {
		flex: 1 1 100% !important;
		width: 100% !important;
	}
}


/* BAMBY CHECKOUT POLISH AND RESPONSIVE ORDER REVIEW - 2026-08-15 */
body.woocommerce-checkout .bamby-section--commerce {
	padding-top: 34px !important;
	padding-bottom: 56px !important;
}

body.woocommerce-checkout .bamby-section--commerce > .bamby-row > h1 {
	margin: 0 0 16px !important;
}

body.woocommerce-checkout .bamby-section--commerce > .bamby-row > .woocommerce {
	margin-top: 0 !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle {
	margin: 0 0 14px !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 7px;
	min-height: 52px;
	margin: 0 !important;
	padding: 12px 18px !important;
	background: #111 !important;
	border: 0 !important;
	border-radius: 10px !important;
	color: #fff !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info a,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a,
body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info a:visited,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a:visited {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.woocommerce-checkout form.checkout_coupon {
	margin: 0 0 24px !important;
	padding: 20px !important;
	background: #f7f7f7;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
}

body.woocommerce-checkout form.checkout_coupon .form-row {
	margin-bottom: 0 !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first {
	width: calc(68% - 6px) !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row-last {
	width: calc(32% - 6px) !important;
}

body.woocommerce-checkout form.checkout_coupon #coupon_code,
body.woocommerce-checkout form.checkout_coupon button {
	width: 100% !important;
	height: 54px !important;
	min-height: 54px !important;
	margin: 0 !important;
	border-radius: 10px !important;
}

body.woocommerce-checkout form.checkout {
	margin-top: 28px !important;
}

body.woocommerce-checkout #order_review_heading {
	margin: 30px 0 16px !important;
}

body.woocommerce-checkout #order_review {
	display: grid !important;
	grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
	align-items: start;
	gap: 28px;
	width: 100% !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
	display: table !important;
	table-layout: fixed;
	width: 100% !important;
	margin: 0 !important;
	background: #fff;
	border: 1px solid #dedede !important;
	border-collapse: separate !important;
	border-spacing: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead,
body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody,
body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot {
	display: table-row-group !important;
	width: 100% !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead {
	display: table-header-group !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot {
	display: table-footer-group !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr {
	display: table-row !important;
	width: 100% !important;
}

body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
	display: table-cell !important;
	width: 50% !important;
	padding: 15px 16px !important;
	vertical-align: top;
	border-color: #e2e2e2 !important;
	overflow-wrap: anywhere;
}

body.woocommerce-checkout #payment {
	width: 100% !important;
	margin: 0 !important;
	padding: 22px !important;
	background: #f7f7f7 !important;
	border: 1px solid #dedede !important;
	border-radius: 14px !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

body.woocommerce-checkout #payment .place-order {
	width: 100% !important;
	margin: 18px 0 0 !important;
	padding: 18px 0 0 !important;
}

body.woocommerce-checkout #place_order {
	float: none !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	height: 54px !important;
	min-height: 54px !important;
	margin: 18px 0 0 !important;
	padding: 0 20px !important;
	background: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 10px !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus {
	background: #765435 !important;
	border-color: #765435 !important;
	color: #fff !important;
}

@media (max-width: 999px) {
	body.woocommerce-checkout #order_review {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 22px;
	}
}

@media (max-width: 600px) {
	body.woocommerce-checkout .bamby-section--commerce {
		padding-top: 26px !important;
		padding-bottom: 42px !important;
	}
	body.woocommerce-checkout form.checkout_coupon .form-row-first,
	body.woocommerce-checkout form.checkout_coupon .form-row-last {
		float: none !important;
		width: 100% !important;
		margin: 0 0 10px !important;
	}
	body.woocommerce-checkout form.checkout_coupon .form-row-last {
		margin-bottom: 0 !important;
	}
	body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th,
	body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
		padding: 12px !important;
	}
	body.woocommerce-checkout #payment {
		padding: 18px !important;
	}
}


/* BAMBY CHECKOUT LOGIN AND COUPON RHYTHM - 2026-08-15 */
body.woocommerce-checkout .woocommerce-form-login-toggle + form.woocommerce-form-login {
	margin: 0 0 12px !important;
}

body.woocommerce-checkout form.woocommerce-form-login {
	padding: 20px !important;
	background: #f7f7f7;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
}

body.woocommerce-checkout form.woocommerce-form-login[style*="display: none"] {
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 0 !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle ~ .woocommerce-form-coupon-toggle {
	margin-top: 12px !important;
}

body.woocommerce-checkout .woocommerce-form-login-toggle + form.woocommerce-form-login:not([style*="display: none"]) + .woocommerce-form-coupon-toggle {
	margin-top: 12px !important;
}


/* BAMBY TERMS READING EXPERIENCE - 2026-08-15 */
.page-id-987508508 .bamby-section--section {
	padding: 48px 0 72px !important;
}

.page-id-987508508 .bamby-section--section .bamby-row {
	width: min(100% - 40px, 900px) !important;
	max-width: 900px !important;
	margin: 0 auto !important;
}

.page-id-987508508 .bamby-section--section .bamby-column,
.page-id-987508508 .bamby-section--section .bamby-rich-text {
	width: 100% !important;
	max-width: 100% !important;
}

.page-id-987508508 .bamby-rich-text > h1 {
	margin: 0 0 14px !important;
	font-size: clamp(34px, 4vw, 48px) !important;
	line-height: 1.12 !important;
	text-align: center;
	letter-spacing: -.02em;
}

.page-id-987508508 .bamby-rich-text > h1 + p {
	width: fit-content;
	margin: 0 auto 30px !important;
	padding: 9px 14px;
	background: #f3f3f3;
	border: 1px solid #dedede;
	border-radius: 10px;
	color: #4e4e4e;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.page-id-987508508 .bamby-rich-text h2 {
	margin: 42px 0 14px !important;
	padding-top: 4px;
	font-size: clamp(22px, 2.5vw, 28px) !important;
	line-height: 1.25 !important;
	letter-spacing: -.01em;
	text-wrap: balance;
}

.page-id-987508508 .bamby-rich-text h3 {
	margin: 26px 0 10px !important;
	font-size: clamp(18px, 2vw, 21px) !important;
	line-height: 1.35 !important;
	color: #242424;
	text-wrap: balance;
}

.page-id-987508508 .bamby-rich-text p {
	max-width: 78ch;
	margin: 0 0 14px !important;
	font-size: 17px !important;
	line-height: 1.75 !important;
	color: #333;
}

.page-id-987508508 .bamby-rich-text p:has(> br) {
	margin: 12px 0 20px !important;
	padding: 14px 18px;
	background: #f7f7f7;
	border-left: 4px solid #9b754f;
	border-radius: 0 10px 10px 0;
	line-height: 2 !important;
}

.page-id-987508508 .bamby-rich-text hr {
	height: 1px;
	margin: 36px 0 0 !important;
	background: #e2e2e2;
	border: 0 !important;
}

.page-id-987508508 .bamby-rich-text a,
.page-id-987508508 .bamby-rich-text a:visited {
	color: #6f4d2e !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 600px) {
	.page-id-987508508 .bamby-section--section {
		padding: 32px 0 52px !important;
	}
	.page-id-987508508 .bamby-section--section .bamby-row {
		width: min(100% - 28px, 900px) !important;
	}
	.page-id-987508508 .bamby-rich-text > h1 {
		font-size: 32px !important;
	}
	.page-id-987508508 .bamby-rich-text h2 {
		margin-top: 34px !important;
		font-size: 22px !important;
	}
	.page-id-987508508 .bamby-rich-text h3 {
		margin-top: 22px !important;
		font-size: 18px !important;
	}
	.page-id-987508508 .bamby-rich-text p {
		font-size: 16px !important;
		line-height: 1.7 !important;
	}
}


/* BAMBY DYNAMIC VARIATION PROMPTS - CSS-SAFE GLOBAL LAYER - 2026-08-15 */
.single-product form.variations_form table.variations tr {
	position: relative !important;
}

.single-product form.variations_form table.variations tr:has(select option[value=""]:checked) th.label {
	position: absolute !important;
	z-index: 2;
	top: 0 !important;
	left: 50% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: min(100%, 420px) !important;
	height: 52px !important;
	margin: 0 !important;
	padding: 0 50px 0 18px !important;
	overflow: visible !important;
	clip: auto !important;
	white-space: nowrap !important;
	border: 0 !important;
	transform: translateX(-50%);
	pointer-events: none;
}

.single-product form.variations_form table.variations tr:has(select option[value=""]:checked) th.label label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 16px !important;
	line-height: 1.2;
	font-weight: 400;
	color: #333;
	text-align: center;
}

.single-product form.variations_form table.variations tr:has(select option[value=""]:checked) th.label label::before {
	content: "Choose ";
}

.single-product form.variations_form table.variations select:has(option[value=""]:checked) {
	color: transparent !important;
	-webkit-text-fill-color: transparent !important;
}

.single-product form.variations_form table.variations select option {
	color: #111 !important;
	-webkit-text-fill-color: #111 !important;
	text-align: left;
}

.single-product form.variations_form table.variations select option[value=""] {
	display: none;
}


/* BAMBY CORE PAGE SPACING AND CARD POLISH - 2026-08-15 */

/* Keep card actions inside their grid cells instead of crossing dividers. */
.home .bamby-section--our-products-section .bamby-grid--3 > .bamby-column,
.home .bamby-section--our-products-section .bamby-grid--5 > .bamby-column,
.page-id-987509196 .bamby-section--our-services-section-desktop .bamby-grid > .bamby-column,
.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-grid > .bamby-column {
	display: flex !important;
	flex-direction: column;
	min-height: 100%;
}

.home .bamby-section--our-products-section .bamby-grid--3 > .bamby-column > .bamby-card,
.home .bamby-section--our-products-section .bamby-grid--5 > .bamby-column > .bamby-card,
.page-id-987509196 .bamby-section--our-services-section-desktop .bamby-grid > .bamby-column > .bamby-card,
.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-grid > .bamby-column > .bamby-card {
	flex: 1 1 auto;
	height: auto !important;
	min-height: 0 !important;
}

.home .bamby-section--our-products-section .bamby-grid .bamby-actions,
.page-id-987509196 .bamby-section--our-services-section-desktop .bamby-grid .bamby-actions,
.post-type-archive-product .bamby-section--our-products-section-desktop .bamby-grid .bamby-actions {
	flex: 0 0 auto;
	margin: 12px 0 0 !important;
	padding: 0 !important;
}

/* Homepage collection artwork shows the full composition, including the red path. */
.home img[alt*="Stone Slabs Collection Showroom"] {
	border-radius: 24px !important;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .13);
	object-fit: cover;
}

/* New Arrivals uses the same dimensional product-card language. */
.home .bamby-section--featured-products-section ul.products li.product {
	padding: 12px 12px 18px !important;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 16px !important;
	box-shadow: 0 9px 24px rgba(0, 0, 0, .1);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.home .bamby-section--featured-products-section ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: 0 13px 30px rgba(0, 0, 0, .14);
}

.home .bamby-section--featured-products-section ul.products li.product img {
	border-radius: 12px !important;
}

/* Specialised Services: compact section boundaries and keep action buttons visible. */
.page-id-987509196 .bamby-section--our-services-and-fees-section {
	padding-top: 36px !important;
	padding-bottom: 30px !important;
}

.page-id-987509196 .bamby-section--our-services-section-desktop {
	padding-top: 30px !important;
	padding-bottom: 44px !important;
}

.page-id-987509196 .bamby-section--let-s-bring-it-to-life-section {
	min-height: 0 !important;
	padding-top: 44px !important;
	padding-bottom: 44px !important;
}

/* Contact page: balanced gaps and clear, compact contact cards. */
.page-id-987508340 .bamby-section--contact-form-map {
	padding-top: 42px !important;
	padding-bottom: 54px !important;
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row + .bamby-row {
	margin-top: 32px !important;
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(2) > .bamby-column {
	padding: 20px 22px !important;
	background: #f7f7f7;
	border: 1px solid #e1e1e1;
	border-radius: 14px;
	box-shadow: 0 7px 20px rgba(0, 0, 0, .06);
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(3) {
	padding: 28px !important;
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

.page-id-987508340 .bamby-section--contact-form-map input:not([type="submit"]),
.page-id-987508340 .bamby-section--contact-form-map select,
.page-id-987508340 .bamby-section--contact-form-map textarea {
	min-height: 52px;
	background: #f7f7f7 !important;
	border: 1px solid #d8d8d8 !important;
	border-radius: 10px !important;
}

.page-id-987508340 .bamby-section--contact-form-map input:focus,
.page-id-987508340 .bamby-section--contact-form-map select:focus,
.page-id-987508340 .bamby-section--contact-form-map textarea:focus {
	outline: 3px solid rgba(155, 117, 79, .25);
	outline-offset: 1px;
	border-color: #9b754f !important;
}

.page-id-987508340 .bamby-honeypot,
.page-id-987508340 .bamby-honeypot-field,
.page-id-987508340 [aria-hidden="true"].bamby-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	border: 0 !important;
}

/* Logged-out account and registration consistency. */
body.woocommerce-account:not(.logged-in) .woocommerce > h2:first-of-type {
	display: none !important;
}

.page-id-987510124 .ur-submit-button,
.page-id-987510124 button.ur-submit-button,
.page-id-987510124 input.ur-submit-button {
	min-height: 50px !important;
	padding: 0 24px !important;
	background: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 10px !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

.page-id-987510124 .ur-submit-button:hover,
.page-id-987510124 .ur-submit-button:focus {
	background: #765435 !important;
	border-color: #765435 !important;
	color: #fff !important;
}

@media (max-width: 767px) {
	.home .bamby-section--featured-products-section ul.products li.product {
		padding: 9px 9px 14px !important;
	}
	.page-id-987508340 .bamby-section--contact-form-map {
		padding-top: 30px !important;
		padding-bottom: 42px !important;
	}
	.page-id-987508340 .bamby-section--contact-form-map > .bamby-row + .bamby-row {
		margin-top: 24px !important;
	}
	.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(3) {
		padding: 20px 16px !important;
	}
}


/* BAMBY BLOG ARCHIVE AND ARTICLE READING SYSTEM - 2026-08-15 */

/* Archive heading and responsive card grid. */
.blog main.bamby-blog-index {
	width: min(100% - 48px, 1180px) !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
	padding: 54px 0 72px !important;
}

.blog .bamby-blog-archive-title {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 34px !important;
	padding: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	white-space: normal !important;
	border: 0 !important;
	font-size: clamp(34px, 4vw, 50px) !important;
	line-height: 1.12 !important;
	text-align: center;
	letter-spacing: -.02em;
}

.blog .bamby-blog-column {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.blog .bamby-blog-card {
	display: flex !important;
	flex-direction: column;
	min-width: 0;
	margin: 0 !important;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 16px;
	box-shadow: 0 9px 24px rgba(0, 0, 0, .09);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.blog .bamby-blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 13px 30px rgba(0, 0, 0, .13);
}

.blog .bamby-blog-card__image {
	display: block;
	width: 100%;
	margin: 0 !important;
	overflow: hidden;
}

.blog .bamby-blog-card__image img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 10 !important;
	margin: 0 !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	transition: transform .25s ease;
}

.blog .bamby-blog-card:hover .bamby-blog-card__image img {
	transform: scale(1.025);
}

.blog .bamby-blog-card__title {
	margin: 17px 18px 8px !important;
	font-size: 23px !important;
	line-height: 1.25 !important;
	text-wrap: balance;
}

.blog .bamby-blog-card__meta {
	margin: 0 18px 10px !important;
	color: #666;
	font-size: 14px;
}

.blog .bamby-blog-card__excerpt {
	display: -webkit-box;
	flex: 1 1 auto;
	margin: 0 !important;
	padding: 0 18px 20px !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	font-size: 16px;
	line-height: 1.65;
}

/* Single articles use one calm reading column and a restrained feature image. */
.single-post main.site-main {
	width: min(100% - 48px, 1080px) !important;
	max-width: 1080px !important;
	margin: 0 auto !important;
	padding: 48px 0 76px !important;
}

.single-post article {
	width: 100% !important;
	margin: 0 !important;
}

.single-post .post-image,
.single-post .featured-image,
.single-post .inside-article > .post-image {
	width: min(100%, 1000px) !important;
	margin: 0 auto 30px !important;
}

.single-post .post-image img,
.single-post .featured-image img,
.single-post .inside-article > .post-image img {
	display: block;
	width: 100% !important;
	max-height: 560px !important;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 18px !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.single-post .entry-header {
	width: min(100%, 900px) !important;
	margin: 0 auto 34px !important;
	text-align: center;
}

.single-post .entry-title {
	margin: 0 0 12px !important;
	font-size: clamp(34px, 5vw, 56px) !important;
	line-height: 1.1 !important;
	letter-spacing: -.025em;
	text-wrap: balance;
}

.single-post .entry-meta {
	color: #666;
	font-size: 14px;
}

.single-post .entry-content {
	width: min(100%, 800px) !important;
	max-width: 800px !important;
	margin: 0 auto !important;
	font-size: 17px;
	line-height: 1.78;
}

.single-post .entry-content > h1:first-of-type {
	display: none !important;
}

.single-post .entry-content p:empty {
	display: none !important;
}

.single-post .entry-content p {
	margin: 0 0 18px !important;
}

.single-post .entry-content h2 {
	margin: 42px 0 15px !important;
	font-size: clamp(28px, 3.2vw, 36px) !important;
	line-height: 1.22 !important;
	text-wrap: balance;
}

.single-post .entry-content h3 {
	margin: 30px 0 12px !important;
	font-size: clamp(22px, 2.6vw, 27px) !important;
	line-height: 1.3 !important;
	text-wrap: balance;
}

.single-post .entry-content h4 {
	margin: 24px 0 10px !important;
	font-size: 20px !important;
	line-height: 1.35 !important;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
	margin: 0 0 22px 22px !important;
	padding-left: 18px !important;
}

.single-post .entry-content li {
	margin-bottom: 8px;
}

.single-post .entry-content img,
.single-post .entry-content iframe,
.single-post .entry-content video {
	max-width: 100% !important;
	border-radius: 14px;
}

.single-post .entry-content hr {
	margin: 38px 0 !important;
	border: 0;
	border-top: 1px solid #e1e1e1;
}

.single-post .entry-content table {
	display: table;
	width: 100% !important;
	margin: 24px 0 !important;
	font-size: 15px;
	border-collapse: collapse;
}

.single-post .entry-content th,
.single-post .entry-content td {
	padding: 12px !important;
	border: 1px solid #dedede !important;
	text-align: left;
	vertical-align: top;
}

.single-post .entry-footer,
.single-post .post-navigation {
	width: min(100%, 800px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (max-width: 1024px) {
	.blog .bamby-blog-column {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.blog main.bamby-blog-index,
	.single-post main.site-main {
		width: min(100% - 28px, 1180px) !important;
		padding-top: 34px !important;
		padding-bottom: 52px !important;
	}
	.blog .bamby-blog-column {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}
	.blog .bamby-blog-archive-title {
		margin-bottom: 26px !important;
		font-size: 34px !important;
	}
	.single-post .post-image img,
	.single-post .featured-image img,
	.single-post .inside-article > .post-image img {
		max-height: 340px !important;
		border-radius: 14px !important;
	}
	.single-post .entry-title {
		font-size: 34px !important;
	}
	.single-post .entry-content {
		font-size: 16px;
		line-height: 1.72;
	}
	.single-post .entry-content h2 {
		margin-top: 34px !important;
		font-size: 28px !important;
	}
}


/* BAMBY CONTACT ROW TARGET CORRECTION - 2026-08-15 */
.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(3) {
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(3) > .bamby-column {
	padding: 20px 22px !important;
	background: #f7f7f7;
	border: 1px solid #e1e1e1;
	border-radius: 14px;
	box-shadow: 0 7px 20px rgba(0, 0, 0, .06);
}

.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(4) {
	padding: 28px !important;
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

@media (max-width: 767px) {
	.page-id-987508340 .bamby-section--contact-form-map > .bamby-row:nth-of-type(4) {
		padding: 20px 16px !important;
	}
}


/* BAMBY CART DISABLED ACTION CONTRAST FINAL - 2026-08-15 */
body.page-id-987508413 .woocommerce-cart-form button[name="update_cart"]:disabled,
body.page-id-987508413 .woocommerce-cart-form button[name="update_cart"][disabled] {
	background: #f1f1f1 !important;
	border-color: #c8c8c8 !important;
	color: #4f4f4f !important;
	-webkit-text-fill-color: #4f4f4f !important;
	opacity: 1 !important;
}


/* =====================================================================
   BAMBY CHECKOUT LOGIN/COUPON NOTICE COMPACT FIX - 2026-08-15
   ===================================================================== */
body.woocommerce-checkout .user-registration-form-login-toggle {
  margin: 0 0 12px !important;
}
body.woocommerce-checkout .user-registration-form-login-toggle .woocommerce-info {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 7px;
  width: 100%;
  height: auto !important;
  min-height: 52px;
  margin: 0 !important;
  padding: 12px 18px !important;
  background: #111 !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #fff !important;
}
body.woocommerce-checkout .user-registration-form-login-toggle .woocommerce-info a,
body.woocommerce-checkout .user-registration-form-login-toggle .woocommerce-info a:visited {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.woocommerce-checkout .user-registration-form-login-toggle + #user-registration:has(form.user-registration-form-login[style*="display: none"]) {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  height: auto !important;
  line-height: 1.35 !important;
}

/* =====================================================================
   BAMBY GLOBAL CONTENT START + CATEGORY INTRO SYSTEM - 2026-08-15
   ===================================================================== */
.tax-product_cat .site-main {
  padding-top: 36px !important;
}
.tax-product_cat .woocommerce-products-header {
  max-width: 940px;
  margin: 0 auto 28px !important;
  text-align: center;
}
.tax-product_cat .woocommerce-products-header__title {
  margin: 0 0 10px !important;
}
.tax-product_cat .term-description {
  max-width: 860px;
  margin: 0 auto !important;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.65;
}
.tax-product_cat .term-description p {
  margin: 0 !important;
}

/* =====================================================================
   BAMBY MY ACCOUNT ARRIVALS + LOGIN POLISH - 2026-08-15
   ===================================================================== */
.bamby-section--account > .bamby-row {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.bamby-section--account .ur-form-title {
  display: none !important;
}
.bamby-section--account h1 {
  margin-bottom: 24px !important;
}
.bamby-section--account-arrivals {
  padding-top: 30px !important;
  padding-bottom: 34px !important;
}
.bamby-section--account-arrivals h2 {
  margin: 0 0 18px !important;
}
.bamby-section--account-arrivals .woocommerce.columns-6 {
  position: relative;
}
.bamby-arrivals-nav button {
  display: none;
}

/* =====================================================================
   BAMBY BERROCKET MOBILE FILTER GRID - 2026-08-15
   ===================================================================== */
@media (max-width: 767px) {
  body:not(.home):not(.single-product) #page {
    padding-top: 108px !important;
  }
  .tax-product_cat .site-main {
    padding-top: 24px !important;
    padding-bottom: 34px !important;
  }
  .tax-product_cat .woocommerce-products-header {
    margin-bottom: 20px !important;
    padding-inline: 14px;
  }
  .tax-product_cat .woocommerce-products-header__title {
    margin-bottom: 8px !important;
  }
  .tax-product_cat .term-description {
    font-size: 14px;
    line-height: 1.55;
  }
  .bamby-section--account {
    padding-top: 22px !important;
    padding-bottom: 24px !important;
  }
  .bamby-section--account h1 {
    margin-bottom: 20px !important;
  }
  .bamby-section--account-arrivals {
    padding-top: 24px !important;
    padding-bottom: 28px !important;
  }
  .bamby-section--account-arrivals h2 {
    margin-bottom: 14px !important;
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.15;
  }
  .bamby-section--account-arrivals .woocommerce.columns-6 {
    overflow: visible;
  }
  .bamby-section--account-arrivals ul.products.columns-6 {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px !important;
    width: 100%;
    margin: 0 !important;
    padding: 3px 2px 14px !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
  }
  .bamby-section--account-arrivals ul.products.columns-6::-webkit-scrollbar {
    display: none;
  }
  .bamby-section--account-arrivals ul.products.columns-6 li.product {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 0 8px !important;
    scroll-snap-align: start;
  }
  .bamby-section--account-arrivals ul.products.columns-6 li.product img {
    display: block;
    width: 100% !important;
    aspect-ratio: 1;
    margin: 0 0 9px !important;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 7px 16px rgba(17,17,17,.12);
  }
  .bamby-section--account-arrivals ul.products.columns-6 .onsale {
    top: 8px !important;
    right: auto !important;
    left: 8px !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    font-size: 11px !important;
    line-height: 42px !important;
  }
  .bamby-section--account-arrivals ul.products.columns-6 .woocommerce-loop-product__title {
    min-height: 0 !important;
    margin: 0 4px 5px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }
  .bamby-section--account-arrivals ul.products.columns-6 .price {
    margin: 0 4px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }
  .bamby-arrivals-nav button {
    position: absolute;
    top: 43%;
    z-index: 6;
    display: grid;
    place-items: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #111;
    box-shadow: 0 5px 18px rgba(17,17,17,.16);
    transform: translateY(-50%);
  }
  .bamby-arrivals-nav .bamby-arrivals-prev { left: -10px; }
  .bamby-arrivals-nav .bamby-arrivals-next { right: -10px; }
  .bamby-arrivals-nav button:disabled {
    opacity: .36;
    cursor: default;
  }

  .bamby-shop-filters .berocket_ajax_filters_toggle {
    width: 100%;
    min-height: 42px;
    margin-bottom: 12px;
    border-radius: 8px;
    text-align: center;
  }
  .bamby-shop-filters .berocket_element_above_products_is_hide:not([style*="display: none"]) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px 12px;
    width: 100%;
  }
  .bamby-shop-filters .berocket_element_above_products_is_hide > .berocket_inline_filters {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .bamby-shop-filters .berocket_element_above_products_is_hide > .berocket_inline_filters:nth-child(1),
  .bamby-shop-filters .berocket_element_above_products_is_hide > .berocket_inline_filters:nth-child(2),
  .bamby-shop-filters .berocket_element_above_products_is_hide > .berocket_inline_filters:last-child {
    grid-column: 1 / -1;
  }
  .bamby-shop-filters .bapf_head h3 {
    margin: 0 0 7px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }
  .bamby-shop-filters .bapf_sfilter:not(.bapf_stylecolor) li {
    display: flex;
    align-items: flex-start;
    min-width: 0;
    margin-bottom: 4px !important;
    font-size: 12px;
    line-height: 1.25;
  }
  .bamby-shop-filters .bapf_sfilter:not(.bapf_stylecolor) li label {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .bamby-shop-filters .bapf_sfilter .roundpcs {
    flex: 0 0 auto;
    margin-left: 2px;
  }
  .bamby-shop-filters .bapf_stylecolor ul {
    display: flex !important;
    flex-wrap: wrap;
    gap: 7px !important;
  }
  .bamby-shop-filters .bapf_stylecolor li {
    margin: 0 !important;
  }
  .bamby-shop-filters .bapf_button {
    width: 100% !important;
    min-height: 44px;
    border-radius: 8px !important;
  }
  body.woocommerce-checkout .user-registration-form-login-toggle .woocommerce-info,
  body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    padding: 13px 16px !important;
  }
}

/* Loaded calculator is independent from the two-choice launcher layout. */
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  .bamby-estimator-actions__calculator,
body.single-product .bamby-estimator-actions
  .bamby-calc-wrapper.has-calculator-loaded {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  > .bamby-estimator-actions__or,
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  > .bamby-estimator-actions__plans {
  display: none !important;
}

body.single-product .bamby-calc-wrapper.has-calculator-loaded > * {
  width: 100% !important;
  max-width: none !important;
}


/* Normalize the first visible section on the shared Collections & Creations archive. */
body.post-type-archive-product main.site-main {
  padding-top: 0 !important;
}

body.post-type-archive-product .woocommerce-products-header {
  padding-top: 0 !important;
}

body.post-type-archive-product .bamby-section--our-products-section-desktop {
  padding-top: 30px !important;
}

@media (max-width: 767px) {
  body.post-type-archive-product .bamby-section--our-products-section-mobile {
    padding-top: 8px !important;
  }
}



/* Preserve the calculator frame while keeping the two launch actions compact. */
body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: start;
  width: 100% !important;
  max-width: none;
}

body.single-product .bamby-estimator-actions__calculator {
  display: block;
  grid-column: 1 / -1;
  grid-row: 1 / span 2;
  width: 100% !important;
  min-width: 0;
}

body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  width: 100% !important;
  min-width: 0;
}

body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
}

body.single-product .bamby-estimator-actions__or {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
}

body.single-product .bamby-estimator-actions__plans {
  position: relative;
  z-index: 2;
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
}

body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"],
body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color: red"] {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  max-width: none;
}

@media (min-width: 768px) {
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"],
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color: red"] {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions,
  body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    gap: 4px;
  }

  body.single-product .bamby-estimator-actions__calculator {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
  }

  body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
    display: grid !important;
  }

  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"],
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color: red"] {
    display: block !important;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin: 8px 0 0 !important;
    padding: 0 6px;
    text-align: center;
  }
}




/* BAMBY CATEGORY DESCRIPTION VISIBILITY + MOBILE GAP FINAL - 2026-08-15 */
.tax-product_cat .term-description {
  display: block !important;
}
.bamby-arrivals-nav button span {
  font-size: 29px;
  line-height: 1;
}
@media (max-width: 767px) {
  .bamby-section--account {
    padding-top: 12px !important;
  }
}


/* =====================================================================
   BAMBY INLINE MATERIAL HELP + COMPACT NOTES LINK - 2026-08-15
   ===================================================================== */
.woocommerce-product-attributes-item__label {
  overflow: visible !important;
}
.bamby-material-help {
  position: relative;
  display: inline-flex;
  margin-left: 7px;
  vertical-align: middle;
}
.bamby-material-help__button {
  display: inline-grid !important;
  place-items: center;
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #8f6a43 !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #6f4d2f !important;
  -webkit-text-fill-color: #6f4d2f !important;
  font: 700 14px/1 Arial,sans-serif !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  cursor: help;
}
.bamby-material-help__tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  width: min(310px, calc(100vw - 48px));
  padding: 11px 13px;
  border-radius: 9px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  box-shadow: 0 9px 24px rgba(17,17,17,.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.bamby-material-help:hover .bamby-material-help__tooltip,
.bamby-material-help:focus-within .bamby-material-help__tooltip,
.bamby-material-help.is-open .bamby-material-help__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bamby-material-notes.has-inline-material-help {
  margin-top: 10px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}
.bamby-material-notes.has-inline-material-help > h3,
.bamby-material-notes.has-inline-material-help > p:not(:last-child) {
  display: none !important;
}
.bamby-material-notes.has-inline-material-help > p:last-child {
  margin: 8px 0 0 !important;
}
.bamby-material-notes.has-inline-material-help > p:last-child a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .bamby-section--account {
    padding-bottom: 12px !important;
  }
  .bamby-section--account-arrivals {
    padding-top: 16px !important;
  }
  .bamby-material-help__tooltip {
    width: min(276px, calc(100vw - 70px));
    font-size: 12px;
  }
}


/* BAMBY PUBLIC SKU PRIVACY + READABLE PRODUCT TAG CHIPS - 2026-08-15 */
.single-product .product_meta .sku_wrapper {
  display: none !important;
}
.single-product .product_meta .tagged_as {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 9px !important;
  color: transparent;
  font-size: 0;
  line-height: 1;
}
.single-product .product_meta .tagged_as::before {
  content: "Related:";
  margin-right: 2px;
  color: #686868;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}
.single-product .product_meta .tagged_as a,
.single-product .product_meta .tagged_as a:visited {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  border: 1px solid #dedede;
  border-radius: 7px;
  background: #f3f3f3;
  color: #5d5d5d !important;
  -webkit-text-fill-color: #5d5d5d !important;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}
.single-product .product_meta .tagged_as a:hover,
.single-product .product_meta .tagged_as a:focus-visible {
  border-color: #8f6a43;
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
}


/* BAMBY CREATIONS & ESSENTIALS CLEAN IMAGE ARTWORK - 2026-08-15 */
.home .bamby-section--our-products-section > .bamby-row:nth-child(8) .bamby-card > img {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
}


/* BAMBY MOBILE PRODUCT TAGS SINGLE-LINE SCROLLER - 2026-08-15 */
@media (max-width: 767px) {
  .single-product .product_meta .tagged_as {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 1px 5px;
    scrollbar-width: none;
  }
  .single-product .product_meta .tagged_as::-webkit-scrollbar {
    display: none;
  }
  .single-product .product_meta .tagged_as::before,
  .single-product .product_meta .tagged_as a {
    flex: 0 0 auto;
  }
}


/* =====================================================================
   BAMBY GLOBAL UI DESIGN SYSTEM CONSISTENCY - 2026-08-15
   ===================================================================== */
body.bamby-lightweight-theme main h1 {
  color: #111 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(32px, 3.4vw, 44px) !important;
  font-weight: 500 !important;
  line-height: 1.14 !important;
  letter-spacing: -.02em;
}
body.bamby-lightweight-theme:not(.single-product) main h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.015em;
}
body.bamby-lightweight-theme:not(.single-product) main h3 {
  color: #111;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
body.bamby-lightweight-theme main p,
body.bamby-lightweight-theme main li,
body.bamby-lightweight-theme main td,
body.bamby-lightweight-theme main th {
  font-family: "Open Sans", Arial, sans-serif;
}
body.bamby-lightweight-theme main p {
  line-height: 1.65;
}

body.bamby-lightweight-theme a.bamby-button,
body.bamby-lightweight-theme main a.button,
body.bamby-lightweight-theme main button.button,
body.bamby-lightweight-theme main input.button,
body.bamby-lightweight-theme main input[type="submit"]:not(.bpls-submit),
body.bamby-lightweight-theme main button[type="submit"]:not(.bpls-submit):not(.show-password-input),
body.bamby-lightweight-theme .user-registration .ur-submit-button,
body.bamby-lightweight-theme .bapf_update {
  display: inline-flex;
  min-height: 44px !important;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  border: 1px solid #111 !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: "Open Sans", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: .04em !important;
  text-align: center;
  text-decoration: none !important;
  text-transform: none !important;
  box-shadow: none !important;
}
body.bamby-lightweight-theme a.bamby-button:hover,
body.bamby-lightweight-theme a.bamby-button:focus-visible,
body.bamby-lightweight-theme main a.button:hover,
body.bamby-lightweight-theme main a.button:focus-visible,
body.bamby-lightweight-theme main button.button:hover,
body.bamby-lightweight-theme main button.button:focus-visible,
body.bamby-lightweight-theme main input.button:hover,
body.bamby-lightweight-theme main input.button:focus-visible,
body.bamby-lightweight-theme main input[type="submit"]:not(.bpls-submit):hover,
body.bamby-lightweight-theme main input[type="submit"]:not(.bpls-submit):focus-visible,
body.bamby-lightweight-theme main button[type="submit"]:not(.bpls-submit):not(.show-password-input):hover,
body.bamby-lightweight-theme main button[type="submit"]:not(.bpls-submit):not(.show-password-input):focus-visible,
body.bamby-lightweight-theme .user-registration .ur-submit-button:hover,
body.bamby-lightweight-theme .user-registration .ur-submit-button:focus-visible,
body.bamby-lightweight-theme .bapf_update:hover,
body.bamby-lightweight-theme .bapf_update:focus-visible {
  border-color: #765435 !important;
  background: #765435 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.bamby-lightweight-theme main button:disabled,
body.bamby-lightweight-theme main input:disabled,
body.bamby-lightweight-theme main .button.disabled {
  cursor: not-allowed;
}

body.bamby-lightweight-theme main input[type="text"],
body.bamby-lightweight-theme main input[type="email"],
body.bamby-lightweight-theme main input[type="tel"],
body.bamby-lightweight-theme main input[type="password"],
body.bamby-lightweight-theme main input[type="url"],
body.bamby-lightweight-theme main input[type="number"]:not(.qty),
body.bamby-lightweight-theme main select,
body.bamby-lightweight-theme main textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
  color: #111;
  -webkit-text-fill-color: #111;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
}
body.bamby-lightweight-theme main textarea {
  min-height: 140px;
  resize: vertical;
}
body.bamby-lightweight-theme main input:focus,
body.bamby-lightweight-theme main select:focus,
body.bamby-lightweight-theme main textarea:focus {
  border-color: #765435;
  outline: 2px solid rgba(118,84,53,.18);
  outline-offset: 1px;
}
.single-product form.cart .quantity .qty,
.single-product form.cart .variations select,
.single-product form.cart .single_add_to_cart_button {
  height: 44px !important;
  min-height: 44px !important;
}
.single-product form.cart .variations select {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

body.bamby-lightweight-theme .woocommerce-message,
body.bamby-lightweight-theme .woocommerce-info,
body.bamby-lightweight-theme .woocommerce-error,
body.bamby-lightweight-theme .user-registration-message,
body.bamby-lightweight-theme .user-registration-error {
  border-radius: 10px !important;
}
body.bamby-lightweight-theme main table {
  border-color: #dedede;
}
body.bamby-lightweight-theme main th,
body.bamby-lightweight-theme main td {
  border-color: #dedede;
}

@media (max-width: 767px) {
  body.bamby-lightweight-theme main h1 {
    font-size: clamp(28px, 8vw, 34px) !important;
    line-height: 1.16 !important;
  }
  body.bamby-lightweight-theme:not(.single-product) main h2 {
    font-size: clamp(24px, 7vw, 28px);
  }
  body.bamby-lightweight-theme:not(.single-product) main h3 {
    font-size: 17px;
  }
  body.bamby-lightweight-theme main input[type="text"],
  body.bamby-lightweight-theme main input[type="email"],
  body.bamby-lightweight-theme main input[type="tel"],
  body.bamby-lightweight-theme main input[type="password"],
  body.bamby-lightweight-theme main input[type="url"],
  body.bamby-lightweight-theme main input[type="number"]:not(.qty),
  body.bamby-lightweight-theme main select {
    min-height: 46px;
  }
}


/* BAMBY PLUGIN FORM CONTROL CONSISTENCY FINAL - 2026-08-15 */
.single-product form.variations_form table.variations td.value > select {
  height: 44px !important;
  min-height: 44px !important;
  padding: 8px 42px 8px 18px !important;
}
.user-registration .ur-field-item input[type="text"],
.user-registration .ur-field-item input[type="email"],
.user-registration .ur-field-item input[type="tel"],
.user-registration .ur-field-item input[type="password"],
.user-registration .ur-field-item input[type="url"],
.user-registration .ur-field-item input[type="number"],
.user-registration .ur-field-item select,
.woocommerce-account .user-registration-form-login input.input-text {
  box-sizing: border-box !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 11px 13px !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  font-size: 14px !important;
}
.page-id-987508340 main input[type="text"],
.page-id-987508340 main input[type="email"],
.page-id-987508340 main input[type="tel"],
.page-id-987508340 main input[type="url"],
body.woocommerce-checkout main .form-row input.input-text,
body.woocommerce-checkout main .form-row select {
  box-sizing: border-box !important;
  height: 48px !important;
  min-height: 48px !important;
  border-radius: 10px !important;
}


/* BAMBY DISCREET PRODUCT TAG LINKS - 2026-08-15 */
.single-product .product_meta .tagged_as {
  display: block !important;
  margin-top: 7px !important;
  padding: 0 !important;
  overflow: visible !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1.45 !important;
  white-space: normal !important;
}
.single-product .product_meta .tagged_as::before {
  content: "Related: ";
  margin: 0 4px 0 0;
  color: #8b8b8b;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0;
}
.single-product .product_meta .tagged_as a,
.single-product .product_meta .tagged_as a:visited {
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #8b8b8b !important;
  -webkit-text-fill-color: #8b8b8b !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
  box-shadow: none !important;
}
.single-product .product_meta .tagged_as a:not(:last-child)::after {
  content: "  ·  ";
  color: #b0b0b0;
  -webkit-text-fill-color: #b0b0b0;
  text-decoration: none;
}
.single-product .product_meta .tagged_as a:hover,
.single-product .product_meta .tagged_as a:focus-visible {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
}
@media (max-width: 767px) {
  .single-product .product_meta .tagged_as {
    display: block !important;
    overflow: visible !important;
    padding: 0 !important;
    white-space: normal !important;
  }
  .single-product .product_meta .tagged_as::before,
  .single-product .product_meta .tagged_as a {
    display: inline !important;
  }
}


/* =====================================================================
   BAMBY MATERIAL WARNING + OVERFLOW-SAFE MOBILE POPOVER - 2026-08-15
   ===================================================================== */
.bamby-material-help__button {
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #d49a00 !important;
  -webkit-text-fill-color: #d49a00 !important;
  font: 400 16px/1 "Apple Color Emoji", "Segoe UI Emoji", sans-serif !important;
  box-shadow: none !important;
}

.bamby-material-help__button:hover,
.bamby-material-help__button:focus-visible {
  background: transparent !important;
  color: #b88100 !important;
  -webkit-text-fill-color: #b88100 !important;
  transform: none !important;
}

.bamby-material-help__tooltip {
  position: fixed !important;
  inset: auto 24px 24px auto !important;
  z-index: 100002 !important;
  width: min(420px, calc(100vw - 48px)) !important;
  max-width: none !important;
  box-sizing: border-box !important;
  transform: translateY(8px) !important;
}

.bamby-material-help:hover .bamby-material-help__tooltip,
.bamby-material-help:focus-within .bamby-material-help__tooltip,
.bamby-material-help.is-open .bamby-material-help__tooltip {
  transform: translateY(0) !important;
}

.woocommerce-product-attributes {
  max-width: 100% !important;
}

@media (max-width: 767px) {
  .bamby-material-help__tooltip {
    inset: auto 24px 24px 24px !important;
    width: auto !important;
  }

  .bamby-material-help:hover .bamby-material-help__tooltip,
  .bamby-material-help:focus-within .bamby-material-help__tooltip,
  .bamby-material-help.is-open .bamby-material-help__tooltip {
    transform: translateY(0) !important;
  }
}

/* =====================================================================
   BAMBY HEADER LIVE SEARCH ABOVE ALL PAGE CONTENT - 2026-08-15
   ===================================================================== */
.bamby-site-header:has(.bpls-results:not([hidden])) {
  overflow: visible !important;
}

.bamby-site-header:has(.bpls-results:not([hidden])),
.bamby-site-header:has(.bpls-results:not([hidden])) .bamby-header-main,
.bamby-site-header:has(.bpls-results:not([hidden])) .bamby-header-inner--main,
.bamby-header-search,
.bamby-header-search .bpls-wrapper {
  position: relative;
  z-index: 100001 !important;
}

.bamby-header-search .bpls-results {
  z-index: 100002 !important;
}



/* BAMBY SEARCH FIXED HEADER PRESERVATION - 2026-08-15 */
.bamby-site-header:has(.bpls-results:not([hidden])) {
  position: fixed !important;
}


/* BAMBY WARNING ICON COMPACT INLINE ALIGNMENT - 2026-08-15 */
.bamby-material-help { margin-left: 3px !important; }
.bamby-material-help__button { width:18px !important; min-width:18px !important; height:18px !important; min-height:18px !important; font-size:14px !important; }
.bamby-material-help__button img.emoji { width:14px !important; height:14px !important; margin:0 !important; }


/* BAMBY COMPARISON LINK ATTACHED TO ADDITIONAL INFORMATION - 2026-08-15 */
.bamby-material-notes.has-inline-material-help { margin-top:5px !important; text-align:right !important; }
.bamby-material-notes.has-inline-material-help > p:last-child { margin:0 !important; }
.bamby-material-notes.has-inline-material-help > p:last-child a { min-height:30px !important; justify-content:flex-end; font-size:13px; }

/* BAMBY MOBILE HEADER SEARCH OVERLAY - 2026-08-15 */
.bamby-mobile-search-toggle { display:none !important; }
@media (max-width:767px) {
 .bamby-mobile-search-toggle { display:grid !important; place-items:center; position:absolute; top:42px; left:calc(50% - 72px); z-index:9; width:40px !important; min-width:40px !important; height:40px !important; min-height:40px !important; margin:0 !important; padding:8px !important; border:0 !important; border-radius:50% !important; background:transparent !important; color:#111 !important; -webkit-text-fill-color:#111 !important; box-shadow:none !important; }
 .bamby-mobile-search-toggle:hover,.bamby-mobile-search-toggle:focus-visible { background:#f3f3f3 !important; color:#111 !important; -webkit-text-fill-color:#111 !important; transform:none !important; }
 .bamby-mobile-search-toggle svg { width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; }
 .bamby-site-header.is-search-open { overflow:visible !important; }
 .bamby-site-header.is-search-open .bamby-header-search { display:block !important; position:absolute !important; top:94px; left:12px; right:12px; z-index:100003 !important; width:auto !important; max-width:none !important; margin:0 !important; }
 .bamby-site-header.is-search-open .bpls-wrapper,.bamby-site-header.is-search-open .bpls-search-shell,.bamby-site-header.is-search-open .bpls-results { width:100% !important; max-width:none !important; }
 .bamby-site-header.is-search-open .bpls-search-shell { border-radius:10px; background:#fff; box-shadow:0 10px 30px rgba(0,0,0,.2); }
 .bamby-site-header.is-search-open .bpls-input { min-height:48px !important; border-radius:10px 0 0 10px !important; font-size:16px !important; }
 .bamby-site-header.is-search-open .bpls-submit { min-height:48px !important; height:48px !important; border-radius:0 10px 10px 0 !important; }
 .bamby-site-header.is-search-open .bpls-results:not([hidden]) { top:calc(100% + 6px) !important; z-index:100004 !important; max-height:min(60vh,430px); overflow-y:auto; border-radius:10px; box-shadow:0 14px 34px rgba(0,0,0,.24); }
}


/* BAMBY ADDITIONAL INFO EXACT LINK GAP - 2026-08-15 */
.woocommerce-Tabs-panel--additional_information .woocommerce-product-attributes { margin-bottom:0 !important; }


/* BAMBY MOBILE ATTRIBUTE LABEL BALANCE - 2026-08-15 */
@media (max-width:767px) {
 .woocommerce-product-attributes th { width:46% !important; }
 .woocommerce-product-attributes td { width:54% !important; }
}


/* BAMBY WARNING ICON SINGLE-LINE FINAL - 2026-08-15 */
.bamby-material-help { margin-left:2px !important; }
.bamby-material-help__button { width:15px !important; min-width:15px !important; height:15px !important; min-height:15px !important; font-size:13px !important; }
.bamby-material-help__button img.emoji { width:13px !important; height:13px !important; }


/* =====================================================================
   BAMBY HOMEPAGE PRODUCT IMAGE TREATMENT - 2026-08-15
   ===================================================================== */
.bamby-section--featured-products-section li.product {
  overflow: visible !important;
  padding: 0 0 12px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.bamby-section--featured-products-section li.product img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
  object-fit: cover !important;
}

.bamby-section--our-products-section .bamby-media,
.bamby-section--our-products-section .bamby-media img {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.bamby-section--our-products-section .bamby-media img {
  object-fit: contain !important;
}



/* BAMBY HOMEPAGE NEW ARRIVALS IMAGE-ONLY SHADOW FINAL - 2026-08-15 */
.bamby-section--featured-products-section .woocommerce ul.products li.product { overflow:visible !important; padding:0 0 12px !important; border:0 !important; border-radius:0 !important; background:transparent !important; box-shadow:none !important; }
.bamby-section--featured-products-section .woocommerce ul.products li.product img { width:100% !important; height:auto !important; aspect-ratio:1/1; border-radius:12px !important; background:transparent !important; box-shadow:0 8px 20px rgba(0,0,0,.18) !important; object-fit:cover !important; }


/* =====================================================================
   BAMBY BLOG ARCHIVE + ARTICLE FINAL POLISH - 2026-08-15
   ===================================================================== */
.blog .bamby-blog-archive-title {
  clip-path: none !important;
}

.blog #right-sidebar,
.blog .widget-area,
.single-post #right-sidebar,
.single-post .widget-area {
  display: none !important;
}

.single-post .inside-article {
  display: flex;
  flex-direction: column;
}

.single-post .inside-article > .entry-header {
  order: 1;
  margin-bottom: 26px !important;
}

.single-post .inside-article > .featured-image,
.single-post .inside-article > .post-image {
  order: 2;
  width: min(100%, 900px) !important;
  margin: 0 auto 38px !important;
}

.single-post .inside-article > .featured-image img,
.single-post .inside-article > .post-image img {
  max-height: 440px !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single-post .inside-article > .entry-content {
  order: 3;
}

.single-post .inside-article > .entry-meta {
  order: 4;
}

@media (max-width: 640px) {
  .single-post .inside-article > .entry-header {
    margin-bottom: 20px !important;
  }

  .single-post .inside-article > .featured-image,
  .single-post .inside-article > .post-image {
    margin-bottom: 28px !important;
  }

  .single-post .inside-article > .featured-image img,
  .single-post .inside-article > .post-image img {
    max-height: 280px !important;
    border-radius: 14px !important;
  }
}



/* =====================================================================
   BAMBY FINAL COMMERCE + LEGAL CONSISTENCY - 2026-08-15
   ===================================================================== */

/* Keep the account form's own Welcome heading, without a duplicate Login. */
body.woocommerce-account .ur-frontend-form.login-registration > .ur-form-row > .ur-form-grid > .ur-form-title {
  display: none !important;
}

/* Protect public phone readability in every link state. */
.bamby-header-action.bamby-phone,
.bamby-header-action.bamby-phone:link,
.bamby-header-action.bamby-phone:visited,
.bamby-header-action.bamby-phone:hover,
.bamby-header-action.bamby-phone:focus,
.bamby-header-action.bamby-phone:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

/* Variation names belong inside their dropdowns, not in a detached label. */
.single-product form.variations_form table.variations th.label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.single-product form.variations_form table.variations td.value {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  padding-inline: 0 !important;
}

.single-product form.variations_form table.variations td.value select {
  width: min(100%, 420px) !important;
  max-width: 420px !important;
  margin: 0 auto !important;
  text-align: center;
  text-align-last: center;
}

.single-product form.variations_form .reset_variations {
  flex: 0 0 100%;
  width: auto !important;
  margin: 0 auto !important;
  text-align: center;
}

/* Enabled actions stay clear; disabled Update cart remains visibly disabled. */
.woocommerce-cart button[name="update_cart"]:not(:disabled) {
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Long-form legal reading layout: comfortable line length and hierarchy. */
body.page-id-987508508 .entry-content > .bamby-section {
  padding: 28px 24px 64px !important;
}

body.page-id-987508508 .entry-content .bamby-rich-text {
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin-inline: auto !important;
}

body.page-id-987508508 .bamby-rich-text h1 {
  margin: 0 0 10px !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.08 !important;
}

body.page-id-987508508 .bamby-rich-text h2 {
  margin: 42px 0 14px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  font-size: clamp(23px, 2.3vw, 29px) !important;
  line-height: 1.2 !important;
  letter-spacing: .01em;
}

body.page-id-987508508 .bamby-rich-text h3 {
  margin: 28px 0 10px !important;
  font-size: clamp(18px, 1.7vw, 21px) !important;
  line-height: 1.3 !important;
}

body.page-id-987508508 .bamby-rich-text p,
body.page-id-987508508 .bamby-rich-text li {
  max-width: 78ch;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

body.page-id-987508508 .bamby-rich-text p {
  margin: 0 0 16px !important;
}

body.page-id-987508508 .bamby-rich-text hr {
  margin: 24px 0 34px !important;
  border-color: #ddd !important;
}

@media (max-width: 767px) {
  body.page-id-987508508 .entry-content > .bamby-section {
    padding: 18px 18px 44px !important;
  }

  body.page-id-987508508 .bamby-rich-text h2 {
    margin-top: 34px !important;
  }

  body.page-id-987508508 .bamby-rich-text h3 {
    margin-top: 24px !important;
  }

  body.page-id-987508508 .bamby-rich-text p,
  body.page-id-987508508 .bamby-rich-text li {
    font-size: 15.5px !important;
    line-height: 1.68 !important;
  }
}

/* Product recommendations share the homepage card interaction and typography. */
.single-product .upsells.products ul.products li.product,
.single-product .related.products ul.products li.product {
  transition: transform .2s ease !important;
}

.single-product .upsells.products ul.products li.product:hover,
.single-product .upsells.products ul.products li.product:focus-within,
.single-product .related.products ul.products li.product:hover,
.single-product .related.products ul.products li.product:focus-within {
  transform: translateY(-4px);
}

.single-product .upsells.products ul.products li.product img,
.single-product .related.products ul.products li.product img {
  transition: box-shadow .2s ease !important;
}

.single-product .upsells.products ul.products li.product:hover img,
.single-product .upsells.products ul.products li.product:focus-within img,
.single-product .related.products ul.products li.product:hover img,
.single-product .related.products ul.products li.product:focus-within img {
  box-shadow: 0 13px 24px rgba(0,0,0,.18) !important;
}

.single-product .upsells.products .woocommerce-loop-product__title,
.single-product .related.products .woocommerce-loop-product__title {
  margin: 8px 0 0 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.single-product .upsells.products .price,
.single-product .related.products .price {
  margin: 5px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}

@media (prefers-reduced-motion: reduce) {
  .single-product .upsells.products ul.products li.product,
  .single-product .related.products ul.products li.product,
  .single-product .upsells.products ul.products li.product img,
  .single-product .related.products ul.products li.product img {
    transition: none !important;
  }
}

/* =====================================================================
   BAMBY HOMEPAGE MOBILE PARITY - 2026-08-15
   ===================================================================== */
@media (max-width: 767px) {
  /* The mobile homepage uses the same live New Arrivals data as desktop. */
  body.home .bamby-section--featured-products-section {
    display: block !important;
    padding: 34px 0 30px !important;
    background: #f7f7f7 !important;
  }

  body.home .bamby-section--featured-products-section > .bamby-row {
    width: 100% !important;
    max-width: none !important;
    padding: 0 16px !important;
  }

  body.home .bamby-section--featured-products-section h2 {
    margin: 0 0 16px !important;
    font-size: 25px !important;
    line-height: 1.15 !important;
    text-align: center;
  }

  body.home .bamby-section--featured-products-section .woocommerce.columns-6 {
    position: relative;
    overflow: visible;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6 {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px !important;
    width: 100%;
    margin: 0 !important;
    padding: 3px 2px 14px !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6::-webkit-scrollbar {
    display: none;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6 li.product {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 0 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    scroll-snap-align: start;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6 li.product img {
    display: block;
    width: 100% !important;
    aspect-ratio: 1;
    margin: 0 0 9px !important;
    border-radius: 12px !important;
    object-fit: cover;
    box-shadow: 0 7px 16px rgba(17,17,17,.14) !important;
  }

  body.home .bamby-section--featured-products-section ul.products.columns-6 .onsale {
    display: block !important;
    top: 8px !important;
    right: auto !important;
    left: 8px !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    font-size: 11px !important;
    line-height: 42px !important;
  }

  body.home .bamby-section--featured-products-section .woocommerce-loop-product__title {
    min-height: 0 !important;
    margin: 0 4px 5px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  body.home .bamby-section--featured-products-section .price {
    margin: 0 4px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  body.home .bamby-section--featured-products-section .bamby-arrivals-nav button {
    top: 39% !important;
  }

  /* Preserve the transparent Stone Slabs artwork on the mobile layout too. */
  body.home .bamby-section--mobile-collections-and-services-section .bamby-media:has(img[alt="Bamby Stone Slabs Collection Showroom"]) {
    width: min(240px, 72vw) !important;
    margin-inline: auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.home .bamby-section--mobile-collections-and-services-section img[alt="Bamby Stone Slabs Collection Showroom"] {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}



/* Final variation label and product separator correction - 2026-08-15 */
.single-product form.variations_form table.variations th.label {
  display: none !important;
}

.single-product .summary form.cart {
  margin-bottom: 24px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid #eee !important;
}

.single-product .summary .product_meta {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}



/* =====================================================================
   BAMBY CONTACT + BOOKINGS COMPACT LAYOUT - 2026-08-15
   ===================================================================== */

/* Remove the redundant heading; the form already has “How can we help?”. */
.bamby-section--contact-form-map > .bamby-grid--1:last-child > .bamby-column > .bamby-rich-text:first-child {
  display: none !important;
}

@media (min-width: 768px) {
  .bamby-section--contact-form-map {
    display: grid !important;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, 1fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    gap: 22px 24px;
    width: min(100%, 1080px) !important;
    max-width: 1080px !important;
    margin-inline: auto !important;
    padding: 42px 28px 54px !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-phone,
  .bamby-section--contact-form-map > .bamby-hide-phone > .bamby-column {
    display: contents !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-phone .bamby-rich-text {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-phone .bamby-embed {
    grid-column: 1;
    grid-row: 2 / span 2;
    min-width: 0;
  }

  .bamby-section--contact-form-map > .bamby-hide-phone .bamby-embed iframe {
    display: block;
    width: 100% !important;
    height: 800px !important;
    border-radius: 12px;
  }

  .bamby-section--contact-form-map > .bamby-grid--2 {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 18px !important;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fafafa;
  }

  .bamby-section--contact-form-map > .bamby-grid--2 .bamby-column {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--1:last-child {
    grid-column: 2;
    grid-row: 3;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--1:last-child > .bamby-column,
  .bamby-section--contact-form-map .bamby-contact,
  .bamby-section--contact-form-map .bamby-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .bamby-section--contact-form-map .bamby-contact {
    padding: 20px !important;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fff;
  }
}

@media (max-width: 767px) {
  .bamby-section--contact-form-map {
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    padding: 28px 20px 44px !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop,
  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop > .bamby-column {
    display: contents !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop .bamby-rich-text {
    order: 1;
    margin: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--2 {
    order: 2;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 16px !important;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fafafa;
  }

  .bamby-section--contact-form-map > .bamby-grid--2 .bamby-column {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--1:last-child {
    order: 3;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-grid--1:last-child > .bamby-column,
  .bamby-section--contact-form-map .bamby-contact,
  .bamby-section--contact-form-map .bamby-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .bamby-section--contact-form-map .bamby-contact {
    padding: 18px !important;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fff;
  }

  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop .bamby-embed {
    order: 4;
    width: 100% !important;
    margin: 6px 0 0 !important;
  }

  .bamby-section--contact-form-map > .bamby-hide-tablet.bamby-hide-desktop .bamby-embed iframe {
    display: block;
    width: 100% !important;
    height: 1200px !important;
    border-radius: 12px;
  }
}



/* Variation name is announced by the select aria-label and shown in its placeholder. */
body.single-product .bamby-product-top .summary form.variations_form table.variations tbody tr th.label,
body.single-product .bamby-product-top .summary form.variations_form table.variations tr th.label {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}



/* =====================================================================
   BAMBY BEROCKET COLOUR SWATCHES - 2026-08-15
   Lightweight replacement for the removed Divi compatibility stylesheet.
   ===================================================================== */
.bapf_attr_pa_colors .bapf_body ul {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.bapf_attr_pa_colors .bapf_body li:not(.bapf_hide) {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.bapf_attr_pa_colors .bapf_body li label {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  cursor: pointer;
}

.bapf_attr_pa_colors .bapf_clr_span {
  display: block !important;
  position: relative;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  border: 1px solid #bdbdbd !important;
  border-radius: 50% !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
  overflow: hidden;
}

.bapf_attr_pa_colors .bapf_clr_span_abslt,
.bapf_attr_pa_colors .bapf_clr_span .pcs {
  display: none !important;
}

.bapf_attr_pa_colors input:checked + label .bapf_clr_span {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.bapf_attr_pa_colors label:hover .bapf_clr_span,
.bapf_attr_pa_colors label:focus-visible .bapf_clr_span {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,.18);
}

@media (prefers-reduced-motion: no-preference) {
  .bapf_attr_pa_colors .bapf_clr_span {
    transition: transform .16s ease, box-shadow .16s ease;
  }
}

@media (max-width: 767px) {
  .berocket_element_above_products_is_hide_toggle.berocket_ajax_filters_toggle {
    margin-bottom: 10px !important;
  }
}



/* Keep dynamic variation placeholders and selected values readable everywhere. */
body.single-product form.variations_form select,
body.single-product form.variations_form select:invalid,
body.single-product form.variations_form select:valid {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  opacity: 1 !important;
  background-color: #fff !important;
}

body.single-product form.variations_form select option {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background: #fff !important;
}



/* Override the former label-as-placeholder rule now that the dropdown owns the label. */
body.single-product form.variations_form table.variations select:has(option[value=""]:checked),
body.single-product .summary form.variations_form table.variations td.value > select:has(option[value=""]:checked) {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background-color: #fff !important;
  opacity: 1 !important;
}


/* =====================================================================
   BAMBY MOBILE SERVICES FINAL LAYOUT - 2026-08-16
   Two-column fee cards, visible card actions and footer-safe final CTA.
   ===================================================================== */
@media (max-width: 767px) {
  .page-id-987509196 .bamby-section--our-services-and-fees-section {
    padding: 30px 0 36px !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section > .bamby-row {
    width: calc(100% - 32px) !important;
    max-width: 520px !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 16px !important;
    row-gap: 20px !important;
    width: 100% !important;
    margin: 18px 0 0 !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products li.product {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    display: block !important;
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products li.product a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    color: #111 !important;
    text-align: center !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products li.product a img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    margin: 0 0 9px !important;
    object-fit: cover;
    border-radius: 12px !important;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .15) !important;
  }

  .page-id-987509196 .bamby-section--our-services-and-fees-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.28 !important;
    overflow-wrap: anywhere;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile > .bamby-row {
    width: calc(100% - 24px) !important;
    max-width: 520px !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile > .bamby-grid--3 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px !important;
    align-items: start !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile > .bamby-grid--3 > .bamby-column {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile .bamby-card {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile .bamby-actions {
    position: relative !important;
    z-index: 3;
    display: flex !important;
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    width: 100% !important;
    min-height: 44px !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
  }

  .page-id-987509196 .bamby-section--our-services-section-mobile .bamby-button,
  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section .bamby-button {
    display: inline-flex !important;
    min-height: 44px !important;
    padding: 10px 18px !important;
    color: #fff !important;
    background: #111 !important;
    border-color: #111 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    text-align: center;
  }

  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section {
    min-height: 0 !important;
    padding: 38px 0 64px !important;
    margin-bottom: 18px !important;
  }

  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section > .bamby-row {
    width: calc(100% - 48px) !important;
  }

  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section .bamby-grid--5 > .bamby-column:last-child {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .page-id-987509196 .bamby-section--let-s-bring-it-to-life-section .bamby-actions {
    display: flex !important;
    justify-content: flex-end !important;
    width: 100% !important;
    min-height: 44px !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
  }
}


/* =====================================================================
   BAMBY SHARED PRODUCT-CARD + MOBILE TOP SPACING FINAL - 2026-08-16
   ===================================================================== */
.bamby-section--account-arrivals,
body.home .bamby-section--featured-products-section,
body.single-product .bamby-upsell-carousel {
  --bamby-card-title-price-gap: 4px;
}

.bamby-section--account-arrivals ul.products li.product,
body.home .bamby-section--featured-products-section ul.products li.product,
body.single-product .bamby-upsell-carousel ul.products li.product {
  transition: transform .2s ease, box-shadow .2s ease !important;
  will-change: transform;
}

.bamby-section--account-arrivals ul.products li.product:hover,
.bamby-section--account-arrivals ul.products li.product:focus-within,
body.home .bamby-section--featured-products-section ul.products li.product:hover,
body.home .bamby-section--featured-products-section ul.products li.product:focus-within,
body.single-product .bamby-upsell-carousel ul.products li.product:hover,
body.single-product .bamby-upsell-carousel ul.products li.product:focus-within {
  transform: translateY(-3px) !important;
}

.bamby-section--account-arrivals ul.products li.product .woocommerce-loop-product__title,
body.home .bamby-section--featured-products-section ul.products li.product .woocommerce-loop-product__title,
body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
  min-height: 0 !important;
  margin-bottom: var(--bamby-card-title-price-gap) !important;
  padding-bottom: 0 !important;
}

.bamby-section--account-arrivals ul.products li.product .price,
body.home .bamby-section--featured-products-section ul.products li.product .price,
body.single-product .bamby-upsell-carousel ul.products li.product .price {
  display: block;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .bamby-section--account-arrivals ul.products li.product,
  body.home .bamby-section--featured-products-section ul.products li.product,
  body.single-product .bamby-upsell-carousel ul.products li.product {
    transition: none !important;
    will-change: auto;
  }
}

@media (max-width: 767px) {
  /* A fixed mobile header is 86px tall. The shared 108px offset leaves 22px. */
  body.admin-bar.single-product #page {
    padding-top: 108px !important;
  }

  body.blog .site-main,
  .tax-product_cat .site-main {
    padding-top: 8px !important;
  }

  .woocommerce.archive .woocommerce-archive-wrapper {
    margin-top: 0 !important;
  }

  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop {
    padding-top: 24px !important;
  }

  .bamby-section--account-arrivals {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 16px !important;
    padding-bottom: 38px !important;
  }

  .bamby-section--account-arrivals .bamby-actions {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
  }

  .bamby-section--account-arrivals ul.products.columns-6 .woocommerce-loop-product__title,
  body.home .bamby-section--featured-products-section ul.products.columns-6 .woocommerce-loop-product__title,
  body.single-product .bamby-upsell-carousel ul.products li.product .woocommerce-loop-product__title {
    margin-bottom: var(--bamby-card-title-price-gap) !important;
  }
}

/* =====================================================================
   STONE SLAB PURCHASE NEXT STEPS - 2026-08-16
   Appears after Add to cart and before product tags on slab products.
   ===================================================================== */
body.single-product.bamby-stone-slab-product .bamby-stone-next-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0 !important;
  padding: 16px 0 14px;
  border-top: 1px solid #e3e3e3;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 66px;
  padding: 10px 12px;
  color: #111 !important;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  text-align: center;
  text-decoration: none !important;
  transition: transform .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item span {
  display: block;
  margin: 0 0 3px;
  font-size: 12px;
  line-height: 1.3;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item:hover,
body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item:focus-visible {
  color: #fff !important;
  background: #111;
  border-color: #111;
  transform: translateY(-2px);
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps + .product_meta {
  margin-top: 0 !important;
}

body.single-product #slab-calculator {
  scroll-margin-top: 150px;
}

@media (max-width: 767px) {
  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 14px !important;
    padding: 14px 0 12px;
  }

  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    min-height: 48px;
    padding: 8px 11px;
    text-align: left;
  }

  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item span {
    margin: 0;
  }

  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item strong {
    text-align: right;
  }

  body.single-product #slab-calculator {
    scroll-margin-top: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps__item {
    transition: none;
  }
}

/* Final compact alignment beneath the purchase divider. */
body.single-product.bamby-stone-slab-product .summary form.cart {
  margin-bottom: 10px !important;
}

body.single-product.bamby-stone-slab-product .bamby-stone-next-steps {
  margin-top: 0 !important;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 767px) {
  body.single-product.bamby-stone-slab-product .bamby-stone-next-steps {
    margin-top: 0 !important;
    padding-top: 0;
  }
}

/* Bamby Stone Services use the same compact post-purchase layout with service copy. */
body.single-product.bamby-service-product .bamby-stone-next-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 !important;
  padding: 0 0 14px;
  border-top: 0;
}

body.single-product.bamby-service-product .bamby-stone-next-steps__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 66px;
  padding: 10px 12px;
  color: #111 !important;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  text-align: center;
  text-decoration: none !important;
  transition: transform .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease;
}

body.single-product.bamby-service-product .bamby-stone-next-steps__item span {
  display: block;
  margin: 0 0 3px;
  font-size: 12px;
  line-height: 1.3;
}

body.single-product.bamby-service-product .bamby-stone-next-steps__item strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

body.single-product.bamby-service-product .bamby-stone-next-steps__item:hover,
body.single-product.bamby-service-product .bamby-stone-next-steps__item:focus-visible {
  color: #fff !important;
  background: #111;
  border-color: #111;
  transform: translateY(-2px);
}

body.single-product.bamby-service-product .summary form.cart {
  margin-bottom: 10px !important;
}

@media (max-width: 767px) {
  body.single-product.bamby-service-product .bamby-stone-next-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 0 0 12px;
  }

  body.single-product.bamby-service-product .bamby-stone-next-steps__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    min-height: 48px;
    padding: 8px 11px;
    text-align: left;
  }

  body.single-product.bamby-service-product .bamby-stone-next-steps__item span {
    margin: 0;
  }

  body.single-product.bamby-service-product .bamby-stone-next-steps__item strong {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.single-product.bamby-service-product .bamby-stone-next-steps__item {
    transition: none;
  }
}

/* =====================================================================
   ESTIMATOR SELF-SERVICE OR SEND-PLANS CHOICE - 2026-08-16
   ===================================================================== */
body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  width: min(100%, 720px) !important;
  max-width: 720px;
  margin: 0 auto !important;
}

body.single-product .bamby-estimator-actions__calculator,
body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
  width: 100% !important;
  min-width: 0;
}

body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator,
body.single-product .bamby-estimator-actions__plans {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 48px !important;
  height: 100%;
  margin: 0 !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  line-height: 1.25 !important;
  text-align: center;
  white-space: normal;
}

body.single-product .bamby-estimator-actions__or {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper > p[style*="color:red"] {
  display: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) {
  display: block;
  width: 100%;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) > .bamby-estimator-actions__or,
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) > .bamby-estimator-actions__plans {
  display: none !important;
}

.bamby-plan-estimate-dialog {
  width: min(500px, calc(100% - 32px));
  max-width: 500px;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  color: #111;
  background: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  overflow: auto;
}

.bamby-plan-estimate-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
}

.bamby-plan-estimate-dialog__panel {
  position: relative;
  margin: 0;
  padding: 26px;
}

.bamby-plan-estimate-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  color: #111 !important;
  background: #f1f1f1 !important;
  border: 0 !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.bamby-plan-estimate-dialog__eyebrow {
  margin: 0 44px 5px 0;
  color: #765435;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bamby-plan-estimate-dialog h2 {
  margin: 0 44px 16px 0;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.15;
}

.bamby-plan-estimate-dialog ol {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.bamby-plan-estimate-dialog li,
.bamby-plan-estimate-dialog p {
  font-size: 15px;
  line-height: 1.55;
}

.bamby-plan-estimate-dialog__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.bamby-plan-estimate-dialog__actions .bamby-button {
  min-height: 44px;
  padding: 10px 18px;
  color: #fff !important;
  background: #111 !important;
  border-color: #111 !important;
  border-radius: 10px !important;
}

@media (max-width: 767px) {
  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    gap: 4px;
  }

  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator,
  body.single-product .bamby-estimator-actions__plans {
    min-height: 60px !important;
    padding: 8px 7px !important;
    font-size: 11.5px !important;
  }

  body.single-product .bamby-estimator-actions__or {
    min-width: 18px;
    font-size: 10px;
  }

  .bamby-plan-estimate-dialog__panel {
    padding: 22px 18px 18px;
  }

  .bamby-plan-estimate-dialog h2 {
    font-size: 25px;
  }
}

/* Keep slab next steps directly after the cart divider and before product tags. */
body.single-product.bamby-stone-slab-product .summary .bamby-stone-next-steps {
  order: 6;
}

/* Keep simple-product stock inside the purchase area, then show slab actions before tags. */
body.single-product .summary > p.stock ~ form.cart {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body.single-product .summary > p.stock {
  margin-top: 4px !important;
}

@media (max-width: 767px) {
  body.single-product.bamby-stone-slab-product .bamby-product-top .summary .bamby-stone-next-steps {
    grid-column: 1;
    grid-row: 7;
  }

  body.single-product.bamby-stone-slab-product .bamby-product-top .summary .product_meta {
    grid-column: 1;
    grid-row: 8;
  }

  body.single-product.bamby-stone-slab-product .bamby-product-top .summary:has(> p.stock) .bamby-stone-next-steps {
    grid-row: 8;
  }

  body.single-product.bamby-stone-slab-product .bamby-product-top .summary:has(> p.stock) .product_meta {
    grid-row: 9;
  }
}


/* Final estimator action sizing: preserve the calculator's desktop frame. */
body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
  width: 100% !important;
  max-width: none;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator,
body.single-product .bamby-estimator-actions__plans {
  width: min(100%, 340px) !important;
  max-width: 340px !important;
  height: 48px !important;
  min-height: 48px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-transform: none !important;
}

@media (min-width: 768px) {
  body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper > p[style*="color:red"] {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    align-items: start;
  }

  body.single-product .bamby-estimator-actions__calculator,
  body.single-product .bamby-estimator-actions__calculator .bamby-calc-wrapper {
    display: contents;
  }

  body.single-product .bamby-product-estimator__tool .bamby-estimator-actions #load_calculator {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    height: 60px !important;
    min-height: 60px !important;
  }

  body.single-product .bamby-estimator-actions__or {
    grid-column: 2;
    grid-row: 1;
    min-height: 60px;
  }

  body.single-product .bamby-estimator-actions__plans {
    grid-column: 3;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    height: 60px !important;
    min-height: 60px !important;
    align-self: start;
  }

  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"] {
    display: block !important;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    margin: 8px 0 0 !important;
    padding: 0 6px;
    text-align: center;
  }
}

/* Final loaded state: the calculator must leave the two-choice launcher grid. */
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  .bamby-estimator-actions__calculator,
body.single-product .bamby-estimator-actions
  .bamby-calc-wrapper.has-calculator-loaded {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  > .bamby-estimator-actions__or,
body.single-product .bamby-estimator-actions:has(.bamby-calc-wrapper.has-calculator-loaded)
  > .bamby-estimator-actions__plans {
  display: none !important;
}

body.single-product .bamby-calc-wrapper.has-calculator-loaded > div,
body.single-product .bamby-calc-wrapper.has-calculator-loaded > iframe,
body.single-product .bamby-calc-wrapper.has-calculator-loaded > form,
body.single-product .bamby-calc-wrapper.has-calculator-loaded > section {
  width: 100% !important;
  max-width: none !important;
}

/* Keep the plans popup compact and independent from calculator sizing. */
body.single-product .bamby-product-estimator__tool > #bamby-plan-estimate-dialog.bamby-plan-estimate-dialog {
  width: min(500px, calc(100vw - 32px)) !important;
  min-width: 0 !important;
  max-width: 500px !important;
  margin: auto !important;
}

body.single-product .bamby-plan-estimate-dialog__panel {
  width: auto !important;
  max-width: none !important;
}

/* Centre the unopened estimator choices as one stable group. */
@media (min-width: 768px) {
  body.single-product .bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded)) {
    grid-template-columns: minmax(0, 340px) 24px minmax(0, 340px) !important;
    justify-content: center !important;
    column-gap: 20px !important;
  }

  body.single-product .bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
    .bamby-estimator-actions__calculator {
    display: block !important;
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    width: 100% !important;
  }

  body.single-product .bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
    .bamby-calc-wrapper:not(.has-calculator-loaded) {
    display: grid !important;
    grid-template-columns: minmax(0, 340px) 24px minmax(0, 340px) !important;
    justify-content: center !important;
    column-gap: 20px !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  body.single-product .bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded)) {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) !important;
    justify-content: stretch !important;
    column-gap: 8px !important;
  }
}

/* Compact phone guidance shown instead of loading the workspace on a narrow screen. */
body.single-product > #bamby-calculator-mobile-dialog.bamby-calculator-mobile-dialog {
  width: min(500px, calc(100vw - 32px)) !important;
  min-width: 0 !important;
  max-width: 500px !important;
  max-height: calc(100dvh - 32px);
  margin: auto !important;
  padding: 0;
  color: #111;
  background: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  overflow: auto;
}

.bamby-calculator-mobile-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
}

.bamby-calculator-mobile-dialog__panel {
  position: relative;
  margin: 0;
  padding: 24px;
}

.bamby-calculator-mobile-dialog__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  color: #111 !important;
  background: #f1f1f1 !important;
  border: 0 !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.bamby-calculator-mobile-dialog__eyebrow {
  margin: 0 44px 5px 0;
  color: #765435;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bamby-calculator-mobile-dialog h2 {
  margin: 0 44px 14px 0;
  font-size: 25px;
  line-height: 1.15;
}

.bamby-calculator-mobile-dialog p {
  font-size: 15px;
  line-height: 1.5;
}

.bamby-calculator-mobile-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}

.bamby-calculator-mobile-dialog__actions .bamby-button {
  min-height: 44px;
  padding: 9px 14px !important;
  border-radius: 10px !important;
  text-transform: none !important;
}

.bamby-calculator-mobile-dialog__dismiss {
  color: #111 !important;
  background: #fff !important;
  border: 1px solid #bbb !important;
}

.bamby-calculator-mobile-dialog__plans {
  color: #fff !important;
  background: #111 !important;
  border-color: #111 !important;
}

@media (max-width: 767px) {
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color:red"],
  body.single-product .bamby-estimator-actions .bamby-calc-wrapper > p[style*="color: red"] {
    display: none !important;
  }
}

/* =====================================================================
   BAMBY POPUP SYSTEM - 2026-08-16
   Shared visual language for the estimator and calculator guidance dialogs.
   ===================================================================== */
body.single-product .bamby-site-dialog {
  width: min(500px, calc(100vw - 32px)) !important;
  min-width: 0 !important;
  max-width: 500px !important;
  max-height: calc(100dvh - 32px);
  margin: auto !important;
  padding: 0 !important;
  color: #111;
  background: #fff;
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  overflow: auto;
}

body.single-product .bamby-site-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
}

body.single-product .bamby-site-dialog__panel {
  position: relative;
  width: auto !important;
  max-width: none !important;
  margin: 0;
  padding: 26px;
}

body.single-product .bamby-site-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  color: #111 !important;
  background: #f1f1f1 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  font-family: Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.single-product .bamby-site-dialog__close:hover,
body.single-product .bamby-site-dialog__close:focus-visible {
  color: #fff !important;
  background: #111 !important;
}

body.single-product .bamby-site-dialog__eyebrow {
  margin: 0 52px 5px 0;
  color: #765435;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body.single-product .bamby-site-dialog h2 {
  margin: 0 52px 16px 0;
  color: #111;
  font-size: clamp(25px, 5vw, 32px);
  line-height: 1.15;
}

body.single-product .bamby-site-dialog p,
body.single-product .bamby-site-dialog li {
  font-size: 15px;
  line-height: 1.55;
}

body.single-product .bamby-site-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}

body.single-product .bamby-site-dialog__actions .bamby-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: .02em !important;
  text-align: center;
  text-transform: none !important;
}

@media (max-width: 767px) {
  body.single-product .bamby-site-dialog__panel {
    padding: 22px 18px 18px;
  }

  body.single-product .bamby-site-dialog__close {
    top: 10px;
    right: 10px;
  }

  body.single-product .bamby-site-dialog h2 {
    font-size: 25px;
  }
}

/* Contact page: compact details, form and useful FAQ */
.bamby-section--contact-form-map {
  display: block !important;
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.bamby-section--contact-form-map > .bamby-row:first-child,
.bamby-section--contact-form-map > .bamby-row:nth-child(2) {
  padding-top: clamp(1rem, 2vw, 2rem);
}

.bamby-section--contact-form-map > .bamby-row {
  clear: both;
  float: none !important;
}

.bamby-section--contact-form-map > .bamby-row.bamby-hide-phone {
  display: grid !important;
}

.bamby-section--contact-form-map .bamby-rich-text h1 {
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.bamby-section--contact-form-map > .bamby-contact-panel,
.bamby-section--contact-form-map > .bamby-contact-faq-row {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  grid-column: 1 / -1 !important;
}

.bamby-contact-panel {
  margin-top: clamp(1.25rem, 2.5vw, 2.25rem);
}

.bamby-contact-panel > .bamby-column {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid #dedede;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.07);
}

.bamby-contact-panel__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bamby-form-captcha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  align-items: center;
  gap: 8px 14px;
  padding: 14px;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fafafa;
}

.bamby-section--contact-form-map .bamby-form .bamby-form-captcha label {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  color: #111;
  font-weight: 700;
}

.bamby-section--contact-form-map .bamby-form .bamby-form-captcha input[type="number"] {
  width: 96px;
  margin: 0;
  text-align: center;
}

.bamby-form-captcha small {
  grid-column: 1 / -1;
  color: #5f5b56;
  font-size: 0.82rem;
  line-height: 1.4;
}

.bamby-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  color: #111;
  background: #fafafa;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.bamby-contact-detail:hover,
.bamby-contact-detail:focus-visible {
  color: #111;
  border-color: #b9b9b9;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
}

.bamby-contact-detail:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.bamby-contact-detail__icon {
  flex: 0 0 auto;
  font-size: 1.2rem;
  line-height: 1.3;
}

.bamby-contact-detail strong,
.bamby-contact-detail small {
  display: block;
}

.bamby-contact-detail strong {
  margin-bottom: 4px;
  font-size: 0.98rem;
  line-height: 1.25;
}

.bamby-contact-detail small {
  overflow-wrap: anywhere;
  color: #5f5b56;
  font-size: 0.84rem;
  line-height: 1.45;
}

.bamby-contact-panel__intro {
  max-width: 760px;
  margin: clamp(1.25rem, 2vw, 1.75rem) auto 0;
  text-align: center;
}

.bamby-contact-panel__intro p {
  margin: 0;
}

.bamby-contact-panel .bamby-contact {
  margin-top: 1rem;
}

.bamby-contact-faq-row {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.bamby-contact-faq h2 {
  margin: 0 0 12px;
  text-align: center;
}

.bamby-contact-faq details {
  margin: 0 0 8px;
  overflow: clip;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
}

.bamby-contact-faq summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #111;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.bamby-contact-faq summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.bamby-contact-faq details[open] summary::after {
  content: "−";
}

.bamby-contact-faq summary:focus-visible {
  outline: 2px solid #111;
  outline-offset: -3px;
}

.bamby-contact-faq details > div {
  padding: 0 16px 14px;
  border-top: 1px solid #ececec;
}

.bamby-contact-faq details p {
  margin: 12px 0 0;
  color: #4f4f4f;
  line-height: 1.65;
}

.bamby-contact-faq a {
  font-weight: 600;
}

@media (max-width: 767px) {
  .bamby-section--contact-form-map > .bamby-row.bamby-hide-phone {
    display: none !important;
  }

  .bamby-section--contact-form-map > .bamby-row.bamby-hide-tablet.bamby-hide-desktop {
    display: grid !important;
  }

  .bamby-section--contact-form-map > .bamby-contact-panel,
  .bamby-section--contact-form-map > .bamby-contact-faq-row {
    width: calc(100% - 24px) !important;
  }

  .bamby-contact-panel {
    margin-top: 16px;
  }

  .bamby-contact-panel > .bamby-column {
    padding: 14px;
    border-radius: 10px;
  }

  .bamby-contact-panel__details {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bamby-form-captcha {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .bamby-section--contact-form-map .bamby-form .bamby-form-captcha input[type="number"] {
    width: 82px;
  }

  .bamby-contact-detail {
    padding: 12px;
  }

  .bamby-contact-panel__intro {
    margin-top: 16px;
    text-align: left;
  }

  .bamby-contact-faq-row {
    margin-top: 20px;
  }

  .bamby-contact-faq h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
    text-align: left;
  }

  .bamby-contact-faq summary {
    padding: 13px 14px;
  }

  .bamby-contact-faq details > div {
    padding: 0 14px 13px;
  }

  .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-button {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    float: none !important;
    width: auto !important;
    max-width: 100% !important;
    min-height: 44px;
    height: auto !important;
    margin: 12px 0 0 auto !important;
    padding: 10px 18px !important;
    overflow: visible !important;
    line-height: 1.2 !important;
    transform: none !important;
  }

  .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 100% !important;
    min-height: 44px !important;
    height: auto !important;
    max-height: none !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop,
  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop > .bamby-row,
  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-column {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop {
    padding-bottom: 28px !important;
  }
}

@media (min-width: 768px) {
  /* Match the calendar to the same 90% / 1280px frame as the site header. */
  .page-id-987508340 .bamby-section--contact-form-map {
    width: 90% !important;
    max-width: 1280px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .page-id-987508340 .bamby-section--contact-form-map > .bamby-row:first-child {
    width: 100% !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .page-id-987508340 .bamby-section--contact-form-map > .bamby-row:first-child .bamby-embed,
  .page-id-987508340 .bamby-section--contact-form-map > .bamby-row:first-child iframe {
    display: block;
    width: 100% !important;
    max-width: none !important;
  }
}

/* Compact high-contrast shared header and footer socials - 2026-08-16 */
.bamby-socials--mobile-header {
	display: none !important;
}

@media (min-width: 768px) {
	.bamby-site-header {
		background: rgba(255, 255, 255, 0.92) !important;
		border-radius: 0 0 36px 36px !important;
		-webkit-backdrop-filter: blur(16px) saturate(125%);
		backdrop-filter: blur(16px) saturate(125%);
		overflow: visible !important;
	}

	.bamby-header-top {
		background: rgba(17, 17, 17, 0.90) !important;
		color: #fff !important;
		height: 56px !important;
		min-height: 56px !important;
		position: relative !important;
		z-index: 100020 !important;
	}

	.bamby-header-inner--top {
		grid-template-columns: minmax(160px, 1fr) minmax(320px, 620px) minmax(160px, 1fr) !important;
		gap: clamp(0.8rem, 2vw, 2rem) !important;
		height: 56px !important;
		min-height: 56px !important;
		padding-block: 6px !important;
		position: relative !important;
		z-index: 100020 !important;
	}

	.bamby-logo {
		justify-self: start;
	}

	.bamby-logo img,
	.is-condensed .bamby-logo img {
		height: 42px !important;
	}

	.bamby-header-search {
		justify-self: center !important;
		margin: 0 !important;
		max-width: 620px !important;
		width: 100% !important;
		position: relative !important;
		z-index: 100021 !important;
	}

	.bamby-header-search .bpls-search-shell,
	.bamby-header-search .bpls-input,
	.bamby-header-search .bpls-submit {
		min-height: 40px !important;
		height: 40px !important;
	}

	.bamby-header-main {
		background: rgba(255, 255, 255, 0.92) !important;
		border-radius: 0 0 36px 36px !important;
		height: 44px !important;
		min-height: 44px !important;
		position: relative !important;
		z-index: 1 !important;
	}

	.bamby-header-inner--main {
		display: flex !important;
		flex-direction: row !important;
		height: 44px !important;
		min-height: 44px !important;
		padding-block: 4px 6px !important;
	}

	.bamby-primary-nav {
		margin-top: 0 !important;
	}

	.bamby-header-action,
	.bamby-header-action:hover,
	.bamby-header-action:focus-visible {
		color: #fff !important;
	}

	body:not(.home) #page {
		padding-top: 102px !important;
	}

	body.admin-bar .bamby-site-header {
		top: 32px;
	}
}

.bamby-footer-bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
}

.bamby-footer-bottom p {
	flex: 1 1 auto;
}

.bamby-site-footer .bamby-socials--footer {
	position: static;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	gap: 10px;
	color: #fff;
	transform: none;
}

.bamby-site-footer .bamby-socials--footer a {
	display: inline-grid;
	width: 24px;
	height: 24px;
	place-items: center;
}

.bamby-site-footer .bamby-socials--footer svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

@media (max-width: 767px) {
	.bamby-site-header {
		background: rgba(255, 255, 255, 0.95) !important;
		-webkit-backdrop-filter: blur(14px) saturate(120%);
		backdrop-filter: blur(14px) saturate(120%);
	}

	.bamby-header-top,
	.bamby-header-main {
		background: transparent !important;
	}

	.bamby-menu-toggle > span:not(.bamby-visually-hidden) {
		background: #111 !important;
	}

	.bamby-socials--mobile-header {
		display: flex !important;
		left: 14px !important;
		right: auto !important;
		top: 12px !important;
	}

	.bamby-header-actions > .bamby-cart-link,
	.bamby-header-actions > .bamby-cart-link:link,
	.bamby-header-actions > .bamby-cart-link:visited {
		align-items: center !important;
		color: #111 !important;
		display: inline-flex !important;
		height: 24px !important;
		justify-content: center !important;
		min-width: 24px !important;
		visibility: visible !important;
		width: 24px !important;
	}

	.bamby-header-actions > .bamby-cart-link .bamby-cart-icon {
		color: #111 !important;
		display: block !important;
		height: 24px !important;
		visibility: visible !important;
		width: 24px !important;
	}

	.bamby-primary-nav,
	.bamby-primary-nav.is-open {
		background: #fff !important;
		border: 1px solid rgba(17, 17, 17, 0.1) !important;
		border-radius: 0 0 22px 22px !important;
		box-shadow: 0 18px 32px rgba(17, 17, 17, 0.22) !important;
		color: #111 !important;
		left: 12px !important;
		padding: 12px 14px 16px !important;
		width: calc(100% - 24px) !important;
		z-index: 100010 !important;
	}

	.bamby-primary-nav .bamby-menu,
	.bamby-primary-nav .bamby-menu a {
		background: #fff !important;
		color: #111 !important;
	}

	.bamby-primary-nav .bamby-menu a:hover,
	.bamby-primary-nav .bamby-menu a:focus-visible,
	.bamby-primary-nav .current-menu-item > a {
		background: #f2f2f2 !important;
		color: #111 !important;
	}

	.bamby-footer-bottom {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
	}

	.bamby-site-footer .bamby-socials--footer {
		align-self: flex-end;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}
}

/* Homepage estimator and mobile project-action refinement - 2026-08-16 */
@media (min-width: 769px) {
	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) {
		padding: 34px 24px !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) > .bamby-row {
		align-items: stretch !important;
		gap: clamp(28px, 4vw, 54px) !important;
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, 410px) !important;
		margin-inline: auto !important;
		max-width: 1080px !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) h3 {
		font-size: clamp(24px, 2.2vw, 32px) !important;
		line-height: 1.2 !important;
		margin: 0 0 18px !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-home-estimator-step {
		border-left: 3px solid var(--bamby-gold) !important;
		font-size: 15px !important;
		line-height: 1.55 !important;
		margin: 10px 0 !important;
		padding: 7px 0 7px 14px !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-home-estimator-step strong {
		display: inline-block;
		font-size: 16px;
		margin-bottom: 2px;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-home-estimator-more {
		margin: 12px 0 0 !important;
		text-align: right !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-home-estimator-more a {
		font-size: 14px;
		font-weight: 700;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-video {
		border-radius: 14px !important;
		box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16) !important;
		display: flex !important;
		height: 100% !important;
		margin-inline: auto !important;
		max-width: 410px !important;
		overflow: hidden !important;
		width: 100% !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-column:last-child {
		display: flex !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-column:last-child > div {
		display: flex !important;
		width: 100% !important;
	}

	body.home .bamby-section.bamby-hide-phone:has(iframe[src*="QWpLVVsdsnw"]) .bamby-video iframe {
		aspect-ratio: auto !important;
		height: 100% !important;
		min-height: 300px !important;
		width: 100% !important;
	}
}

@media (max-width: 768px) {
	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions {
		margin-bottom: 22px !important;
		margin-top: 16px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions + hr.bamby-divider {
		margin-top: 24px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider {
		margin-bottom: 26px !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions--center,
	body.home .bamby-section--mobile-collections-and-services-section hr.bamby-divider:last-of-type + .bamby-rich-text + .bamby-rich-text + .bamby-actions {
		align-items: stretch !important;
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 10px !important;
		justify-content: center !important;
		margin: 18px auto 22px !important;
		max-width: 360px !important;
		width: 100% !important;
	}

	body.home .bamby-section--mobile-collections-and-services-section .bamby-actions--center .bamby-button {
		flex: 1 1 0 !important;
		margin: 0 !important;
		max-width: 175px !important;
		min-height: 44px !important;
		text-align: center !important;
		white-space: normal !important;
	}
}

/* Collections landing page and centred mobile header controls - 2026-08-16 */
.bamby-collections-intro a {
	color: inherit !important;
	font-weight: 600;
	text-decoration-color: rgba(17, 17, 17, 0.32) !important;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 2px;
}

.bamby-collections-intro a:hover,
.bamby-collections-intro a:focus-visible {
	color: var(--bamby-gold-dark) !important;
	text-decoration-color: currentColor !important;
}

@media (max-width: 767px) {
	.bamby-header-inner--main {
		position: relative !important;
	}

	.bamby-header-inner--main::after {
		color: #111;
		content: "•";
		font-size: 17px;
		font-weight: 700;
		left: 50%;
		line-height: 1;
		pointer-events: none;
		position: absolute;
		top: 61px;
		transform: translate(-50%, -50%);
		z-index: 8;
	}

	.bamby-menu-toggle {
		left: calc(50% - 36px) !important;
		top: 61px !important;
		transform: translate(-50%, -50%) !important;
	}

	.bamby-mobile-search-toggle {
		left: calc(50% + 16px) !important;
		top: 42px !important;
		transform: none !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile {
		padding: 16px 0 28px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row {
		margin-inline: auto !important;
		max-width: 560px !important;
		padding-inline: 0 !important;
		width: calc(100% - 32px) !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row + .bamby-row {
		margin-top: 20px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:first-child h2 {
		font-size: 25px !important;
		line-height: 1.16 !important;
		margin: 0 !important;
	}

	.bamby-collections-mobile-lead {
		font-size: 14px !important;
		line-height: 1.5 !important;
		margin: 10px auto 0 !important;
		max-width: 34rem;
		text-align: center;
	}

	.bamby-collections-mobile-details {
		background: #f7f7f7;
		border: 1px solid #dedede;
		border-radius: 12px;
		box-shadow: 0 7px 18px rgba(17, 17, 17, 0.07);
		margin-top: 14px;
		overflow: hidden;
		text-align: left;
	}

	.bamby-collections-mobile-details summary {
		align-items: center;
		cursor: pointer;
		display: flex;
		font-size: 13px;
		font-weight: 700;
		gap: 7px;
		justify-content: flex-start;
		line-height: 1.35;
		list-style: none;
		padding: 12px 14px;
	}

	.bamby-collections-mobile-details summary::-webkit-details-marker {
		display: none;
	}

	.bamby-collections-mobile-details summary::after {
		content: "+";
		font-size: 18px;
		font-weight: 500;
		line-height: 1;
		margin-left: auto;
	}

	.bamby-collections-mobile-details[open] summary::after {
		content: "−";
	}

	.bamby-collections-mobile-details__content {
		border-top: 1px solid #e1e1e1;
		padding: 12px 14px 14px;
	}

	.bamby-collections-mobile-details__content p {
		font-size: 13px !important;
		line-height: 1.55 !important;
		margin: 0 0 11px !important;
		text-align: left !important;
		text-transform: none !important;
	}

	.bamby-collections-mobile-details__content p:last-child {
		margin-bottom: 0 !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) {
		margin-top: 24px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) .bamby-media {
		margin: 0 auto !important;
		max-width: 310px;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) .bamby-media img {
		display: block;
		height: auto !important;
		margin: 0 auto;
		max-height: 190px;
		object-fit: contain !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) h2,
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(4) h2 {
		font-size: 23px !important;
		line-height: 1.16 !important;
		margin: 14px 0 8px !important;
		text-align: center !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) p,
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(4) p {
		font-size: 13px !important;
		line-height: 1.55 !important;
		margin-bottom: 10px !important;
		text-align: center !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) .bamby-actions {
		justify-content: center !important;
		margin: 14px 0 0 !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(2) .bamby-button {
		min-height: 42px !important;
		padding: 10px 16px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(3) {
		margin-top: 24px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(3) .bamby-divider {
		margin: 0 !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(4) {
		margin-top: 20px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) {
		margin-top: 18px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column {
		display: grid !important;
		gap: 10px 12px !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-template-rows: auto auto auto auto auto auto;
		min-height: 0 !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card {
		background: #fff !important;
		border: 1px solid #e3e3e3 !important;
		border-radius: 13px !important;
		box-shadow: 0 7px 18px rgba(17, 17, 17, 0.09) !important;
		display: flex !important;
		flex-direction: column !important;
		height: auto !important;
		margin: 0 !important;
		max-width: none !important;
		min-height: 0 !important;
		overflow: hidden !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card > p:empty {
		display: none !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card > img {
		aspect-ratio: auto !important;
		background: #fff !important;
		display: block !important;
		height: 122px !important;
		margin: 0 !important;
		object-fit: contain !important;
		padding: 8px !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card__content {
		padding: 10px 10px 12px !important;
		text-align: center !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card__content h3 {
		font-family: "Open Sans", Arial, sans-serif !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		line-height: 1.25 !important;
		margin: 0 0 6px !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile .bamby-card__content p {
		font-size: 11px !important;
		line-height: 1.4 !important;
		margin: 0 !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) .bamby-actions {
		align-self: start;
		justify-content: stretch !important;
		margin: 0 !important;
		padding: 0 !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) .bamby-button {
		font-size: 11px !important;
		justify-content: center !important;
		min-height: 40px !important;
		padding: 8px 10px !important;
		width: 100% !important;
	}

	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(1) { grid-column: 1; grid-row: 1; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(2) { grid-column: 1; grid-row: 2; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(3) { grid-column: 2; grid-row: 1; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(4) { grid-column: 2; grid-row: 2; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(5) { grid-column: 1; grid-row: 3; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(6) { grid-column: 1; grid-row: 4; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(7) { grid-column: 2; grid-row: 3; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(8) { grid-column: 2; grid-row: 4; }
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(9) {
		grid-column: 1 / -1;
		grid-row: 5;
		justify-self: center;
		width: calc(50% - 6px) !important;
	}
	body.post-type-archive-product .bamby-section--our-products-section-mobile > .bamby-row:nth-child(5) > .bamby-column > :nth-child(10) {
		grid-column: 1 / -1;
		grid-row: 6;
		justify-self: center;
		width: calc(50% - 6px) !important;
	}
}

/* =====================================================================
   GLOBAL WOOCOMMERCE CATALOGUE CONTROLS - 2026-08-16
   Shared by product categories, product tags and the main shop archive.
   ===================================================================== */
body.woocommerce.archive .bamby-shop-filters {
	clear: both;
	margin: 16px 0 22px !important;
	padding: 0 !important;
	text-align: center;
}

body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle {
	align-items: center;
	background: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 10px !important;
	box-shadow: 0 6px 16px rgba(17, 17, 17, 0.13);
	color: #fff !important;
	display: inline-flex !important;
	font-family: "Open Sans", Arial, sans-serif !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	gap: 8px;
	height: 42px !important;
	justify-content: center;
	letter-spacing: 0.035em;
	line-height: 1 !important;
	margin: 0 auto 14px !important;
	min-height: 42px !important;
	min-width: 168px;
	padding: 10px 18px !important;
	text-align: center !important;
	text-decoration: none !important;
	transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
	width: auto !important;
}

body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle span {
	color: currentColor !important;
	flex: 0 0 auto;
}

body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle span :is(i, b, s) {
	background: currentColor !important;
}

body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle:hover,
body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle:focus-visible {
	background: #fff !important;
	box-shadow: 0 8px 20px rgba(17, 17, 17, 0.16);
	color: #111 !important;
}

body.woocommerce.archive .bamby-shop-filters .berocket_element_above_products_is_hide {
	margin-top: 2px;
	text-align: left;
}

body.woocommerce.archive .woocommerce-result-count {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.35;
	margin-bottom: 18px !important;
	white-space: normal !important;
}

body.woocommerce.archive .woocommerce-ordering {
	margin-bottom: 18px !important;
	width: 220px;
}

body.woocommerce.archive .woocommerce-ordering select {
	min-height: 40px;
	width: 100%;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	body.woocommerce.archive ul.products li.product {
		transition: transform .2s ease !important;
	}

	body.woocommerce.archive ul.products li.product:hover,
	body.woocommerce.archive ul.products li.product:focus-within {
		transform: translateY(-4px);
	}

	body.woocommerce.archive ul.products li.product img {
		transition: box-shadow .2s ease !important;
	}

	body.woocommerce.archive ul.products li.product:hover img,
	body.woocommerce.archive ul.products li.product:focus-within img {
		box-shadow: 0 15px 24px -8px rgba(0, 0, 0, 0.48) !important;
	}
}

@media (max-width: 767px) {
	body.woocommerce.archive .bamby-shop-filters {
		margin: 12px 0 20px !important;
	}

	body.woocommerce.archive .bamby-shop-filters .berocket_ajax_filters_toggle {
		height: 40px !important;
		margin-bottom: 10px !important;
		min-height: 40px !important;
		min-width: 156px;
		padding: 9px 15px !important;
	}

	body.woocommerce.archive .woocommerce-result-count {
		align-items: center;
		display: flex;
		float: left !important;
		font-size: 11px !important;
		line-height: 1.3 !important;
		margin: 0 0 16px !important;
		min-height: 36px;
		padding: 2px 0;
		text-align: left;
		width: calc(47% - 6px);
	}

	body.woocommerce.archive .woocommerce-ordering {
		float: right !important;
		margin: 0 0 16px !important;
		width: calc(53% - 6px) !important;
	}

	body.woocommerce.archive .woocommerce-ordering select {
		background: #f5f5f5 !important;
		border: 1px solid #d8d8d8 !important;
		border-radius: 8px !important;
		color: #111 !important;
		font-size: 11px !important;
		height: 36px !important;
		min-height: 36px !important;
		padding: 5px 26px 5px 9px !important;
		-webkit-text-fill-color: #111 !important;
	}

	body.woocommerce.archive ul.products {
		clear: both !important;
	}
}

/* =====================================================================
   GLOBAL PRODUCT META, ESTIMATOR CHOICES + DESCRIPTION-ONLY TABS
   2026-08-16
   ===================================================================== */

/* Defence in depth while cached product fragments expire. The PHP hook above
   removes this markup completely on fresh responses. */
body.single-product .summary .product_meta {
	display: none !important;
}

/* Keep both estimator choices equal, centred and independent from the
   calculator workspace. Once the workspace loads, the existing loaded-state
   rules restore it to full width. */
body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded)) {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) !important;
	align-items: stretch !important;
	column-gap: 16px !important;
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	margin: 0 auto !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	> .bamby-estimator-actions__calculator {
	display: block !important;
	grid-column: 1 / -1 !important;
	grid-row: 1 !important;
	width: 100% !important;
	min-width: 0 !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	.bamby-calc-wrapper:not(.has-calculator-loaded) {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) !important;
	align-items: stretch !important;
	column-gap: 16px !important;
	width: 100% !important;
	min-width: 0 !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	#load_calculator {
	display: flex !important;
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	min-height: 56px !important;
	margin: 0 !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	> .bamby-estimator-actions__or {
	display: flex !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 56px !important;
}

body.single-product .bamby-product-estimator__tool
	.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
	> .bamby-estimator-actions__plans {
	display: flex !important;
	grid-column: 3 !important;
	grid-row: 1 !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	min-height: 56px !important;
	margin: 0 !important;
}

/* A product with only Description still uses the same compact, recognisable
   tab language as the two-tab mobile product layout. */
@media (max-width: 767px) {
	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded)) {
		grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) !important;
		column-gap: 8px !important;
	}

	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
		.bamby-calc-wrapper:not(.has-calculator-loaded) {
		grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) !important;
		column-gap: 8px !important;
	}

	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
		#load_calculator,
	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
		> .bamby-estimator-actions__plans {
		min-height: 64px !important;
		padding: 9px 10px !important;
		font-size: 12px !important;
		line-height: 1.22 !important;
	}

	body.single-product .bamby-product-estimator__tool
		.bamby-estimator-actions:not(:has(.bamby-calc-wrapper.has-calculator-loaded))
		> .bamby-estimator-actions__or {
		min-height: 64px !important;
		font-size: 10px !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child) {
		box-sizing: border-box;
		width: 100% !important;
		margin-top: 28px !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child) > ul.tabs {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		box-sizing: border-box;
		width: 100% !important;
		margin: 0 0 22px !important;
		padding: 4px !important;
		background: #f3f3f3 !important;
		border: 1px solid #d8d8d8 !important;
		border-radius: 12px !important;
		box-shadow: 0 5px 15px rgba(17, 17, 17, .08);
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> ul.tabs > li {
		display: block !important;
		box-sizing: border-box;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #111 !important;
		border: 0 !important;
		border-radius: 9px !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> ul.tabs > li::before,
	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> ul.tabs > li::after {
		display: none !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> ul.tabs > li > a {
		display: flex !important;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		width: 100% !important;
		min-height: 48px;
		padding: 10px 16px !important;
		color: #fff !important;
		-webkit-text-fill-color: #fff !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		line-height: 1.2 !important;
		text-align: center;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> .woocommerce-Tabs-panel {
		box-sizing: border-box;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	body.single-product div.product .woocommerce-tabs:has(> ul.tabs > li:only-child)
		> .woocommerce-Tabs-panel > h3:first-of-type {
		margin-top: 0 !important;
		font-size: clamp(24px, 7vw, 30px) !important;
		line-height: 1.2 !important;
	}
}

/* Final service-product placement: match the slab action block below the
   desktop purchase divider without disturbing the established phone layout. */
@media (min-width: 768px) {
	body.single-product.bamby-service-product .summary .bamby-stone-next-steps {
		order: 6;
		width: 100%;
	}
}

/* Keep the shared popup close control visually identical even while the
   browser gives it initial keyboard focus after opening a dialog. */
body.bamby-lightweight-theme.single-product main dialog.bamby-site-dialog button.bamby-site-dialog__close,
body.bamby-lightweight-theme.single-product main dialog.bamby-site-dialog button.bamby-site-dialog__close:focus-visible {
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	min-height: 40px !important;
	padding: 0 !important;
	color: #111 !important;
	-webkit-text-fill-color: #111 !important;
	background: #f1f1f1 !important;
	border: 0 !important;
	border-radius: 50% !important;
	font-family: Arial, sans-serif !important;
	font-size: 24px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

/* Shared content-start rhythm: keep standard pages close to the fixed header
   without allowing page-builder padding to create a second oversized gap. */
@media (min-width: 768px) {
	body:not(.home):not(.single-product) .entry-content > .bamby-section:first-child {
		padding-top: 24px !important;
	}

	body:not(.home):not(.single-product) .entry-content > .bamby-section:first-child > .bamby-row:first-child {
		padding-top: 0 !important;
	}

	.page-id-987508340 .bamby-contact-panel,
	.page-id-987508340 .bamby-contact-faq-row {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.page-id-987508340 .bamby-contact-faq-row {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	body:not(.home):not(.single-product) .entry-content > .bamby-section:first-child {
		padding-top: 16px !important;
	}

	body:not(.home):not(.single-product) .entry-content > .bamby-section:first-child > .bamby-row:first-child {
		padding-top: 0 !important;
	}
}

/* Shared page finish: legacy builder heights must not create blank bands
   between the final visible section and the global footer. */
body:not(.home):not(.single-product) .entry-content > .bamby-section:last-child {
	box-sizing: border-box;
	height: auto !important;
	min-height: 0 !important;
	padding-bottom: clamp(28px, 3vw, 40px) !important;
}

.bamby-section--account-arrivals {
	height: auto !important;
	min-height: 0 !important;
}

body.bamby-lightweight-theme.single-product main dialog.bamby-site-dialog button.bamby-site-dialog__close:hover {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	background: #111 !important;
}

/* =====================================================================
   GLOBAL TEMPLATE RHYTHM + BLOG READING SYSTEM FINAL - 2026-08-16
   One shared start/end system for content templates. Product detail and
   calculator canvases keep their purpose-built layouts.
   ===================================================================== */
:root {
	--bamby-content-start-desktop: 24px;
	--bamby-content-end-desktop: 40px;
	--bamby-content-start-mobile: 16px;
	--bamby-content-end-mobile: 28px;
}

body.blog main.bamby-blog-index {
	padding-top: var(--bamby-content-start-desktop) !important;
	padding-bottom: var(--bamby-content-end-desktop) !important;
}

body.blog .bamby-blog-archive-title {
	margin-bottom: 28px !important;
}

/* Single posts previously inherited padding on both MAIN and ARTICLE. */
body.single-post main.site-main {
	padding-top: var(--bamby-content-start-desktop) !important;
	padding-bottom: var(--bamby-content-end-desktop) !important;
}

body.single-post .site-main > article:not(.page),
body.single-post .inside-article {
	box-sizing: border-box;
	padding: 0 !important;
}

body.single-post .entry-header {
	margin-bottom: 24px !important;
}

body.single-post .entry-title {
	font-size: clamp(36px, 4.6vw, 54px) !important;
	line-height: 1.08 !important;
}

body.single-post .inside-article > .featured-image,
body.single-post .inside-article > .post-image {
	margin-bottom: 32px !important;
}

body.single-post .entry-content {
	font-size: 17px !important;
	line-height: 1.78 !important;
}

body.single-post .entry-content > *:first-child {
	margin-top: 0 !important;
}

body.single-post .entry-content figure {
	box-sizing: border-box;
	max-width: 100% !important;
	margin: 28px auto 32px !important;
	text-align: center;
}

body.single-post .entry-content figure img {
	display: block;
	height: auto !important;
	margin: 0 auto !important;
	box-shadow: 0 8px 22px rgba(17, 17, 17, .1);
}

body.single-post .entry-content figcaption,
body.single-post .entry-content figure > p:last-child {
	margin: 9px auto 0 !important;
	color: #666;
	font-size: 13px !important;
	line-height: 1.45 !important;
	text-align: center;
}

/* Older posts sometimes stored section headings as bold-only paragraphs. */
body.single-post .entry-content p:has(> strong):not(:has(> :not(strong))) {
	margin-top: 34px !important;
	margin-bottom: 12px !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 2.4vw, 30px) !important;
	line-height: 1.22 !important;
}

body.single-post .entry-content blockquote {
	margin: 28px 0 !important;
	padding: 18px 22px !important;
	background: #f6f4f1;
	border-left: 4px solid #8a6038;
	border-radius: 0 10px 10px 0;
}

body.single-post .entry-content a {
	color: #765435;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body.single-post .entry-footer {
	box-sizing: border-box;
	margin-top: 38px !important;
	padding-top: 18px;
	color: #717171;
	border-top: 1px solid #e1e1e1;
	font-size: 12px;
	line-height: 1.7;
}

body.single-post .entry-footer a {
	color: #555;
	text-underline-offset: 2px;
}

body.single-post .post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px !important;
}

body.single-post .post-navigation > div,
body.single-post .post-navigation .nav-previous,
body.single-post .post-navigation .nav-next {
	box-sizing: border-box;
	min-width: 0;
}

body.single-post .post-navigation a {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	min-height: 76px;
	height: 100%;
	padding: 14px 16px;
	color: #111;
	background: #fff;
	border: 1px solid #dedede;
	border-radius: 10px;
	box-shadow: 0 5px 14px rgba(17, 17, 17, .06);
	line-height: 1.35;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}

body.single-post .post-navigation a:hover,
body.single-post .post-navigation a:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(17, 17, 17, .1);
}

body.single-post .comments-area {
	box-sizing: border-box;
	width: min(100%, 800px);
	margin: 36px auto 0 !important;
	padding: 24px !important;
	background: #f7f7f7;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
}

body.single-post .comments-area textarea {
	width: 100%;
	min-height: 150px;
	border: 1px solid #cfcfcf;
	border-radius: 8px;
}

body.single-post .comments-area input[type="submit"] {
	min-height: 46px;
	padding: 10px 22px;
	color: #fff;
	background: #111;
	border: 1px solid #111;
	border-radius: 8px;
}

body.archive:not(.woocommerce) main.site-main,
body.search main.site-main {
	padding-top: var(--bamby-content-start-desktop) !important;
	padding-bottom: var(--bamby-content-end-desktop) !important;
}

/* Commerce archives retain their filter/header design and use the shared end. */
body.tax-product_cat main.site-main {
	padding-bottom: var(--bamby-content-end-desktop) !important;
}

@media (max-width: 767px) {
	body.blog main.bamby-blog-index,
	body.single-post main.site-main {
		width: min(100% - 28px, 1180px) !important;
		padding-top: var(--bamby-content-start-mobile) !important;
		padding-bottom: var(--bamby-content-end-mobile) !important;
	}

	body.blog .bamby-blog-archive-title {
		margin-bottom: 20px !important;
		font-size: 30px !important;
	}

	body.blog .bamby-blog-column {
		gap: 20px !important;
	}

	body.blog .bamby-blog-card__image img {
		aspect-ratio: 16 / 10 !important;
		object-fit: cover !important;
	}

	body.blog .bamby-blog-card__title {
		margin: 15px 16px 7px !important;
		font-size: 22px !important;
		line-height: 1.28 !important;
	}

	body.blog .bamby-blog-card__meta {
		margin-right: 16px !important;
		margin-left: 16px !important;
		font-size: 13px !important;
	}

	body.blog .bamby-blog-card__excerpt {
		padding: 0 16px 18px !important;
		font-size: 15px !important;
		line-height: 1.6 !important;
		-webkit-line-clamp: 3;
	}

	body.single-post .entry-header {
		margin-bottom: 18px !important;
	}

	body.single-post .entry-title {
		font-size: clamp(30px, 9vw, 38px) !important;
		line-height: 1.13 !important;
	}

	body.single-post .entry-meta {
		font-size: 12px !important;
		line-height: 1.5;
	}

	body.single-post .inside-article > .featured-image,
	body.single-post .inside-article > .post-image {
		margin-bottom: 24px !important;
	}

	body.single-post .entry-content {
		font-size: 16px !important;
		line-height: 1.7 !important;
	}

	body.single-post .entry-content h2 {
		margin-top: 30px !important;
		font-size: 27px !important;
	}

	body.single-post .entry-content h3 {
		margin-top: 24px !important;
		font-size: 22px !important;
	}

	body.single-post .entry-content p:has(> strong):not(:has(> :not(strong))) {
		margin-top: 28px !important;
		font-size: 23px !important;
	}

	body.single-post .entry-content figure {
		margin: 22px auto 26px !important;
	}

	body.single-post .entry-content table {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.single-post .post-navigation {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	body.single-post .post-navigation a {
		min-height: 64px;
		padding: 12px 14px;
	}

	body.single-post .comments-area {
		margin-top: 28px !important;
		padding: 18px !important;
		border-radius: 10px;
	}

	body.archive:not(.woocommerce) main.site-main,
	body.search main.site-main {
		padding-top: var(--bamby-content-start-mobile) !important;
		padding-bottom: var(--bamby-content-end-mobile) !important;
	}

	body.tax-product_cat main.site-main {
		padding-bottom: var(--bamby-content-end-mobile) !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.single-post .post-navigation a {
		transition: none;
	}
}

/* =====================================================================
   GLOBAL BLOG DISCOVERY + COMPACT TAXONOMY - 2026-08-16
   Related cards replace the plain previous/next footer on every post.
   ===================================================================== */
body.single-post .inside-article > footer.entry-meta {
	order: 4;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-sizing: border-box;
	width: min(100%, 800px) !important;
	margin: 34px auto 0 !important;
	padding: 16px 0 0 !important;
	color: #777;
	border-top: 1px solid #e2e2e2;
	font-size: 0;
	line-height: 1.5;
}

body.single-post footer.entry-meta .cat-links,
body.single-post footer.entry-meta .tags-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 9px;
	width: 100%;
	margin: 0 !important;
	font-size: 0;
}

body.single-post footer.entry-meta .cat-links {
	margin-bottom: 8px !important;
}

body.single-post footer.entry-meta .gp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	margin: 0 2px 0 0 !important;
	color: #765435;
	font-size: 12px;
}

body.single-post footer.entry-meta .cat-links a,
body.single-post footer.entry-meta .tags-links a {
	display: inline-block;
	margin: 0 !important;
	padding: 0 0 2px !important;
	color: #737373;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #d0d0d0 !important;
	border-radius: 0 !important;
	font-family: Arial, sans-serif;
	font-size: 11px !important;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: .01em;
	text-decoration: none;
}

body.single-post footer.entry-meta .cat-links a:hover,
body.single-post footer.entry-meta .cat-links a:focus-visible,
body.single-post footer.entry-meta .tags-links a:hover,
body.single-post footer.entry-meta .tags-links a:focus-visible {
	color: #111;
	border-bottom-color: #111 !important;
}

body.single-post footer.entry-meta .post-navigation {
	display: none !important;
}

body.single-post .bamby-related-posts {
	order: 5;
	box-sizing: border-box;
	width: min(100%, 900px);
	margin: 34px auto 0;
	padding-top: 24px;
	border-top: 1px solid #e2e2e2;
}

body.single-post .bamby-related-posts__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

body.single-post .bamby-related-posts__header h2 {
	margin: 0 !important;
	font-size: clamp(25px, 2.6vw, 32px) !important;
	line-height: 1.2 !important;
}

body.single-post .bamby-related-posts__all {
	flex: 0 0 auto;
	color: #765435;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-underline-offset: 3px;
}

body.single-post .bamby-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

body.single-post .bamby-related-post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 6px 17px rgba(17, 17, 17, .07);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

body.single-post .bamby-related-post-card:hover,
body.single-post .bamby-related-post-card:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(17, 17, 17, .12);
}

body.single-post .bamby-related-post-card__image {
	display: block;
	width: 100%;
	background: #f2f2f2;
	overflow: hidden;
}

body.single-post .bamby-related-post-card__image img,
body.single-post .bamby-related-post-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 10;
	margin: 0 !important;
	color: #777;
	background: #f2f2f2;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font-size: 13px;
	object-fit: cover;
	transition: transform .25s ease;
}

body.single-post .bamby-related-post-card:hover .bamby-related-post-card__image img,
body.single-post .bamby-related-post-card:focus-within .bamby-related-post-card__image img {
	transform: scale(1.025);
}

body.single-post .bamby-related-post-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 12px 13px 14px;
}

body.single-post .bamby-related-post-card__body time {
	margin-bottom: 5px;
	color: #777;
	font-family: Arial, sans-serif;
	font-size: 11px;
	line-height: 1.35;
}

body.single-post .bamby-related-post-card__body h3 {
	display: -webkit-box;
	margin: 0 !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 19px !important;
	line-height: 1.28 !important;
}

body.single-post .bamby-related-post-card__body h3 a {
	color: #111;
	text-decoration: none;
}

@media (max-width: 767px) {
	body.single-post .inside-article > footer.entry-meta {
		margin-top: 28px !important;
		padding-top: 14px !important;
	}

	body.single-post footer.entry-meta .cat-links,
	body.single-post footer.entry-meta .tags-links {
		gap: 5px 8px;
	}

	body.single-post footer.entry-meta .cat-links a,
	body.single-post footer.entry-meta .tags-links a {
		font-size: 10px !important;
	}

	body.single-post .bamby-related-posts {
		width: 100%;
		margin-top: 28px;
		padding-top: 20px;
	}

	body.single-post .bamby-related-posts__header {
		align-items: center;
		margin-bottom: 13px;
	}

	body.single-post .bamby-related-posts__header h2 {
		font-size: 25px !important;
	}

	body.single-post .bamby-related-posts__all {
		font-size: 11px;
	}

	body.single-post .bamby-related-posts__grid {
		display: flex;
		gap: 12px;
		padding-bottom: 8px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	body.single-post .bamby-related-post-card {
		flex: 0 0 min(78vw, 286px);
		scroll-snap-align: start;
	}

	body.single-post .bamby-related-post-card__body h3 {
		font-size: 18px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.single-post .bamby-related-post-card,
	body.single-post .bamby-related-post-card__image img {
		transition: none;
	}
}

/* =====================================================================
   GLOBAL BLOG LISTING ARCHIVES - 2026-08-16
   Blog home, category, tag, author and date listings share one card grid.
   ===================================================================== */
main.bamby-blog-index {
	box-sizing: border-box;
	width: min(100% - 48px, 1180px) !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
	padding: var(--bamby-content-start-desktop) 0 var(--bamby-content-end-desktop) !important;
}

main.bamby-blog-index .bamby-blog-archive-title {
	position: static !important;
	clip: auto !important;
	clip-path: none !important;
	display: block !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 28px !important;
	padding: 0 !important;
	overflow: visible !important;
	white-space: normal !important;
	font-size: clamp(34px, 4vw, 50px) !important;
	line-height: 1.12 !important;
	letter-spacing: -.02em;
	text-align: center;
}

main.bamby-blog-index .bamby-blog-archive-description {
	width: min(100%, 760px);
	margin: -14px auto 28px;
	color: #5f5f5f;
	font-size: 16px;
	line-height: 1.7;
	text-align: center;
}

main.bamby-blog-index .bamby-blog-archive-description > *:last-child {
	margin-bottom: 0;
}

main.bamby-blog-index .bamby-blog-column {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

main.bamby-blog-index article.bamby-blog-card {
	display: flex !important;
	flex-direction: column;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 16px;
	box-shadow: 0 9px 24px rgba(0, 0, 0, .09);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

main.bamby-blog-index article.bamby-blog-card:hover,
main.bamby-blog-index article.bamby-blog-card:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 13px 30px rgba(0, 0, 0, .13);
}

main.bamby-blog-index .bamby-blog-card__image {
	display: block;
	width: 100%;
	margin: 0 !important;
	overflow: hidden;
}

main.bamby-blog-index .bamby-blog-card__image img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 10 !important;
	margin: 0 !important;
	object-fit: cover !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transition: transform .25s ease;
}

main.bamby-blog-index article.bamby-blog-card:hover .bamby-blog-card__image img,
main.bamby-blog-index article.bamby-blog-card:focus-within .bamby-blog-card__image img {
	transform: scale(1.025);
}

main.bamby-blog-index .bamby-blog-card__title {
	margin: 17px 18px 8px !important;
	padding: 0 !important;
	font-size: 23px !important;
	line-height: 1.25 !important;
	text-wrap: balance;
}

main.bamby-blog-index .bamby-blog-card__title a {
	color: #111;
	text-decoration: none;
}

main.bamby-blog-index .bamby-blog-card__meta {
	margin: 0 18px 10px !important;
	padding: 0 !important;
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}

main.bamby-blog-index .bamby-blog-card__excerpt {
	display: -webkit-box;
	flex: 1 1 auto;
	margin: 0 !important;
	padding: 0 18px 20px !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: #666;
	font-size: 16px;
	line-height: 1.65;
}

main.bamby-blog-index .navigation.pagination {
	grid-column: 1 / -1;
	margin: 4px 0 0 !important;
	padding: 0 !important;
}

main.bamby-blog-index .navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

main.bamby-blog-index .navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 7px 10px;
	color: #111;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	text-decoration: none;
}

main.bamby-blog-index .navigation.pagination .page-numbers.current,
main.bamby-blog-index .navigation.pagination a.page-numbers:hover,
main.bamby-blog-index .navigation.pagination a.page-numbers:focus-visible {
	color: #fff;
	background: #111;
	border-color: #111;
}

@media (max-width: 1024px) {
	main.bamby-blog-index .bamby-blog-column {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	main.bamby-blog-index {
		width: min(100% - 28px, 1180px) !important;
		padding-top: var(--bamby-content-start-mobile) !important;
		padding-bottom: var(--bamby-content-end-mobile) !important;
	}

	main.bamby-blog-index .bamby-blog-archive-title {
		margin-bottom: 20px !important;
		font-size: 30px !important;
	}

	main.bamby-blog-index .bamby-blog-archive-description {
		margin-top: -8px;
		margin-bottom: 20px;
		font-size: 15px;
		line-height: 1.6;
	}

	main.bamby-blog-index .bamby-blog-column {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px !important;
	}

	main.bamby-blog-index .bamby-blog-card__title {
		margin: 15px 16px 7px !important;
		font-size: 22px !important;
		line-height: 1.28 !important;
	}

	main.bamby-blog-index .bamby-blog-card__meta {
		margin-right: 16px !important;
		margin-left: 16px !important;
		font-size: 13px !important;
	}

	main.bamby-blog-index .bamby-blog-card__excerpt {
		padding: 0 16px 18px !important;
		font-size: 15px !important;
		line-height: 1.6 !important;
		-webkit-line-clamp: 3;
	}
}

@media (prefers-reduced-motion: reduce) {
	main.bamby-blog-index article.bamby-blog-card,
	main.bamby-blog-index .bamby-blog-card__image img {
		transition: none;
	}
}

/* Shared product-grid interaction: service fees, catalogue archives, homepage
   arrivals, account arrivals and recommendations use the same subtle lift. */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	body.bamby-lightweight-theme .woocommerce ul.products li.product {
		transition: transform .2s ease, box-shadow .2s ease !important;
		will-change: transform;
	}

	body.bamby-lightweight-theme .woocommerce ul.products li.product:hover,
	body.bamby-lightweight-theme .woocommerce ul.products li.product:focus-within {
		transform: translateY(-4px) !important;
	}

	body.bamby-lightweight-theme .woocommerce ul.products li.product img {
		transition: box-shadow .2s ease !important;
	}

	body.bamby-lightweight-theme .woocommerce ul.products li.product:hover img,
	body.bamby-lightweight-theme .woocommerce ul.products li.product:focus-within img {
		box-shadow: 0 15px 24px -8px rgba(0, 0, 0, .48) !important;
	}
}

/* Services phone hero: reserve space below the CTA so its rounded bottom edge
   remains fully visible before the next section begins. */
@media (max-width: 767px) {
	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop {
		height: auto !important;
		min-height: 0 !important;
		margin-bottom: 0 !important;
		padding-bottom: 44px !important;
		overflow: visible !important;
	}

	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop > .bamby-row,
	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-column {
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
	}

	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-actions {
		box-sizing: border-box;
		min-height: 52px !important;
		margin: 14px 0 0 !important;
		padding: 0 0 8px !important;
		overflow: visible !important;
	}

	body.page-id-987509196 .bamby-section--services-section-desktop-header.bamby-hide-tablet.bamby-hide-desktop .bamby-button {
		margin: 0 0 0 auto !important;
	}
}
