/* ==========================================================================
   Euros Belle — brand layer
   Palette taken from the logo: mint wash, butter wash, charcoal, cream.
   ========================================================================== */

:root {
	--eb-mint: #8eccbe;
	--eb-mint-deep: #5fae9c;
	--eb-mint-soft: #e4f2ee;
	--eb-butter: #f8e39a;
	--eb-butter-soft: #fcf4d9;
	--eb-charcoal: #414b47;
	--eb-ink: #2d3532;
	--eb-muted: #7b857f;
	--eb-cream: #fbfaf7;
	--eb-line: #e7e5df;
	--eb-sale: #c9553f;
	--eb-radius: 14px;
	--eb-shadow: 0 2px 18px rgba(65, 75, 71, 0.07);
	--eb-shadow-lift: 0 10px 30px rgba(65, 75, 71, 0.13);
	--eb-max: 1240px;

	/* map Blocksy's palette onto the brand */
	--theme-palette-color-1: #5fae9c;
	--theme-palette-color-2: #414b47;
	--theme-palette-color-3: #2d3532;
	--theme-palette-color-4: #7b857f;
	--theme-palette-color-5: #e7e5df;
	--theme-palette-color-6: #fbfaf7;
	--theme-palette-color-7: #ffffff;
	--theme-palette-color-8: #ffffff;
	--theme-link-initial-color: var(--eb-mint-deep);
	--theme-button-background-initial-color: var(--eb-charcoal);
	--theme-button-background-hover-color: var(--eb-mint-deep);
	--theme-button-text-initial-color: #ffffff;
	--theme-content-spacing: 1.4em;
}

body {
	background: var(--eb-cream);
	color: var(--eb-ink);
}

.eb-wrap {
	max-width: var(--eb-max);
	margin: 0 auto;
	padding-inline: 20px;
}

/* --------------------------------------------------------- announcement bar */
.eb-announce {
	background: var(--eb-charcoal);
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.02em;
	text-align: center;
	padding: 9px 16px;
}

.eb-announce a {
	color: var(--eb-butter);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.eb-announce strong {
	color: var(--eb-butter);
}

/* -------------------------------------------------------------- section head */
.eb-section {
	padding: 58px 0;
}

.eb-section--tight {
	padding: 34px 0;
}

.eb-section--wash {
	background: linear-gradient(180deg, var(--eb-mint-soft) 0%, var(--eb-cream) 100%);
}

.eb-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 26px;
}

.eb-head h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 33px);
	line-height: 1.18;
	color: var(--eb-ink);
	font-weight: 600;
	letter-spacing: -0.015em;
}

.eb-head p {
	margin: 7px 0 0;
	color: var(--eb-muted);
	font-size: 15px;
	max-width: 56ch;
}

.eb-head .eb-more {
	white-space: nowrap;
	font-size: 14px;
	font-weight: 600;
	color: var(--eb-mint-deep);
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}

.eb-eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--eb-mint-deep);
	font-weight: 700;
	margin-bottom: 10px;
}

/* --------------------------------------------------------------------- hero */
.eb-hero {
	background:
		radial-gradient(120% 110% at 12% 20%, rgba(142, 204, 190, 0.42) 0%, rgba(142, 204, 190, 0) 58%),
		radial-gradient(110% 100% at 88% 78%, rgba(248, 227, 154, 0.5) 0%, rgba(248, 227, 154, 0) 60%),
		var(--eb-cream);
	padding: clamp(46px, 7vw, 88px) 0;
	overflow: hidden;
}

.eb-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 46px;
	align-items: center;
}

.eb-hero h1 {
	font-size: clamp(33px, 5.2vw, 58px);
	line-height: 1.06;
	letter-spacing: -0.03em;
	margin: 0 0 18px;
	color: var(--eb-ink);
	font-weight: 600;
}

.eb-hero h1 em {
	font-style: italic;
	color: var(--eb-mint-deep);
}

.eb-hero p.eb-lead {
	font-size: 17px;
	line-height: 1.65;
	color: var(--eb-muted);
	max-width: 46ch;
	margin: 0 0 26px;
}

.eb-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.eb-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 26px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.eb-btn:hover {
	transform: translateY(-2px);
}

.eb-btn--primary {
	background: var(--eb-charcoal);
	color: #fff;
	box-shadow: var(--eb-shadow);
}

.eb-btn--primary:hover {
	background: var(--eb-mint-deep);
	color: #fff;
}

.eb-btn--ghost {
	background: transparent;
	color: var(--eb-charcoal);
	border: 1px solid var(--eb-charcoal);
}

.eb-btn--ghost:hover {
	background: var(--eb-charcoal);
	color: #fff;
}

.eb-btn--wa {
	background: #25d366;
	color: #fff;
}

.eb-btn--wa:hover {
	background: #1da851;
	color: #fff;
}

.eb-hero__stats {
	display: flex;
	gap: 30px;
	margin-top: 34px;
	padding-top: 24px;
	border-top: 1px solid var(--eb-line);
	flex-wrap: wrap;
}

.eb-hero__stats div strong {
	display: block;
	font-size: 21px;
	color: var(--eb-ink);
	line-height: 1.2;
}

.eb-hero__stats div span {
	font-size: 13px;
	color: var(--eb-muted);
}

.eb-hero__art {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 26px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--eb-shadow-lift);
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 2px;
	padding: 2px;
}

.eb-hero__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eb-hero__badge {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 999px;
	padding: 13px 20px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--eb-charcoal);
	box-shadow: var(--eb-shadow-lift);
	text-align: center;
	line-height: 1.35;
}

.eb-hero__badge span {
	display: block;
	font-weight: 500;
	color: var(--eb-muted);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* --------------------------------------------------------------- trust strip */
.eb-trust {
	background: #fff;
	border-block: 1px solid var(--eb-line);
}

.eb-trust__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	padding: 22px 0;
}

.eb-trust__item {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.eb-trust__item b {
	display: block;
	font-size: 13.5px;
	color: var(--eb-ink);
	font-weight: 600;
	line-height: 1.25;
}

.eb-trust__item span {
	font-size: 12px;
	color: var(--eb-muted);
}

/* ------------------------------------------------------------ category tiles */
.eb-cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.eb-cat {
	position: relative;
	display: block;
	background: #fff;
	border-radius: var(--eb-radius);
	overflow: hidden;
	text-decoration: none;
	box-shadow: var(--eb-shadow);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.eb-cat:hover {
	transform: translateY(-4px);
	box-shadow: var(--eb-shadow-lift);
}

.eb-cat img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.eb-cat__label {
	display: block;
	padding: 14px 16px 16px;
	text-align: center;
}

.eb-cat__label b {
	display: block;
	font-size: 15px;
	color: var(--eb-ink);
	font-weight: 600;
}

.eb-cat__label span {
	display: block;
	font-size: 12.5px;
	color: var(--eb-muted);
}

/* ------------------------------------------------------------- product cards */
ul.products,
.eb-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.products::before,
ul.products::after {
	content: none !important;
}

ul.products li.product,
.eb-card {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	background: #fff;
	border-radius: var(--eb-radius);
	overflow: hidden;
	box-shadow: var(--eb-shadow);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
	text-align: left;
	padding: 0 !important;
}

ul.products li.product:hover,
.eb-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--eb-shadow-lift);
}

.eb-card__media {
	position: relative;
	display: block;
	background: var(--eb-cream);
}

.eb-card__media img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.eb-card__body {
	padding: 14px 15px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.eb-card__brand {
	font-size: 11px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--eb-mint-deep);
	font-weight: 700;
}

.eb-card__title {
	font-size: 14.5px;
	line-height: 1.35;
	color: var(--eb-ink);
	font-weight: 500;
	margin: 0;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

a.eb-card__title:hover {
	color: var(--eb-mint-deep);
}

.eb-card__size {
	font-size: 12px;
	color: var(--eb-muted);
}

.eb-card__price {
	margin-top: auto;
	padding-top: 6px;
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.eb-card__price .eb-now {
	font-size: 16px;
	font-weight: 700;
	color: var(--eb-ink);
}

.eb-card__price .eb-was {
	font-size: 13px;
	color: var(--eb-muted);
	text-decoration: line-through;
}

.eb-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--eb-sale);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 5px 9px;
	border-radius: 999px;
	z-index: 2;
	line-height: 1;
}

.eb-badge--soft {
	background: var(--eb-butter);
	color: var(--eb-charcoal);
	left: auto;
	right: 10px;
}

.eb-card__actions {
	display: flex;
	gap: 7px;
	margin-top: 10px;
}

.eb-card__actions .button,
.eb-card__actions .eb-wa-mini {
	flex: 1;
	text-align: center;
	font-size: 13px !important;
	padding: 10px 8px !important;
	border-radius: 999px !important;
	line-height: 1.1 !important;
	font-weight: 600 !important;
	text-decoration: none;
}

.eb-card__actions .button {
	background: var(--eb-charcoal) !important;
	color: #fff !important;
	border: 0;
}

.eb-card__actions .button:hover {
	background: var(--eb-mint-deep) !important;
}

.eb-card__actions .button.added {
	display: none;
}

.eb-card__actions .added_to_cart {
	display: none;
}

.eb-wa-mini {
	background: rgba(37, 211, 102, 0.12);
	color: #16794a !important;
	border: 1px solid rgba(37, 211, 102, 0.4);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.eb-wa-mini:hover {
	background: #25d366;
	color: #fff !important;
}

.eb-wa-mini svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

/* --------------------------------------------------------------- concern row */
.eb-concerns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.eb-concern {
	background: #fff;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	padding: 22px 20px;
	text-decoration: none;
	display: block;
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.eb-concern:hover {
	border-color: var(--eb-mint);
	transform: translateY(-3px);
}

.eb-concern b {
	display: block;
	font-size: 16px;
	color: var(--eb-ink);
	margin-bottom: 6px;
	font-weight: 600;
}

.eb-concern span {
	font-size: 13.5px;
	color: var(--eb-muted);
	line-height: 1.5;
}

/* --------------------------------------------------------------- brand strip */
.eb-brands {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.eb-brands a {
	padding: 9px 18px;
	border: 1px solid var(--eb-line);
	border-radius: 999px;
	background: #fff;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--eb-muted);
	text-decoration: none;
	transition: all 0.16s ease;
}

.eb-brands a:hover {
	color: var(--eb-ink);
	border-color: var(--eb-mint);
	background: var(--eb-mint-soft);
}

/* ------------------------------------------------------------------ COD band */
.eb-cod {
	background: var(--eb-charcoal);
	color: #fff;
	border-radius: 22px;
	padding: clamp(28px, 4vw, 46px);
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 30px;
	align-items: center;
}

.eb-cod h2 {
	color: #fff;
	margin: 0 0 12px;
	font-size: clamp(24px, 3vw, 34px);
	letter-spacing: -0.02em;
	font-weight: 600;
}

.eb-cod p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 22px;
	font-size: 15.5px;
	line-height: 1.65;
	max-width: 52ch;
}

.eb-cod__steps {
	display: grid;
	gap: 14px;
}

.eb-cod__step {
	display: flex;
	gap: 13px;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 14px 16px;
}

.eb-cod__step i {
	font-style: normal;
	background: var(--eb-butter);
	color: var(--eb-charcoal);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 12.5px;
	font-weight: 700;
	flex: none;
}

.eb-cod__step b {
	display: block;
	font-size: 14.5px;
	margin-bottom: 2px;
}

.eb-cod__step span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.5;
}

/* --------------------------------------------------------- single product pg */
.single-product .eb-pdp-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 14px 0 6px;
}

.eb-chip {
	font-size: 12px;
	background: var(--eb-mint-soft);
	color: var(--eb-charcoal);
	border-radius: 999px;
	padding: 6px 12px;
	font-weight: 600;
}

.eb-pdp-assure {
	margin: 20px 0 0;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	background: #fff;
	padding: 16px 18px;
	display: grid;
	gap: 10px;
}

.eb-pdp-assure div {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13.5px;
	color: var(--eb-charcoal);
	line-height: 1.5;
}

.eb-pdp-assure svg {
	width: 18px;
	height: 18px;
	flex: none;
	margin-top: 1px;
	stroke: var(--eb-mint-deep);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.eb-wa-big {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 12px;
	background: #25d366;
	color: #fff !important;
	border-radius: 999px;
	padding: 15px 22px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.16s ease;
}

.eb-wa-big:hover {
	background: #1da851;
}

.eb-wa-big svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* --------------------------------------------------------------- float bubble */
.eb-wa-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 999;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25d366;
	display: grid;
	place-items: center;
	box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42);
	transition: transform 0.18s ease;
}

.eb-wa-float:hover {
	transform: scale(1.07);
}

.eb-wa-float svg {
	width: 28px;
	height: 28px;
	fill: #fff;
}

/* ------------------------------------------------------------------- footer */
.eb-foot {
	background: #fff;
	border-top: 1px solid var(--eb-line);
	padding: 46px 0 26px;
	margin-top: 40px;
}

.eb-foot__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 30px;
}

.eb-foot h4 {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--eb-muted);
	margin: 0 0 14px;
	font-weight: 700;
}

.eb-foot ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.eb-foot a {
	color: var(--eb-charcoal);
	text-decoration: none;
	font-size: 14px;
}

.eb-foot a:hover {
	color: var(--eb-mint-deep);
}

.eb-foot__logo img {
	max-width: 150px;
	height: auto;
}

.eb-foot__about {
	font-size: 14px;
	color: var(--eb-muted);
	line-height: 1.65;
	margin: 12px 0 0;
	max-width: 38ch;
}

.eb-foot__bottom {
	margin-top: 30px;
	padding-top: 18px;
	border-top: 1px solid var(--eb-line);
	display: flex;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--eb-muted);
}

/* ------------------------------------------------------------------ responsive */
@media (max-width: 1000px) {
	.eb-cats,
	ul.products,
	.eb-grid,
	.eb-concerns {
		grid-template-columns: repeat(3, 1fr);
	}

	.eb-trust__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.eb-foot__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 820px) {
	.eb-hero__grid,
	.eb-cod {
		grid-template-columns: 1fr;
	}

	.eb-hero__art {
		order: -1;
		max-width: 420px;
	}
}

@media (max-width: 640px) {
	.eb-cats,
	ul.products,
	.eb-grid,
	.eb-concerns {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.eb-section {
		padding: 40px 0;
	}

	.eb-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* ------------------------------------------------------- header / logo trim */
.ct-header [data-id="logo"] .site-title {
	display: none;
}

.ct-header [data-id="logo"] .site-logo-container img,
.site-logo-container img {
	max-height: 130px;
	width: auto;
	/* logo is a trimmed transparent PNG — no blend hack needed, and multiply
	   would darken it on any non-white header background */
}

@media (max-width: 999px) {
	.ct-header [data-id="logo"] .site-logo-container img,
	.site-logo-container img {
		max-height: 96px;
	}
}

@media (max-width: 480px) {
	.ct-header [data-id="logo"] .site-logo-container img,
	.site-logo-container img {
		max-height: 68px;
	}
}

/* Blocksy's own footer is replaced by .eb-foot */
footer.ct-footer {
	display: none;
}

/* category tiles: show the whole pack shot, never crop the name off */
.eb-cat img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: var(--eb-cream);
	padding: 6px;
}

/* woo default sale flash is replaced by .eb-badge */
ul.products li.product .onsale,
.eb-card .onsale {
	display: none;
}

/* ---------------------------------------------------------------------------
   Blocksy prints its palette as inline CSS in <head>, which lands after this
   file. Re-declaring on `body` beats the inherited :root value everywhere.
   --------------------------------------------------------------------------- */
body {
	--theme-palette-color-1: #5fae9c;
	--theme-palette-color-2: #414b47;
	--theme-palette-color-3: #2d3532;
	--theme-palette-color-4: #7b857f;
	--theme-palette-color-5: #e7e5df;
	--theme-palette-color-6: #fbfaf7;
	--theme-palette-color-7: #ffffff;
	--theme-palette-color-8: #ffffff;
	--theme-link-initial-color: var(--eb-mint-deep);
	--theme-link-hover-color: var(--eb-charcoal);
	--theme-button-background-initial-color: var(--eb-charcoal);
	--theme-button-background-hover-color: var(--eb-mint-deep);
	--theme-button-text-initial-color: #ffffff;
	--theme-button-text-hover-color: #ffffff;
	--theme-form-selected-border-color: var(--eb-mint-deep);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wc-block-components-button,
.single_add_to_cart_button {
	background-color: var(--eb-charcoal) !important;
	color: #fff !important;
	border-radius: 999px !important;
	border: 0 !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.wc-block-components-button:hover,
.single_add_to_cart_button:hover {
	background-color: var(--eb-mint-deep) !important;
	color: #fff !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background-color: var(--eb-charcoal) !important;
}

/* sale flash on the single product page */
.single-product .onsale {
	background: var(--eb-sale) !important;
	color: #fff !important;
	border-radius: 999px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	padding: 6px 12px !important;
	min-height: 0 !important;
	min-width: 0 !important;
	line-height: 1.1 !important;
}

/* breadcrumbs, tabs, links */
.woocommerce-breadcrumb a,
.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
	color: var(--eb-mint-deep) !important;
}

.woocommerce-tabs ul.tabs li.active a {
	border-bottom-color: var(--eb-mint-deep) !important;
}

/* quantity + form controls */
.quantity input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	border-radius: 10px !important;
}

/* stock line */
.single-product p.stock.in-stock {
	color: var(--eb-mint-deep);
	font-weight: 600;
}

/* related products heading spacing */
.related.products > h2,
.up-sells > h2 {
	font-size: clamp(21px, 2.4vw, 27px);
	margin-bottom: 20px;
}

/* header stays white regardless of Blocksy palette slots */
.ct-header,
header.ct-header [data-row] {
	background-color: #fff !important;
}

.eb-btn {
	white-space: nowrap;
}

.eb-btn svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex: none;
}

/* ---------------------------------------------------------------------------
   Grid children default to min-width:auto, so long words push the track wider
   than the viewport. Reset it everywhere we lay out with grid.
   --------------------------------------------------------------------------- */
.eb-trust__grid > *,
.eb-cats > *,
.eb-concerns > *,
.eb-foot__grid > *,
.eb-cod > *,
.eb-hero__grid > *,
ul.products > li.product,
.eb-grid > * {
	min-width: 0;
}

.eb-trust__item b,
.eb-trust__item span,
.eb-card__title,
.eb-cat__label b {
	overflow-wrap: anywhere;
}

@media (max-width: 520px) {
	.eb-trust__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.eb-hero__stats {
		gap: 18px 26px;
	}

	.eb-cta-row .eb-btn {
		flex: 1 1 100%;
		justify-content: center;
	}

	.eb-card__actions {
		flex-direction: column;
	}

	.eb-foot__grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}
}

/* Hero collage: image intrinsic width was sizing the tracks (900px), which
   pushed the whole page wider than a phone viewport. */
.eb-hero__art {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
}

.eb-hero__art img {
	min-width: 0;
	min-height: 0;
}

.eb-cats,
.eb-concerns,
ul.products,
.eb-grid,
.eb-trust__grid,
.eb-foot__grid {
	grid-template-columns: repeat(var(--eb-cols, 4), minmax(0, 1fr));
}

.eb-cats { --eb-cols: 4; }
.eb-concerns { --eb-cols: 4; }
ul.products, .eb-grid { --eb-cols: 4; }
.eb-trust__grid { --eb-cols: 5; }
.eb-foot__grid { --eb-cols: 4; }

@media (max-width: 1000px) {
	.eb-cats, .eb-concerns, ul.products, .eb-grid { --eb-cols: 3; }
	.eb-trust__grid { --eb-cols: 3; }
	.eb-foot__grid { --eb-cols: 2; }
}

@media (max-width: 640px) {
	.eb-cats, .eb-concerns, ul.products, .eb-grid { --eb-cols: 2; }
	.eb-trust__grid { --eb-cols: 2; }
}

@media (max-width: 520px) {
	.eb-trust__grid { --eb-cols: 1; }
	.eb-foot__grid { --eb-cols: 1; }
}

/* last-resort guard so nothing can ever scroll the page sideways */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

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

/* ==========================================================================
   Journal — blog archive, cards and the article page
   ========================================================================== */

.eb-blog-hero {
	background:
		radial-gradient(90% 120% at 15% 0%, rgba(142, 204, 190, 0.35) 0%, rgba(142, 204, 190, 0) 60%),
		radial-gradient(80% 110% at 90% 100%, rgba(248, 227, 154, 0.45) 0%, rgba(248, 227, 154, 0) 62%),
		var(--eb-cream);
	padding: clamp(38px, 5vw, 66px) 0 clamp(30px, 4vw, 48px);
	text-align: center;
}

.eb-blog-hero h1 {
	font-size: clamp(30px, 4.4vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 0 0 14px;
	color: var(--eb-ink);
	font-weight: 600;
}

.eb-blog-hero .eb-lead {
	max-width: 60ch;
	margin: 0 auto;
	color: var(--eb-muted);
	font-size: 16.5px;
	line-height: 1.65;
}

/* --------------------------------------------------------- category pills */
.eb-post-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: center;
	margin-bottom: 34px;
}

.eb-pill {
	display: inline-block;
	padding: 8px 17px;
	border-radius: 999px;
	border: 1px solid var(--eb-line);
	background: #fff;
	color: var(--eb-muted);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.16s ease;
}

.eb-pill:hover {
	color: var(--eb-ink);
	border-color: var(--eb-mint);
	background: var(--eb-mint-soft);
}

.eb-pill.is-active {
	background: var(--eb-charcoal);
	border-color: var(--eb-charcoal);
	color: #fff;
}

/* ------------------------------------------------------------ article cards */
.eb-posts {
	display: grid;
	grid-template-columns: repeat(var(--eb-post-cols, 3), minmax(0, 1fr));
	gap: 22px;
}

.eb-post {
	background: #fff;
	border-radius: var(--eb-radius);
	overflow: hidden;
	box-shadow: var(--eb-shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
	min-width: 0;
}

.eb-post:hover {
	transform: translateY(-4px);
	box-shadow: var(--eb-shadow-lift);
}

.eb-post__media {
	position: relative;
	display: block;
	background: var(--eb-mint-soft);
}

.eb-post__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

.eb-post__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	background:
		radial-gradient(70% 90% at 25% 25%, rgba(142, 204, 190, 0.55) 0%, rgba(142, 204, 190, 0) 60%),
		radial-gradient(70% 90% at 80% 75%, rgba(248, 227, 154, 0.6) 0%, rgba(248, 227, 154, 0) 60%),
		var(--eb-cream);
}

.eb-post__cat {
	position: absolute;
	left: 12px;
	top: 12px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--eb-charcoal);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 11px;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}

.eb-post__body {
	padding: 16px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	flex: 1;
}

.eb-post__meta {
	display: flex;
	gap: 7px;
	align-items: center;
	font-size: 12.5px;
	color: var(--eb-muted);
}

.eb-post__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: -0.012em;
	font-weight: 600;
}

.eb-post__title a {
	color: var(--eb-ink);
	text-decoration: none;
}

.eb-post__title a:hover {
	color: var(--eb-mint-deep);
}

.eb-post__excerpt {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--eb-muted);
}

.eb-post__more {
	margin-top: auto;
	padding-top: 6px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--eb-mint-deep);
}

/* ------------------------------------------------------------- pagination */
.eb-pagination {
	margin-top: 38px;
}

.eb-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.eb-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 13px;
	border-radius: 999px;
	border: 1px solid var(--eb-line);
	background: #fff;
	color: var(--eb-charcoal);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.eb-pagination .page-numbers.current,
.eb-pagination .page-numbers:hover {
	background: var(--eb-charcoal);
	border-color: var(--eb-charcoal);
	color: #fff;
}

.eb-empty {
	text-align: center;
	padding: 60px 20px;
	background: #fff;
	border-radius: var(--eb-radius);
	box-shadow: var(--eb-shadow);
}

.eb-empty h2 {
	margin: 0 0 8px;
	font-size: 24px;
	color: var(--eb-ink);
}

.eb-empty p {
	color: var(--eb-muted);
	margin: 0 0 20px;
}

/* ============================================================ article page */
.eb-article__head {
	background: var(--eb-cream);
	padding: clamp(28px, 4vw, 46px) 0 clamp(18px, 2.5vw, 26px);
}

.eb-article__head-inner {
	max-width: 780px;
	text-align: center;
}

.eb-crumbs {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: var(--eb-muted);
	margin-bottom: 16px;
}

.eb-crumbs a {
	color: var(--eb-muted);
	text-decoration: none;
}

.eb-crumbs a:hover {
	color: var(--eb-mint-deep);
}

.eb-article__head h1 {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.14;
	letter-spacing: -0.025em;
	margin: 0 0 14px;
	color: var(--eb-ink);
	font-weight: 600;
}

.eb-article__meta {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: var(--eb-muted);
}

.eb-article__meta a {
	color: var(--eb-mint-deep);
	text-decoration: none;
	font-weight: 600;
}

.eb-article__cover {
	margin: 0 0 34px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--eb-shadow-lift);
	max-width: 940px;
	margin-inline: auto;
}

.eb-article__cover img {
	width: 100%;
	height: auto;
	display: block;
}

.eb-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 46px;
	align-items: start;
	padding-bottom: 20px;
}

.eb-article__body {
	max-width: 720px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--eb-ink);
}

.eb-article__body > * + * {
	margin-top: 1.25em;
}

.eb-article__body h2 {
	font-size: clamp(22px, 2.6vw, 28px);
	line-height: 1.25;
	letter-spacing: -0.018em;
	margin-top: 1.9em;
	color: var(--eb-ink);
	font-weight: 600;
}

.eb-article__body h3 {
	font-size: 19.5px;
	line-height: 1.3;
	margin-top: 1.6em;
	color: var(--eb-ink);
	font-weight: 600;
}

.eb-article__body ul,
.eb-article__body ol {
	padding-left: 1.3em;
}

.eb-article__body li + li {
	margin-top: 0.5em;
}

.eb-article__body a {
	color: var(--eb-mint-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.eb-article__body blockquote {
	margin: 1.8em 0;
	padding: 20px 24px;
	border-left: 3px solid var(--eb-mint);
	background: var(--eb-mint-soft);
	border-radius: 0 12px 12px 0;
	font-size: 17px;
	color: var(--eb-charcoal);
}

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

.eb-article__body img,
.eb-article__body figure img {
	border-radius: 14px;
}

.eb-article__body figcaption {
	font-size: 13px;
	color: var(--eb-muted);
	text-align: center;
	margin-top: 8px;
}

.eb-article__body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.eb-article__body th,
.eb-article__body td {
	border: 1px solid var(--eb-line);
	padding: 10px 12px;
	text-align: left;
}

.eb-article__body th {
	background: var(--eb-mint-soft);
	font-weight: 600;
}

.eb-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 2.4em;
	padding-top: 1.6em;
	border-top: 1px solid var(--eb-line);
}

/* ------------------------------------------------------------ article aside */
.eb-article__aside {
	position: sticky;
	top: 24px;
	display: grid;
	gap: 16px;
}

.eb-aside-card {
	background: #fff;
	border: 1px solid var(--eb-line);
	border-radius: var(--eb-radius);
	padding: 22px 20px;
}

.eb-aside-card--soft {
	background: var(--eb-mint-soft);
	border-color: transparent;
}

.eb-aside-card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	color: var(--eb-ink);
	font-weight: 600;
}

.eb-aside-card p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--eb-muted);
}

.eb-aside-card .eb-btn {
	width: 100%;
	justify-content: center;
}

.eb-comments {
	max-width: 780px;
	padding-block: 40px;
}

/* -------------------------------------------------- homepage journal teaser */
.eb-journal-row .eb-posts {
	--eb-post-cols: 3;
}

/* ------------------------------------------------------------- responsive */
@media (max-width: 1000px) {
	.eb-posts {
		--eb-post-cols: 2;
	}

	.eb-article__layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.eb-article__aside {
		position: static;
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.eb-posts {
		--eb-post-cols: 1;
	}

	.eb-article__aside {
		grid-template-columns: 1fr;
	}

	.eb-article__body {
		font-size: 16.5px;
	}
}

/* Static page content (About, Delivery, Returns, Contact, FAQ block) —
   Blocksy's default heading colour is a navy that is not in our palette. */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.rank-math-block .rank-math-question {
	color: var(--eb-ink);
	letter-spacing: -0.015em;
}

.entry-content a,
.rank-math-block a {
	color: var(--eb-mint-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rank-math-block .rank-math-list-item + .rank-math-list-item {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--eb-line);
}

.rank-math-block .rank-math-answer p {
	color: var(--eb-charcoal);
	line-height: 1.7;
}

/* ==========================================================================
   Chat ordering — WhatsApp + Messenger
   ========================================================================== */

:root {
	--eb-wa: #25d366;
	--eb-wa-deep: #1da851;
	--eb-msgr: #0084ff;
	--eb-msgr-deep: #0066cc;
}

/* ---------------------------------------------------- product page buttons */
.eb-chat-order {
	display: grid;
	gap: 9px;
	margin-top: 12px;
}

.eb-chat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	border-radius: 999px;
	padding: 14px 22px;
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	text-decoration: none;
	transition: background 0.16s ease, transform 0.16s ease;
}

.eb-chat-btn:hover {
	transform: translateY(-1px);
}

.eb-chat-btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	flex: none;
}

.eb-chat-btn--wa {
	background: var(--eb-wa);
	color: #fff !important;
}

.eb-chat-btn--wa:hover {
	background: var(--eb-wa-deep);
}

.eb-chat-btn--msgr {
	background: var(--eb-msgr);
	color: #fff !important;
}

.eb-chat-btn--msgr:hover {
	background: var(--eb-msgr-deep);
}

/* ------------------------------------------------------- floating bubbles */
.eb-chat-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 999;
	display: grid;
	gap: 10px;
	justify-items: center;
}

.eb-chat-float__btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: transform 0.18s ease;
}

.eb-chat-float__btn:hover {
	transform: scale(1.07);
}

.eb-chat-float__btn svg {
	width: 27px;
	height: 27px;
	fill: #fff;
}

.eb-chat-float__btn--wa {
	background: var(--eb-wa);
	box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42);
}

.eb-chat-float__btn--msgr {
	background: var(--eb-msgr);
	box-shadow: 0 6px 22px rgba(0, 132, 255, 0.38);
}

/* footer address line */
.eb-foot__address {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--eb-charcoal);
	font-weight: 600;
	max-width: 32ch;
}

@media (max-width: 520px) {
	.eb-chat-float {
		right: 12px;
		bottom: 12px;
		gap: 8px;
	}

	.eb-chat-float__btn {
		width: 46px;
		height: 46px;
	}

	.eb-chat-float__btn svg {
		width: 24px;
		height: 24px;
	}
}

/* --- Category + brand links appended to each product description --- */
.eb-product-links {
	margin-top: 22px;
	padding-top: 14px;
	border-top: 1px solid var(--eb-line);
	font-size: 14px;
	color: var(--eb-muted);
}

.eb-product-links a {
	color: var(--eb-mint-deep);
	font-weight: 600;
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
}

.eb-product-links a:hover,
.eb-product-links a:focus-visible {
	color: var(--eb-ink);
}

/* --- Expanded product description: inline shot, sub-sections, FAQ --- */
.eb-inline-shot {
	margin: 26px 0;
}

.eb-inline-shot img {
	width: 100%;
	height: auto;
	border-radius: var(--eb-radius, 14px);
	background: var(--eb-cream);
}

#tab-description h3,
.woocommerce-Tabs-panel--description h3,
.eb-desc h3 {
	margin: 32px 0 10px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--eb-ink);
}

#tab-description .rank-math-question {
	font-size: 16px;
	margin: 0 0 6px;
}

#tab-description h4,
.woocommerce-Tabs-panel--description h4,
.eb-desc h4 {
	margin: 20px 0 6px;
	font-size: 16px;
	color: var(--eb-mint-deep);
}

.rank-math-list-item {
	border-top: 1px solid var(--eb-line);
	padding: 14px 0 2px;
}

.rank-math-list-item:first-child {
	border-top: 0;
}

.rank-math-question {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 600;
}

.rank-math-answer p {
	margin: 0 0 10px;
	color: var(--eb-muted);
}

/* ---------------------------------------------------------------------------
   Product gallery — fixed 1:1 preview frame.

   Blocksy sizes the flexy slider from its tallest slide (--flexy-view-height),
   so one portrait shot in a gallery makes the frame portrait and every square
   image gets cover-cropped on the left and right — taking the on-pack badges
   and claim text with it. Locking the frame to 1:1 and switching to `contain`
   keeps every image whole; non-square shots letterbox onto the cream ground.
   --------------------------------------------------------------------------- */
.woocommerce-product-gallery .flexy-view {
	height: auto !important;
	aspect-ratio: 1 / 1;
	background: var(--eb-cream);
	border-radius: var(--eb-radius);
	overflow: hidden;
}

.woocommerce-product-gallery .flexy-items {
	height: 100%;
	align-items: stretch;
}

.woocommerce-product-gallery .flexy-item {
	min-height: 0 !important;
	height: 100%;
	display: flex;
}

.woocommerce-product-gallery .flexy-item > a,
.woocommerce-product-gallery .flexy-item > picture,
.woocommerce-product-gallery .flexy-item > div {
	display: flex;
	width: 100%;
	height: 100%;
}

.woocommerce-product-gallery .flexy-item img {
	width: 100%;
	height: 100%;
	object-fit: contain !important;
	object-position: center !important;
	background: var(--eb-cream);
}

/* gallery thumbnails: show the whole frame rather than a centre crop */
.woocommerce-product-gallery .flexy-pills img,
.woocommerce-product-gallery [data-flexy=thumbs] img {
	object-fit: contain !important;
	background: var(--eb-cream);
}
