/* ==========================================================================
   Bottle Gases - scoped homepage body rebuild
   Header, navigation and footer remain owned by Woodmart / existing child CSS.
   ========================================================================== */

#bg-home {
	--bg-home-navy: #0e2a4d;
	--bg-home-navy-deep: #081f3a;
	--bg-home-blue: #1f64a9;
	--bg-home-blue-soft: #e8f1fb;
	--bg-home-amber: #fa9f03;
	--bg-home-amber-deep: #e08a00;
	--bg-home-cream: #fdf4e1;
	--bg-home-cream-card: #fdeecb;
	--bg-home-surface: #f6f8fb;
	--bg-home-white: #ffffff;
	--bg-home-ink: #101828;
	--bg-home-muted: #667085;
	--bg-home-line: #e2e8f0;
	--bg-home-warm-line: #eadcc1;
	--bg-home-shadow: 0 22px 54px rgba(8, 31, 58, 0.14);
	--bg-home-soft-shadow: 0 14px 34px rgba(8, 31, 58, 0.09);
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	overflow-x: clip;
	background:
		linear-gradient(180deg, rgba(250, 159, 3, 0.08), rgba(255, 255, 255, 0) 360px),
		var(--bg-home-surface);
	color: var(--bg-home-ink);
	font-family: inherit;
}

body.home main#main-content.content-layout-wrapper,
body.home .main-page-wrapper.content-layout-wrapper {
	padding-top: 0;
}

#bg-home,
#bg-home * {
	box-sizing: border-box;
}

#bg-home a {
	color: inherit;
	text-decoration: none;
}

#bg-home img {
	display: block;
	max-width: 100%;
}

#bg-home svg {
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#bg-home .bg-home-wrap {
	width: min(100%, 1400px);
	margin: 0 auto;
	padding: 0 28px;
}

#bg-home .bg-home-section {
	padding: 44px 0;
}

#bg-home .bg-home-hero {
	padding: 18px 0 18px;
}

#bg-home .bg-home-hero__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
	gap: 24px;
	min-height: 650px;
	overflow: hidden;
	border-radius: 24px;
	background: var(--bg-home-navy-deep);
	box-shadow: var(--bg-home-shadow);
}

#bg-home .bg-home-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--bg-home-navy-deep);
}

#bg-home .bg-home-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(1.05) contrast(1.02);
}

#bg-home .bg-home-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(8, 31, 58, 0.96) 0%, rgba(8, 31, 58, 0.86) 35%, rgba(8, 31, 58, 0.54) 63%, rgba(8, 31, 58, 0.24) 100%),
		linear-gradient(180deg, rgba(8, 31, 58, 0.18), rgba(8, 31, 58, 0.54));
}

#bg-home .bg-home-hero__copy,
#bg-home .bg-home-postcode {
	position: relative;
	z-index: 1;
}

#bg-home .bg-home-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 650px;
	padding: 60px 0 60px 56px;
	color: #ffffff;
}

#bg-home .bg-home-kicker {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	margin: 0 0 20px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--bg-home-amber);
	color: var(--bg-home-navy-deep);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0;
}

#bg-home h1,
#bg-home h2,
#bg-home h3 {
	margin: 0;
	color: inherit;
	font-family: inherit;
	letter-spacing: 0;
}

#bg-home h1 {
	max-width: 690px;
	font-size: 64px;
	line-height: 1;
	font-weight: 900;
	color: #ffffff;
}

#bg-home .bg-home-hero__lead {
	max-width: 620px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
	line-height: 1.55;
}

#bg-home .bg-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

#bg-home .bg-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 13px 22px;
	border-radius: 12px;
	border: 1px solid transparent;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

#bg-home .bg-home-btn:hover,
#bg-home .bg-home-link-button:hover,
#bg-home .bg-home-product__cart:hover {
	transform: translateY(-2px);
}

#bg-home .bg-home-btn:focus-visible,
#bg-home a:focus-visible,
#bg-home button:focus-visible,
#bg-home input:focus-visible {
	outline: 3px solid rgba(250, 159, 3, 0.42);
	outline-offset: 3px;
}

#bg-home .bg-home-btn--primary {
	background: var(--bg-home-amber);
	color: var(--bg-home-navy-deep);
	box-shadow: 0 14px 30px rgba(250, 159, 3, 0.28);
}

#bg-home .bg-home-btn--primary:hover {
	background: var(--bg-home-amber-deep);
	color: var(--bg-home-navy-deep);
}

#bg-home .bg-home-btn--ghost {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

#bg-home .bg-home-btn--ghost:hover {
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
}

#bg-home .bg-home-hero__trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 720px;
	margin-top: 30px;
}

#bg-home .bg-home-hero__trust span {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 54px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	backdrop-filter: blur(8px);
}

#bg-home .bg-home-hero__trust svg {
	flex: 0 0 auto;
	color: var(--bg-home-amber);
	font-size: 19px;
}

#bg-home .bg-home-postcode {
	align-self: center;
	margin: 44px 44px 44px 0;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 24px 50px rgba(8, 31, 58, 0.2);
	color: var(--bg-home-ink);
	backdrop-filter: blur(10px);
}

#bg-home .bg-home-postcode__eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	color: #0b7d59;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

#bg-home .bg-home-postcode h2 {
	max-width: 390px;
	font-size: 32px;
	line-height: 1.08;
	font-weight: 900;
	color: var(--bg-home-ink);
}

#bg-home .bg-home-postcode > p:not(.bg-home-postcode__eyebrow) {
	margin: 12px 0 20px;
	color: var(--bg-home-muted);
	font-size: 15px;
	line-height: 1.45;
}

#bg-home .bg-home-postcode__form {
	margin: 0;
	padding: 18px;
	border: 1px solid var(--bg-home-line);
	border-radius: 16px;
	background: #ffffff;
}

#bg-home .bg-home-postcode__form label {
	display: block;
	margin-bottom: 8px;
	color: var(--bg-home-navy);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

#bg-home .bg-home-postcode__row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

#bg-home .bg-home-postcode__input {
	position: relative;
	min-width: 0;
}

#bg-home .bg-home-postcode__pin {
	position: absolute;
	top: 50%;
	left: 13px;
	z-index: 1;
	transform: translateY(-50%);
	color: var(--bg-home-amber);
	font-size: 18px;
	pointer-events: none;
}

#bg-home .bg-home-postcode input {
	width: 100%;
	min-height: 48px;
	padding: 0 14px 0 40px;
	border: 1px solid var(--bg-home-line);
	border-radius: 12px;
	background: #ffffff;
	color: var(--bg-home-ink);
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
}

#bg-home .bg-home-postcode button {
	min-height: 48px;
	padding: 0 20px;
	border: 0;
	border-radius: 12px;
	background: var(--bg-home-amber);
	color: var(--bg-home-navy-deep);
	font: inherit;
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
}

#bg-home .bg-home-postcode button:hover {
	background: var(--bg-home-amber-deep);
}

#bg-home .bg-home-postcode small {
	display: block;
	margin-top: 10px;
	color: var(--bg-home-muted);
	font-size: 12px;
	line-height: 1.4;
}

#bg-home .bg-home-bottle-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

#bg-home .bg-home-bottle-tile {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 76px;
	padding: 12px;
	border: 1px solid var(--bg-home-line);
	border-radius: 14px;
	background: #ffffff;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

#bg-home .bg-home-bottle-tile:hover {
	transform: translateY(-2px);
	border-color: rgba(250, 159, 3, 0.64);
	box-shadow: var(--bg-home-soft-shadow);
}

#bg-home .bg-home-bottle-tile__icon {
	display: grid;
	place-items: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(250, 159, 3, 0.14);
	color: var(--bg-home-amber-deep);
	font-size: 20px;
}

#bg-home .bg-home-bottle-tile strong,
#bg-home .bg-home-bottle-tile small {
	display: block;
	line-height: 1.2;
}

#bg-home .bg-home-bottle-tile strong {
	color: var(--bg-home-ink);
	font-size: 14px;
	font-weight: 900;
}

#bg-home .bg-home-bottle-tile small {
	margin-top: 4px;
	color: var(--bg-home-muted);
	font-size: 12px;
	font-weight: 600;
}

#bg-home .bg-home-strip {
	padding: 18px 0 20px;
}

#bg-home .bg-home-strip__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

#bg-home .bg-home-category-tile {
	position: relative;
	min-height: 132px;
	overflow: hidden;
	border: 1px solid var(--bg-home-warm-line);
	border-radius: 18px;
	background: var(--bg-home-cream-card);
	box-shadow: 0 10px 22px rgba(8, 31, 58, 0.06);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

#bg-home .bg-home-category-tile:hover {
	transform: translateY(-3px);
	box-shadow: var(--bg-home-soft-shadow);
}

#bg-home .bg-home-category-tile--dark {
	background: var(--bg-home-navy);
	border-color: rgba(14, 42, 77, 0.2);
	color: #ffffff;
}

#bg-home .bg-home-category-tile__img {
	position: absolute;
	right: -20px;
	bottom: -18px;
	width: 64%;
	height: 74%;
	object-fit: cover;
	border-radius: 16px 0 0 0;
	opacity: 0.72;
}

#bg-home .bg-home-category-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(253, 238, 203, 0.98) 0%, rgba(253, 238, 203, 0.84) 48%, rgba(253, 238, 203, 0.08) 100%);
}

#bg-home .bg-home-category-tile--dark::after {
	background: linear-gradient(90deg, rgba(14, 42, 77, 0.98) 0%, rgba(14, 42, 77, 0.78) 58%, rgba(14, 42, 77, 0.2) 100%);
}

#bg-home .bg-home-category-tile__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	height: 100%;
	padding: 18px;
}

#bg-home .bg-home-category-tile__content span {
	color: var(--bg-home-amber-deep);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

#bg-home .bg-home-category-tile--dark .bg-home-category-tile__content span {
	color: var(--bg-home-amber);
}

#bg-home .bg-home-category-tile__content strong {
	max-width: 160px;
	margin-top: 6px;
	color: inherit;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 900;
}

#bg-home .bg-home-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

#bg-home .bg-home-section-head h2 {
	font-size: 34px;
	line-height: 1.08;
	font-weight: 900;
	color: var(--bg-home-ink);
}

#bg-home .bg-home-section-head p {
	max-width: 610px;
	margin: 8px 0 0;
	color: var(--bg-home-muted);
	font-size: 15px;
	line-height: 1.5;
}

#bg-home .bg-home-segment {
	display: inline-flex;
	gap: 5px;
	padding: 5px;
	border: 1px solid var(--bg-home-line);
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(8, 31, 58, 0.06);
}

#bg-home .bg-home-segment a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 18px;
	border-radius: 999px;
	color: var(--bg-home-navy);
	font-size: 13px;
	font-weight: 900;
}

#bg-home .bg-home-segment .is-active {
	background: var(--bg-home-blue);
	color: #ffffff;
}

#bg-home .bg-home-moment-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

#bg-home .bg-home-moment-card,
#bg-home .bg-home-service-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 250px;
	overflow: hidden;
	border-radius: 18px;
	background: var(--bg-home-navy);
	box-shadow: var(--bg-home-soft-shadow);
}

#bg-home .bg-home-moment-card {
	grid-column: span 2;
}

#bg-home .bg-home-moment-card--wide {
	grid-column: span 4;
}

#bg-home .bg-home-moment-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

#bg-home .bg-home-moment-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(8, 31, 58, 0.08) 16%, rgba(8, 31, 58, 0.9) 100%),
		linear-gradient(90deg, rgba(8, 31, 58, 0.72), rgba(8, 31, 58, 0.08));
}

#bg-home .bg-home-moment-card:hover .bg-home-moment-card__img {
	transform: scale(1.045);
}

#bg-home .bg-home-moment-card__content,
#bg-home .bg-home-service-card {
	position: relative;
	z-index: 1;
}

#bg-home .bg-home-moment-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	padding: 24px;
	color: #ffffff;
}

#bg-home .bg-home-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 27px;
	padding: 0 11px;
	border-radius: 999px;
	background: var(--bg-home-amber);
	color: var(--bg-home-navy-deep);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

#bg-home .bg-home-chip--dark {
	background: var(--bg-home-navy-deep);
	color: #ffffff;
}

#bg-home .bg-home-moment-card strong,
#bg-home .bg-home-service-card strong {
	max-width: 520px;
	font-size: 28px;
	line-height: 1.08;
	font-weight: 900;
}

#bg-home .bg-home-moment-card small,
#bg-home .bg-home-service-card small {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
}

#bg-home .bg-home-service-card {
	grid-column: span 2;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 12px;
	padding: 24px;
	background:
		radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.24), transparent 28%),
		linear-gradient(135deg, var(--bg-home-amber), #ffb52c);
	color: var(--bg-home-navy-deep);
}

#bg-home .bg-home-service-card small {
	color: var(--bg-home-navy-deep);
}

#bg-home .bg-home-products {
	padding-top: 20px;
}

#bg-home .bg-home-link-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 12px;
	background: var(--bg-home-blue);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	box-shadow: 0 12px 24px rgba(31, 100, 169, 0.18);
	transition: transform 160ms ease, background 160ms ease;
}

#bg-home .bg-home-link-button:hover {
	background: var(--bg-home-navy);
	color: #ffffff;
}

#bg-home .bg-home-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

#bg-home .bg-home-product-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--bg-home-line);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(8, 31, 58, 0.07);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

#bg-home .bg-home-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bg-home-soft-shadow);
}

#bg-home .bg-home-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

#bg-home .bg-home-product-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 18px;
}

#bg-home .bg-home-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
	border-top: 1px solid var(--bg-home-line);
}

#bg-home .bg-home-product-card h3 {
	display: -webkit-box;
	min-height: 64px;
	max-height: 64px;
	margin: 0 0 14px;
	overflow: hidden;
	color: var(--bg-home-ink);
	font-size: 16px;
	line-height: 1.28;
	font-weight: 900;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

#bg-home .bg-home-product-card h3 a:hover {
	color: var(--bg-home-blue);
}

#bg-home .bg-home-product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 44px;
	margin-top: auto;
}

#bg-home .bg-home-product-card__price {
	color: var(--bg-home-amber-deep);
	font-size: 17px;
	font-weight: 900;
	line-height: 1.2;
}

#bg-home .bg-home-product-card__price del {
	color: var(--bg-home-muted);
	font-size: 13px;
	font-weight: 600;
}

#bg-home .bg-home-product__cart,
#bg-home .bg-home-product__cart.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin: 0;
	padding: 0 14px;
	border: 0;
	border-radius: 10px;
	background: var(--bg-home-navy);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	box-shadow: none;
	text-transform: none;
	transition: transform 160ms ease, background 160ms ease;
}

#bg-home .bg-home-product__cart:hover,
#bg-home .bg-home-product__cart.button:hover {
	background: var(--bg-home-blue);
	color: #ffffff;
}

#bg-home .bg-home-seo-section {
	padding-top: 20px;
}

#bg-home .bg-home-seo {
	border: 1px solid var(--bg-home-warm-line);
	border-radius: 22px;
	background: #ffffff;
	padding: 44px;
	box-shadow: 0 12px 30px rgba(8, 31, 58, 0.06);
}

#bg-home .bg-home-seo h2 {
	max-width: 900px;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 900;
	color: var(--bg-home-ink);
}

#bg-home .bg-home-seo h3 {
	margin-top: 24px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 900;
	color: var(--bg-home-navy);
}

#bg-home .bg-home-seo p {
	max-width: 1020px;
	margin: 14px 0 0;
	color: #39495c;
	font-size: 16px;
	line-height: 1.72;
}

#bg-home .bg-home-seo a {
	color: var(--bg-home-navy);
	font-weight: 900;
	text-decoration: underline;
	text-decoration-color: var(--bg-home-amber);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

#bg-home .bg-home-seo a:hover {
	color: var(--bg-home-amber-deep);
}

#bg-home .bg-home-seo__cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px;
}

#bg-home .bg-home-how {
	padding-top: 20px;
}

#bg-home .bg-home-how__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
	gap: 18px;
}

#bg-home .bg-home-how__lead,
#bg-home .bg-home-steps article {
	border-radius: 20px;
	box-shadow: 0 12px 28px rgba(8, 31, 58, 0.06);
}

#bg-home .bg-home-how__lead {
	padding: 38px;
	background:
		radial-gradient(circle at 90% 0%, rgba(250, 159, 3, 0.24), transparent 30%),
		var(--bg-home-navy-deep);
	color: #ffffff;
}

#bg-home .bg-home-how__lead h2 {
	max-width: 460px;
	font-size: 36px;
	line-height: 1.08;
	font-weight: 900;
}

#bg-home .bg-home-how__lead p {
	margin: 15px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 16px;
	line-height: 1.58;
}

#bg-home .bg-home-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

#bg-home .bg-home-steps article {
	padding: 28px 22px;
	border: 1px solid var(--bg-home-line);
	background: #ffffff;
}

#bg-home .bg-home-steps span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(250, 159, 3, 0.16);
	color: var(--bg-home-amber-deep);
	font-size: 14px;
	font-weight: 900;
}

#bg-home .bg-home-steps h3 {
	color: var(--bg-home-ink);
	font-size: 18px;
	line-height: 1.16;
	font-weight: 900;
}

#bg-home .bg-home-steps p {
	margin: 9px 0 0;
	color: var(--bg-home-muted);
	font-size: 14px;
	line-height: 1.48;
}

#bg-home .bg-home-guides {
	padding-top: 20px;
	padding-bottom: 66px;
}

#bg-home .bg-home-guides__panel {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
	gap: 34px;
	align-items: center;
	padding: 42px;
	border-radius: 24px;
	background:
		radial-gradient(circle at 78% 8%, rgba(250, 159, 3, 0.26), transparent 25%),
		linear-gradient(135deg, var(--bg-home-navy-deep), #071522);
	color: #ffffff;
	box-shadow: var(--bg-home-shadow);
}

#bg-home .bg-home-guides__panel h2 {
	font-size: 36px;
	line-height: 1.08;
	font-weight: 900;
}

#bg-home .bg-home-guides__panel p {
	max-width: 420px;
	margin: 14px 0 24px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 15px;
	line-height: 1.6;
}

#bg-home .bg-home-guide-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

#bg-home .bg-home-guide-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 220px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: var(--bg-home-navy);
	transition: transform 160ms ease, border-color 160ms ease;
}

#bg-home .bg-home-guide-card:hover {
	transform: translateY(-3px);
	border-color: rgba(250, 159, 3, 0.62);
}

#bg-home .bg-home-guide-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.88;
}

#bg-home .bg-home-guide-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 31, 58, 0.04) 20%, rgba(8, 31, 58, 0.9) 100%);
}

#bg-home .bg-home-guide-card strong {
	position: relative;
	z-index: 1;
	padding: 18px;
	color: #ffffff;
	font-size: 17px;
	line-height: 1.15;
	font-weight: 900;
}

#bg-home .bg-home-img-fallback {
	display: block;
	background:
		linear-gradient(135deg, rgba(250, 159, 3, 0.2), rgba(31, 100, 169, 0.24)),
		var(--bg-home-blue-soft);
}

@media (max-width: 1199px) {
	#bg-home .bg-home-wrap {
		padding: 0 22px;
	}

	#bg-home .bg-home-hero__panel {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	#bg-home .bg-home-hero__copy {
		min-height: 520px;
		padding: 46px 42px 0;
	}

	#bg-home .bg-home-postcode {
		margin: 0 42px 42px;
	}

	#bg-home .bg-home-strip__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	#bg-home .bg-home-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#bg-home .bg-home-how__grid,
	#bg-home .bg-home-guides__panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	#bg-home h1 {
		font-size: 52px;
	}

	#bg-home .bg-home-hero__trust,
	#bg-home .bg-home-seo__cols,
	#bg-home .bg-home-steps,
	#bg-home .bg-home-guide-cards {
		grid-template-columns: 1fr;
	}

	#bg-home .bg-home-moment-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#bg-home .bg-home-moment-card,
	#bg-home .bg-home-moment-card--wide,
	#bg-home .bg-home-service-card {
		grid-column: span 1;
	}

	#bg-home .bg-home-section-head {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 680px) {
	#bg-home .bg-home-wrap {
		padding: 0 16px;
	}

	#bg-home .bg-home-hero {
		padding-top: 10px;
	}

	#bg-home .bg-home-hero__panel {
		border-radius: 18px;
	}

	#bg-home .bg-home-hero__copy {
		min-height: 500px;
		padding: 36px 22px 0;
	}

	#bg-home h1 {
		font-size: 42px;
		line-height: 1.03;
	}

	#bg-home .bg-home-hero__lead {
		font-size: 16px;
	}

	#bg-home .bg-home-hero__actions,
	#bg-home .bg-home-postcode__row {
		grid-template-columns: 1fr;
	}

	#bg-home .bg-home-hero__actions {
		display: grid;
	}

	#bg-home .bg-home-btn {
		width: 100%;
	}

	#bg-home .bg-home-postcode {
		margin: 0 16px 22px;
		padding: 20px;
		border-radius: 18px;
	}

	#bg-home .bg-home-postcode h2,
	#bg-home .bg-home-section-head h2,
	#bg-home .bg-home-seo h2,
	#bg-home .bg-home-how__lead h2,
	#bg-home .bg-home-guides__panel h2 {
		font-size: 28px;
	}

	#bg-home .bg-home-postcode button {
		width: 100%;
	}

	#bg-home .bg-home-bottle-grid,
	#bg-home .bg-home-strip__grid,
	#bg-home .bg-home-moment-grid,
	#bg-home .bg-home-products__grid {
		grid-template-columns: 1fr;
	}

	#bg-home .bg-home-category-tile {
		min-height: 124px;
	}

	#bg-home .bg-home-moment-card,
	#bg-home .bg-home-service-card {
		min-height: 230px;
	}

	#bg-home .bg-home-moment-card strong,
	#bg-home .bg-home-service-card strong {
		font-size: 24px;
	}

	#bg-home .bg-home-seo,
	#bg-home .bg-home-how__lead,
	#bg-home .bg-home-guides__panel {
		padding: 26px;
		border-radius: 18px;
	}

	#bg-home .bg-home-product-card__meta {
		align-items: stretch;
		flex-direction: column;
		min-height: 82px;
	}

	#bg-home .bg-home-product__cart,
	#bg-home .bg-home-product__cart.button {
		width: 100%;
		min-height: 44px;
	}
}
