/* =========================================================================
   Essentials theme

   Values here are matched to the live staging build (leadgenerashop):
   style.css, css/nav.css, css/home.css. Where the original relied on
   Bootstrap 5.0.2 the equivalent metrics are reproduced directly, so the
   framework itself is not shipped.
   ========================================================================= */

:root {
	--brand: #FFE100;
	--ink: #000000;
	--muted: #4A4A4A;
	--nav-link: #4D4D4D;
	--surface: #F8F8F8;
	--accent: #02343F;
	--flyout: #F1F1F1;
	--line: #E6E6E6;
	--white: #FFFFFF;
	--footer-link: #B7B7B7;
	--footer-legal: #C0C0C0;

	/* Bootstrap 5 container ladder, reproduced. */
	--container: 1320px;
	--container-narrow: 820px;
	--gutter: 12px;

	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ------------------------------------------------------------------ Base */

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

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

body {
	margin: 0;
	min-width: 320px;
	font-family: var(--font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
	clear: both;
	margin: 0 0 .5rem;
	font-family: var(--font);
	font-weight: 600;
	line-height: normal;
}

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

button { font: inherit; cursor: pointer; }

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

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 1rem; left: 1rem;
	z-index: 9999;
	width: auto; height: auto;
	padding: .75rem 1.25rem;
	background: var(--brand);
	color: var(--ink);
	clip: auto;
	clip-path: none;
}

/* ------------------------------------------------------------- Container */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--container-narrow); }
.container--fluid { max-width: none; padding-inline: 0; }

@media (max-width: 1400px) { :root { --container: 1140px; } }
@media (max-width: 1200px) { :root { --container: 960px; } }
@media (max-width: 992px)  { :root { --container: 720px; } }
@media (max-width: 768px)  { :root { --container: 540px; } }
@media (max-width: 576px)  { :root { --container: 100%; } }

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

/* Square, fixed-width, 2px border — as per style.css .btn-black/.btn-yellow. */
.btn {
	display: inline-block;
	width: 200px;
	max-width: 100%;
	padding: .5rem .75rem;
	border: 2px solid var(--ink);
	border-radius: 0;
	background: var(--ink);
	color: var(--white);
	font-family: var(--font);
	font-size: 17px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
	transition: background-color .15s ease, color .15s ease;
}

.btn:hover { background: var(--white); color: var(--ink); }

.btn--primary {
	background: var(--brand);
	border-color: var(--brand);
	color: var(--ink);
}

.btn--primary:hover { background: var(--white); color: var(--ink); }

.btn--dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--white); color: var(--ink); }

.btn--block { width: 100%; }

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

.site-header {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	z-index: 999;
	background: var(--white);
}

/* Announcement bar — yellow, black uppercase text. */
.header-announce { background: var(--brand); padding: 10px 0; }

.header-announce p,
.header-announce a {
	margin: 0;
	color: var(--ink);
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	display: block;
}

/* Search / logo / actions row. */
.header-main__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 50px;
	max-width: none;
}

.header-search { width: 35%; padding-right: 50px; }

.header-logo { width: 30%; }

.header-logo__img {
	margin: 0 auto;
	display: block;
	width: 100%;
	width: auto;
	max-height: 74px;
	max-width: 332px;
}

.header-actions {
	width: 35%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-actions__group { display: flex; align-items: center; }

.header-actions__link,
.header-account {
	display: flex;
	align-items: center;
	margin-right: 30px;
}

.header-actions__link svg,
.header-account svg { color: var(--ink); margin-right: 10px; flex: 0 0 auto; }

.header-actions__link a,
.header-account a {
	color: var(--muted);
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	text-decoration: underline;
}

.header-actions__link > span,
.header-account > span { color: var(--muted); font-size: 15px; }

.header-account__or { margin: 0 5px; }

/* Basket pill. */
.header-basket {
	border-radius: 5px;
	border: 1px solid var(--ink);
	background: var(--white);
	padding: 10px;
}

.header-basket__link { display: flex; align-items: center; text-decoration: none; }
.header-basket__link svg { color: var(--ink); margin-right: 10px; }

.header-basket__text {
	color: var(--muted);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	margin-right: 10px;
}

.header-basket__count {
	width: 25px; height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
}

/* Primary navigation. */
.header-nav { display: flex; justify-content: center; margin: 0 auto; }

.primary-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu li { position: relative; }

.primary-menu > li > a,
.primary-menu a {
	display: block;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	color: var(--nav-link);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .6px;
	text-transform: none;
	text-decoration: none;
}

.primary-menu > li > a:hover,
.primary-menu > li.is-open > a { background: #BABABA; }

.primary-menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0; height: 0;
	margin-left: 7px;
	vertical-align: middle;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
}

/* Flyout sub-menus — 250px, #f1f1f1, per the Max Mega Menu config. */
.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999;
	display: none;
	width: 250px;
	max-width: none;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--flyout);
	border: 0;
	border-radius: 0;
}

.primary-menu .sub-menu .sub-menu { top: 0; left: 100%; }

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu,
.primary-menu li.is-open > .sub-menu { display: block; }

.primary-menu .sub-menu a {
	height: auto;
	line-height: 1.4;
	padding: 10px;
	color: var(--nav-link);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .6px;
}

.primary-menu .sub-menu a:hover { background: #E4E4E4; }

.primary-menu .sub-menu .menu-item-has-children > a::after {
	float: right;
	margin-top: .45em;
	border-left: 5px solid currentColor;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-right: 0;
}

.header-nav__empty { padding: .75rem 0; margin: 0; font-size: .875rem; }

/* USP strip — light grey, not yellow. */
.header-usps { background: var(--surface); padding: 10px 300px; }

.header-usps__track {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.header-usps__item {
	display: flex !important;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.header-usps__item svg { width: 16px; height: 16px; margin-right: 10px; color: var(--ink); }

.header-usps__item span {
	color: #3B3B3B;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

.header-burger {
	display: none;
	padding: .4rem;
	border: 1px solid var(--line);
	border-radius: 0;
	background: transparent;
}

/* The header is fixed; push the page down by its height. */
.site-content { margin-top: 208px; }

/* ----------------------------------------------------------- Live search */

.search-form {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #CCC;
	border-radius: 4px;
	background: var(--white);
}

.search-form__field {
	flex: 1;
	min-width: 0;
	padding: .55rem .75rem;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 15px;
	color: inherit;
}

.search-form__field:focus { outline: none; }

.search-form__submit {
	display: grid;
	place-items: center;
	padding: .4rem .7rem;
	border: 0;
	background: transparent;
	color: var(--ink);
}

.search-form__results {
	position: absolute;
	top: calc(100% + 4px);
	left: 0; right: 0;
	z-index: 1000;
	max-height: 70vh;
	overflow-y: auto;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}

.search-results { list-style: none; margin: 0; padding: 0; }
.search-results__item + .search-results__item { border-top: 1px solid var(--line); }
.search-results__item a { display: flex; gap: .75rem; align-items: center; padding: .6rem .75rem; }

.search-results__item img,
.search-results__placeholder {
	width: 46px; height: 46px;
	flex: 0 0 46px;
	object-fit: contain;
	background: var(--surface);
}

.search-results__text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.search-results__title { font-size: 14px; letter-spacing: .56px; }
.search-results__price { font-size: 14px; font-weight: 700; }

.search-results__all,
.search-results__empty {
	display: block;
	margin: 0;
	padding: .65rem .75rem;
	font-size: 14px;
	text-align: center;
	border-top: 1px solid var(--line);
}

/* ------------------------------------------------------- Section shells */

/*
 * overflow-x: clip (not hidden) contains the horizontally scrolling carousels
 * without turning the section into a scroll container, so sticky/absolute
 * children keep working. The fixed header sits outside .section, so it is
 * unaffected.
 */
.section {
	position: relative;
	overflow-x: clip;
}

/* home.css uses a flat 50px block rhythm. */
.section--space-none  { padding: 0; }
.section--space-small { padding: 20px 0; }
.section--space-base  { padding: 50px 0; }
.section--space-large { padding: 80px 0; }

.section--bg-surface { background: var(--surface); }
.section--bg-ink     { background: var(--ink); color: var(--white); }
.section--bg-brand   { background: var(--brand); color: var(--ink); }

/* Centred heading with the short yellow rule beneath. */
.section__header { text-align: center; }

.section__heading {
	margin: 0;
	color: var(--ink);
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	line-height: normal;
}

.section--bg-ink .section__heading { color: var(--white); }

.section__rule {
	margin: 50px auto;
	height: 3px;
	width: 100px;
	background: var(--brand);
	border: 0;
}

.section__link {
	display: inline-block;
	margin-top: 1rem;
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline;
}

.section-heading--left .section__header,
.section-heading--left .section__heading { text-align: left; }

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

.hero { padding: 20px 0; }

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 24px;
	align-items: stretch;
}

.hero__slider { position: relative; }

.hero__track { position: relative; display: grid; height: 100%; }

.hero__slide {
	grid-area: 1 / 1;
	display: flex !important;
	align-items: center;
	min-height: 340px;
	padding: 50px 150px 50px 50px;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s ease;
}

.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__content {
	border-radius: 5px;
	background: rgba(255, 255, 255, .8);
	padding: 30px;
	height: fit-content;
	max-width: 640px;
}

.hero__slide--light .hero__content { background: rgba(0, 0, 0, .55); color: var(--white); }
.hero__slide--light .hero__heading,
.hero__slide--light .hero__text { color: var(--white); }

.hero__heading {
	margin: 0 0 20px;
	color: var(--ink);
	font-size: 30px;
	font-weight: 600;
	line-height: normal;
}

.hero__text {
	margin: 0 0 20px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 400;
	line-height: 23px;
}

.hero__dots {
	position: absolute;
	bottom: 14px; left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
}

.hero__dot {
	width: 10px; height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, .3);
}

.hero__dot.is-active { background: var(--ink); }

/* Promo panel — grey with the dashed inner frame. */
.hero__promo { background: var(--surface); padding: 50px; height: 100%; }

.hero__promo-frame {
	display: flex;
	align-items: center;
	gap: 20px;
	border: 2px dashed #B7B7B7;
	padding: 10px;
	height: 100%;
}

.hero__promo-image { width: 100%; max-width: 265px; aspect-ratio: 1 / 1; object-fit: cover; }

.hero__promo-body { width: 100%; }

.hero__promo-title {
	margin: 0 0 .25rem;
	color: var(--ink);
	font-size: 28px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
}

.hero__promo-subtitle,
.hero__promo-text {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	text-align: center;
}

.hero__promo-text { color: var(--accent); font-size: 16px; font-weight: 600; line-height: 23px; margin-top: .5rem; }

.hero__promo .btn { margin: 20px auto 0; display: block; }

@media (max-width: 1450px) {
	.hero__promo-frame { flex-direction: column; }
}

@media (max-width: 1200px) {
	.hero__promo-frame { flex-direction: row; }
}

@media (max-width: 767px) {
	.hero__promo-frame { flex-direction: column; }
	.hero__promo-image { display: none; }
}

/* ------------------------------------------------------- Category strip */

.category-grid__list {
	display: grid;
	grid-template-columns: repeat(var(--cols, 6), minmax(0, 1fr));
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.category-card { display: block; text-decoration: none; }

.category-card__media { display: block; }

.category-card__image,
.category-card__placeholder {
	aspect-ratio: 1 / 1;
	max-width: 185px;
	width: 100%;
	margin: 0 auto;
	display: block;
	object-fit: cover;
	background: var(--surface);
}

.category-card__title {
	display: block;
	margin-top: 20px;
	color: var(--ink);
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: .6px;
	text-transform: uppercase;
}

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

.product-carousel { position: relative; }

.product-carousel__track {
	display: grid;
	grid-auto-flow: column;
	/* Fixed track width so the row overflows and scrolls rather than
	   squeezing every product into the viewport. */
	grid-auto-columns: calc(25% - 15px);
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: .5rem;
}

.product-carousel__item { scroll-snap-align: start; }

.product-carousel__nav {
	position: absolute;
	top: 35%;
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border: 1px solid var(--line);
	border-radius: 0;
	background: var(--white);
}

.product-carousel__nav--prev { left: -20px; transform: rotate(180deg); }
.product-carousel__nav--next { right: -20px; }

/* Cards are borderless on the live build: image, title, price, block button. */
.product-card { display: flex; flex-direction: column; height: 100%; }

.product-card__media { position: relative; display: block; }

.product-card__media img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	width: 100%;
	background: var(--white);
}

.product-card__badge {
	position: absolute;
	top: 0; left: 0;
	padding: .2rem .5rem;
	background: var(--brand);
	color: var(--ink);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.product-card__body { display: flex; flex-direction: column; flex: 1; }

.product-card__title {
	margin: 10px 0 0;
	color: var(--ink);
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: .64px;
	min-height: 60px;
}

.product-card__price {
	margin: 15px 0 20px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: .6px;
}

.product-card__price del { font-weight: 400; color: var(--muted); margin-right: .35rem; }
.product-card__price ins { text-decoration: none; }
.product-card__price--hidden a,
.price-locked { font-size: 14px; font-weight: 600; text-decoration: underline; }

.product-card .btn { width: 100%; margin-top: auto; }

/* -------------------------------------------------------------- Explore */

.explore { padding: 50px 0 20px; }

.explore__grid {
	display: grid;
	grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr));
	gap: 24px;
}

.explore__panel { display: flex; flex-direction: column; }

.explore__image {
	width: 100%;
	height: auto;
	aspect-ratio: 736 / 445;
	object-fit: cover;
	margin-bottom: 20px;
}

.explore__heading {
	margin: 0 0 .5rem;
	color: var(--ink);
	font-size: 28px;
	font-weight: 600;
	line-height: normal;
}

.explore__text {
	color: var(--ink);
	font-size: 16px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 1rem;
}

/* --------------------------------------------------------- Content+image */

.content-image { background: var(--ink); overflow: hidden; }

.content-image__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	max-width: none;
	padding: 0;
	gap: 0;
}

.content-image--right .content-image__body { order: 1; }
.content-image--right .content-image__media { order: 2; }
.content-image--left .content-image__body { order: 2; }
.content-image--left .content-image__media { order: 1; }

.content-image__body { padding: 0 160px 0 200px; }

.content-image__heading {
	color: var(--white);
	font-size: 30px;
	font-weight: 600;
	line-height: normal;
}

.content-image__content { color: var(--white); font-size: 16px; font-weight: 400; line-height: 23px; }
.content-image__content p:last-child { margin-bottom: 1rem; }
.content-image__image { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1500px) { .content-image__body { padding: 0 100px; } }
@media (max-width: 1200px) { .content-image__body { padding: 0 50px 50px; } }
@media (max-width: 576px)  { .content-image__body { padding: 0 15px 50px; } }

/* ------------------------------------------------------------ USP strip */

.usp-strip__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.usp-strip__item { display: flex; align-items: center; }
.usp-strip__item a { display: flex; align-items: center; }
.usp-strip__item svg { margin-right: 10px; color: var(--ink); }

.usp-strip__item span {
	color: #3B3B3B;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}

/* ------------------------------------------------------------------ FAQ */

.faq__list { display: grid; gap: 10px; }

.faq__item { border: 1px solid var(--line); background: var(--white); }

.faq__question { margin: 0; font-size: 16px; }

.faq__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 16px 20px;
	border: 0;
	background: transparent;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .64px;
}

.faq__chevron { transform: rotate(90deg); transition: transform .2s ease; flex: 0 0 auto; }
.faq__trigger[aria-expanded="true"] .faq__chevron { transform: rotate(-90deg); }
.faq__answer { padding: 0 20px 20px; font-size: 16px; line-height: 23px; }

/* ----------------------------------------------------------- Brand grid */

.brand-grid__jump { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 30px; justify-content: center; }

.brand-grid__jump a {
	display: grid;
	place-items: center;
	min-width: 34px;
	padding: 6px 10px;
	border: 1px solid var(--line);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .6px;
}

.brand-grid__jump a:hover { background: var(--brand); }

.brand-grid__letter { margin: 30px 0 15px; font-size: 20px; font-weight: 700; letter-spacing: .8px; }

.brand-grid__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 20px;
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.brand-card {
	display: grid;
	place-items: center;
	min-height: 110px;
	padding: 15px;
	border: 1px solid var(--line);
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .6px;
	text-transform: uppercase;
}

.brand-card:hover { border-color: var(--ink); }
.brand-card__logo { max-height: 80px; width: auto; object-fit: contain; }

/* ------------------------------------------------------------ Post grid */

.post-grid__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.post-card { display: flex; flex-direction: column; }
.post-card__media { display: block; aspect-ratio: 736 / 445; background: var(--surface); margin-bottom: 20px; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__placeholder { display: block; width: 100%; height: 100%; }
.post-card__body { display: flex; flex-direction: column; flex: 1; }
.post-card__date { margin: 0 0 .35rem; font-size: 14px; color: var(--muted); }
.post-card__title { margin: 0 0 .5rem; font-size: 22px; font-weight: 600; }
.post-card__excerpt { color: var(--ink); font-size: 16px; line-height: 23px; }
.post-card__more { margin-top: auto; font-weight: 500; text-decoration: underline; }

/* ----------------------------------------------------------- CTA banner */

.cta-banner { position: relative; display: grid; }
.cta-banner--image { color: var(--white); }
.cta-banner__media { grid-area: 1 / 1; }
.cta-banner__image { width: 100%; height: 100%; object-fit: cover; }

.cta-banner__inner {
	grid-area: 1 / 1;
	position: relative;
	display: grid;
	justify-items: center;
	text-align: center;
	padding-block: 50px;
}

.cta-banner--image .cta-banner__inner { background: rgba(0, 0, 0, .45); }
.cta-banner__heading { margin: 0 0 .5rem; font-size: 30px; font-weight: 600; }
.cta-banner__text { margin: 0 0 1.25rem; max-width: 44rem; font-size: 16px; line-height: 23px; }

/* --------------------------------------------------------- Page / posts */

.page-article__header { padding-block: 30px 0; }
.page-article__title { margin: .5rem 0 0; font-size: 30px; font-weight: 600; }
.page-article--contained > .page-article__content {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding: 50px var(--gutter);
}
.page-article--full > .page-article__content { padding: 0; }

.single-post__header { padding-block: 50px 20px; text-align: center; }
.single-post__date { color: var(--muted); font-size: 14px; margin: 0 0 .5rem; }
.single-post__title { font-size: 30px; font-weight: 600; }
.single-post__media { margin-bottom: 30px; }
.single-post__content { padding-bottom: 50px; font-size: 16px; line-height: 23px; }

.archive-header { padding-block: 50px 20px; text-align: center; }
.archive-header__title { margin: 0; font-size: 30px; font-weight: 600; }
.archive-empty { padding-block: 50px; }

.pagination { display: flex; justify-content: center; padding-block: 50px; }
.pagination .nav-links { display: flex; gap: 5px; flex-wrap: wrap; }

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px; height: 40px;
	padding: 0 .6rem;
	border: 1px solid var(--line);
	font-size: 15px;
	font-weight: 500;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--brand); border-color: var(--brand); }

.error-404 { padding-block: 80px; text-align: center; }
.error-404__title { font-size: 30px; font-weight: 600; }
.error-404__text { color: var(--muted); margin-bottom: 30px; }
.error-404 .btn + .btn { margin-left: 10px; }

.breadcrumbs { font-size: 14px; color: var(--muted); padding-block: 15px; }
.breadcrumbs__sep { margin: 0 .4rem; }

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

.site-footer { background: var(--ink); padding: 50px 0 10px; color: var(--white); }

.site-footer__brand { text-align: center; }
.site-footer__logo { margin: 0 auto 30px; display: block; max-height: 74px; width: auto; }

.site-footer__contact {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	gap: 10px;
}

.site-footer__icon,
.site-footer__socials a { color: var(--footer-link); margin: 0 5px; text-decoration: none; }

.site-footer__icon:hover,
.site-footer__socials a:hover { color: var(--brand); }

.site-footer__icon svg,
.site-footer__socials svg { width: 15px; height: 15px; }

.site-footer__socials { display: flex; align-items: center; gap: 0; }

.site-footer__columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.site-footer__heading {
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: .72px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.site-footer__menu { padding: 0; margin: 0; list-style: none; display: grid; gap: .25rem; }

.site-footer__menu a {
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: .64px;
	text-decoration: none;
}

.site-footer__menu a:hover { color: var(--brand); }

.site-footer__payments { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.site-footer__payment { max-height: 30px; width: auto; }

.site-footer__legal { margin-top: 50px; }

.site-footer__legal p {
	margin: 0;
	color: var(--footer-legal);
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
}

/* ------------------------------------------------------- Editor helpers */

.block-placeholder {
	display: grid;
	place-items: center;
	min-height: 120px;
	padding: 2rem;
	border: 2px dashed var(--line);
	color: var(--muted);
	font-size: 14px;
	text-align: center;
}

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

@media (max-width: 1400px) {
	.header-usps { padding: 10px 200px; }
}

@media (max-width: 1300px) {
	.hero__slide { padding: 40px 60px 40px 40px; }
}

@media (max-width: 1200px) {
	.header-usps { padding: 10px 50px; }
	.header-search { display: none !important; }
	.header-actions { width: 20%; }
	.header-logo { width: 50%; }
	.header-actions__link span,
	.header-account,
	.header-basket__text { display: none; }
	.header-burger { display: grid; }

	.header-nav { display: none; }
	.header-nav.is-open { display: block; width: 100%; background: var(--white); border-top: 1px solid var(--line); max-height: 70vh; overflow-y: auto; }
	.primary-menu { flex-direction: column; }
	.primary-menu > li { border-bottom: 1px solid var(--line); }
	.primary-menu .sub-menu { position: static; display: block; width: 100%; background: transparent; padding-left: 15px; }
	.primary-menu .sub-menu .sub-menu { padding-left: 15px; }

	.site-content { margin-top: 150px; }

	.hero__inner { grid-template-columns: 1fr; }
	.content-image__inner { grid-template-columns: 1fr; }
	.content-image--left .content-image__body,
	.content-image--right .content-image__body { order: 2; }
	.content-image--left .content-image__media,
	.content-image--right .content-image__media { order: 1; }
	.explore__grid { grid-template-columns: 1fr; }
	.product-carousel__track { grid-auto-columns: calc(33.333% - 14px); }
	.product-carousel__nav { display: none; }
	.category-grid__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.site-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
	.header-usps__track { justify-content: flex-start; overflow-x: auto; }
	.header-usps__item { flex: 0 0 auto; }
	.product-carousel__track { grid-auto-columns: calc(50% - 10px); }
}

@media (max-width: 600px) {
	.header-main__inner { padding: 10px; }
	.header-usps { padding: 10px 15px; }
	.hero__slide { background-image: none !important; flex-direction: column; padding: 0; }
	.hero__content { padding: 20px 15px; }
	.hero__promo { padding: 25px; }
	.category-grid__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.site-footer__columns { grid-template-columns: 1fr; text-align: center; }
	.site-content { margin-top: 135px; }
}

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

/* Promo badge strip (payment marks) inside the hero panel. */
.hero__promo-badges {
	width: 284px;
	max-width: 100%;
	height: auto;
	margin: 12px auto 0;
	display: block;
}
