/* OverALL — premium homepage */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body.overall-custom-layout .website-wrapper > header,
body.overall-custom-layout header.whb-header,
body.overall-custom-layout .wd-page-title,
body.overall-custom-layout .page-title-wrapper,
body.overall-custom-layout .wd-footer,
body.overall-custom-layout footer.footer-container {
	display: none !important;
}

body.overall-custom-layout .wd-content-layout,
body.overall-custom-layout .wd-content-area {
	max-width: none;
	padding: 0;
	width: 100%;
}

body.overall-custom-layout .main-page-wrapper {
	padding: 0;
}

body.overall-custom-layout {
	background: #f4f2ef;
}

body.overall-custom-layout .overall-product__notices,
body.overall-custom-layout .woocommerce-notices-wrapper,
body.overall-custom-layout .wd-popup-added-cart {
	display: none !important;
}

body.overall-custom-home {
	background: #f4f2ef;
}

.overall-home {
	--overall-ink: #2e2a26;
	--overall-ink-soft: #4a4540;
	--overall-surface: #ffffff;
	--overall-bg: #f4f2ef;
	--overall-gold: #b8893a;
	--overall-gold-light: #d4a853;
	--overall-accent: #6e655c;
	--overall-accent-deep: #524a42;
	--overall-accent-soft: #7a7168;
	--overall-footer-seo: #454039;
	--overall-line: rgba(46, 42, 38, 0.08);
	--overall-shadow: 0 18px 50px rgba(62, 56, 50, 0.08);
	--overall-radius: 16px;
	font-family: 'Inter', Arial, sans-serif;
	color: var(--overall-ink);
	background: var(--overall-bg);
}

.overall-container {
	width: min(1320px, 100%);
	margin: 0 auto;
	padding: 0 24px;
}

/* Top bar */
.overall-topbar {
	background: linear-gradient(135deg, var(--overall-accent-deep) 0%, var(--overall-accent-soft) 100%);
	color: #fff;
	border-bottom: 2px solid rgba(184, 137, 58, 0.28);
}

.overall-topbar__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	min-height: 72px;
}

.overall-topbar__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	font-size: 13px;
}

.overall-topbar__links a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	transition: color 0.2s;
}

.overall-topbar__links a:hover {
	color: var(--overall-gold-light);
}

.overall-topbar__sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
}

.overall-topbar__brand {
	justify-self: center;
	text-align: center;
}

.overall-topbar__title {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.4;
	transition: color 0.2s;
}

.overall-topbar__title:hover {
	color: var(--overall-gold-light);
}

.overall-topbar__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	justify-self: end;
	font-size: 13px;
}

.overall-topbar__contacts a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

.overall-topbar__phone {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.overall-topbar__contacts a:hover {
	color: var(--overall-gold-light);
}

.overall-topbar__contacts span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

/* Main nav */
.overall-mainnav {
	background: var(--overall-surface);
	border-bottom: 1px solid var(--overall-line);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(12px);
}

.overall-mainnav__inner {
	position: relative;
}

.overall-mainnav__toggle {
	display: none;
	background: none;
	border: 0;
	padding: 14px 0;
	cursor: pointer;
}

.overall-mainnav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px 0;
	background: var(--overall-ink);
	border-radius: 2px;
}

.overall-mainnav__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.overall-mainnav__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 18px 20px;
	color: var(--overall-ink-soft);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: none;
	border: 0;
	cursor: pointer;
	position: relative;
	transition: color 0.2s;
}

.overall-mainnav__item::after {
	content: '';
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 12px;
	height: 2px;
	background: var(--overall-gold);
	transform: scaleX(0);
	transition: transform 0.25s ease;
}

.overall-mainnav__item:hover,
.overall-mainnav__dropdown.is-open > .overall-mainnav__item {
	color: var(--overall-ink);
}

.overall-mainnav__item:hover::after,
.overall-mainnav__dropdown.is-open > .overall-mainnav__item::after {
	transform: scaleX(1);
}

.overall-mainnav__caret {
	font-size: 10px;
	opacity: 0.5;
}

.overall-mainnav__dropdown {
	position: relative;
}

.overall-mainnav__submenu {
	display: none;
	position: absolute;
	top: calc(100% - 4px);
	left: 0;
	min-width: 280px;
	background: var(--overall-surface);
	border: 1px solid var(--overall-line);
	border-radius: 12px;
	box-shadow: var(--overall-shadow);
	padding: 8px;
	max-height: 380px;
	overflow: auto;
	z-index: 20;
}

.overall-mainnav__dropdown.is-open .overall-mainnav__submenu,
.overall-mainnav__dropdown:hover .overall-mainnav__submenu {
	display: block;
}

.overall-mainnav__submenu a {
	display: block;
	padding: 10px 14px;
	color: var(--overall-ink-soft);
	text-decoration: none;
	font-size: 13px;
	border-radius: 8px;
	transition: background 0.15s;
}

.overall-mainnav__submenu a:hover {
	background: #f8f5f0;
	color: var(--overall-gold);
}

/* Hero — clean auto slider */
.overall-hero {
	position: relative;
	margin: 24px auto 0;
	max-width: 1320px;
	padding: 0 24px;
}

.overall-hero__slider {
	position: relative;
	height: clamp(280px, 38vw, 460px);
	border-radius: var(--overall-radius);
	overflow: hidden;
	box-shadow: var(--overall-shadow);
}

.overall-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease;
	text-decoration: none;
}

.overall-hero__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.overall-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
	transition: transform 6s ease;
}

.overall-hero__slide.is-active .overall-hero__media {
	transform: scale(1);
}

.overall-hero__media--spec {
	background-image:
		linear-gradient(120deg, rgba(62, 56, 50, 0.5) 0%, rgba(62, 56, 50, 0.12) 60%),
		url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80');
}

.overall-hero__media--siz {
	background-image:
		linear-gradient(120deg, rgba(62, 56, 50, 0.5) 0%, rgba(62, 56, 50, 0.12) 60%),
		url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1800&q=80');
}

.overall-hero__media--uniform {
	background-image:
		linear-gradient(120deg, rgba(62, 56, 50, 0.5) 0%, rgba(62, 56, 50, 0.12) 60%),
		url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1800&q=80');
}

.overall-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(62, 56, 50, 0.22) 100%);
}

.overall-hero__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.overall-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(20, 24, 32, 0.15);
	transition: background 0.3s, transform 0.3s;
}

.overall-hero__dot.is-active {
	background: var(--overall-gold);
	transform: scale(1.2);
}

/* Search */
.overall-search {
	margin: 28px auto;
}

.overall-search__wrap {
	position: relative;
	z-index: 1;
}

.overall-search__wrap.is-open {
	z-index: 200;
}

.overall-search__backdrop {
	position: fixed;
	inset: 0;
	z-index: 199;
	background: transparent;
}

.overall-search__form {
	display: flex;
	align-items: center;
	background: var(--overall-surface);
	border: 1px solid var(--overall-line);
	border-radius: 999px;
	padding: 6px 6px 6px 24px;
	box-shadow: 0 4px 20px rgba(62, 56, 50, 0.04);
	transition: box-shadow 0.2s, border-color 0.2s;
}

.overall-search__form:focus-within {
	border-color: rgba(184, 137, 58, 0.4);
	box-shadow: 0 8px 30px rgba(62, 56, 50, 0.08);
}

.overall-search__input {
	flex: 1;
	border: 0;
	background: transparent;
	padding: 12px 16px 12px 0;
	font-size: 15px;
	outline: none;
	color: var(--overall-ink);
}

.overall-search__input::placeholder {
	color: rgba(20, 24, 32, 0.4);
}

.overall-search__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: var(--overall-accent-deep);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
}

.overall-search__btn:hover {
	background: var(--overall-gold);
	transform: scale(1.04);
}

.overall-search__results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	z-index: 201;
	background: var(--overall-surface);
	border: 1px solid var(--overall-line);
	border-radius: 16px;
	box-shadow: var(--overall-shadow);
	overflow: hidden;
}

.overall-search__results.is-open {
	display: block;
}

.overall-search__status {
	margin: 0;
	padding: 16px 20px;
	font-size: 14px;
	color: var(--overall-ink-soft);
}

.overall-search__list {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	max-height: 420px;
	overflow-y: auto;
}

.overall-search__item {
	margin: 0;
}

.overall-search__item-link {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 10px 16px;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
}

.overall-search__item-link:hover,
.overall-search__item-link:focus {
	background: rgba(184, 137, 58, 0.08);
	outline: none;
}

.overall-search__item-photo {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	overflow: hidden;
	background: #faf9f7;
	border: 1px solid var(--overall-line);
}

.overall-search__item-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.overall-search__item-name {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--overall-ink);
}

.overall-search__item-price {
	font-size: 14px;
	font-weight: 700;
	color: var(--overall-accent-deep);
	white-space: nowrap;
}

.overall-search__all {
	display: block;
	padding: 14px 16px;
	border-top: 1px solid var(--overall-line);
	background: #faf9f7;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	color: var(--overall-accent-deep);
	transition: background 0.15s, color 0.15s;
}

.overall-search__all:hover {
	background: rgba(184, 137, 58, 0.12);
	color: var(--overall-gold);
}

/* Categories — single row */
.overall-categories {
	margin-bottom: 40px;
}

.overall-categories__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
	background: var(--overall-surface);
	border: 1px solid var(--overall-line);
	border-radius: var(--overall-radius);
	padding: 28px 20px;
	box-shadow: 0 4px 20px rgba(62, 56, 50, 0.04);
	overflow-x: auto;
	scrollbar-width: thin;
}

.overall-categories__item {
	flex: 1 0 0;
	min-width: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: var(--overall-ink-soft);
	gap: 12px;
	transition: transform 0.2s;
}

.overall-categories__item:hover {
	transform: translateY(-3px);
	color: var(--overall-ink);
}

.overall-categories__icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(145deg, #faf8f5, #f0ece6);
	border: 1px solid var(--overall-line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--overall-gold);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.overall-categories__item:hover .overall-categories__icon-wrap {
	border-color: rgba(184, 137, 58, 0.35);
	box-shadow: 0 8px 24px rgba(184, 137, 58, 0.12);
}

.overall-cat-icon {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.overall-categories__label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	max-width: 110px;
}

/* Products */
.overall-products {
	margin-bottom: 56px;
}

.overall-products__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.overall-products__title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--overall-ink);
}

.overall-products__more {
	color: var(--overall-gold);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s;
}

.overall-products__more:hover {
	color: var(--overall-gold-light);
}

.overall-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.overall-products__card {
	display: flex;
	flex-direction: column;
	background: var(--overall-surface);
	border: 1px solid var(--overall-line);
	border-radius: 14px;
	overflow: hidden;
	color: inherit;
	transition: box-shadow 0.25s, transform 0.25s;
}

.overall-products__link {
	display: flex;
	flex-direction: column;
	flex: 1;
	text-decoration: none;
	color: inherit;
}

.overall-products__card:hover {
	box-shadow: var(--overall-shadow);
	transform: translateY(-4px);
}

.overall-products__photo {
	aspect-ratio: 1;
	background: #f0ece6;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.overall-products__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.overall-products__card:hover .overall-products__photo img {
	transform: scale(1.05);
}

.overall-products__buy {
	display: block;
	margin: 0 12px 12px;
	padding: 11px 12px;
	border: 0;
	border-radius: 10px;
	background: var(--overall-accent-deep);
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
}

.overall-products__buy:hover {
	background: var(--overall-gold);
	color: #fff !important;
	transform: translateY(-1px);
}

.overall-products__name {
	padding: 14px 16px 6px;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 500;
	min-height: 52px;
	color: var(--overall-ink-soft);
}

.overall-products__price {
	padding: 0 16px 16px;
	font-size: 15px;
	font-weight: 700;
	color: var(--overall-gold);
}

.overall-products__price .woocommerce-Price-amount {
	color: inherit;
}

/* Benefits + Social */
.overall-info {
	margin-bottom: 64px;
}

.overall-info__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	background: var(--overall-surface);
	border: 1px solid var(--overall-line);
	border-radius: var(--overall-radius);
	box-shadow: 0 4px 24px rgba(62, 56, 50, 0.05);
	overflow: hidden;
}

.overall-info__col {
	padding: 36px 32px;
}

.overall-info__col--benefits {
	border-right: 1px solid var(--overall-line);
}

.overall-info__heading {
	margin: 0 0 24px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--overall-gold);
}

.overall-info__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.overall-info__item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.overall-info__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(145deg, #faf8f5, #f0ece6);
	border: 1px solid var(--overall-line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--overall-gold);
}

.overall-info-icon {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.overall-info__title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--overall-ink);
	line-height: 1.35;
}

.overall-info__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--overall-muted, #6b7280);
}

.overall-info__intro {
	margin: 0 0 22px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--overall-ink-soft);
	max-width: 420px;
}

.overall-info__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.overall-info__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	padding: 12px 18px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	color: #fff;
	transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.overall-info__social:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	color: #fff;
	opacity: 0.92;
}

.overall-info__social--fb {
	background: #1877f2;
}

.overall-info__social--vk {
	background: #0077ff;
}

.overall-info__jobs {
	padding-top: 22px;
	border-top: 1px solid var(--overall-line);
}

.overall-info__jobs-label {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--overall-ink-soft);
}

.overall-info__jobs-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--overall-accent-deep);
	text-decoration: none;
	transition: color 0.2s;
}

.overall-info__jobs-link:hover {
	color: var(--overall-gold);
}

/* 2GIS Map */
.overall-map {
	margin: 0 auto 32px;
}

.overall-map__widget {
	width: 100%;
	min-height: 600px;
	border: 1px solid var(--overall-line);
	border-radius: var(--overall-radius);
	overflow: hidden;
	background: var(--overall-surface);
	box-shadow: 0 4px 24px rgba(62, 56, 50, 0.06);
}

.overall-map__widget iframe {
	display: block;
	width: 100% !important;
	max-width: 100%;
	border: 0;
}

.overall-map__noscript {
	margin: 0;
	padding: 16px;
	color: #c00;
	font-size: 14px;
	font-weight: 700;
}

/* Footer */
.overall-footer {
	margin-top: 8px;
	background: linear-gradient(180deg, var(--overall-accent-deep) 0%, #4a433c 100%);
	color: rgba(255, 255, 255, 0.9);
}

.overall-footer__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding: 48px 24px 36px;
}

.overall-footer__heading {
	margin: 0 0 22px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--overall-gold-light);
}

.overall-footer__articles,
.overall-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.overall-footer__articles li,
.overall-footer__links li {
	margin-bottom: 10px;
}

.overall-footer__articles a,
.overall-footer__links a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	transition: color 0.2s;
}

.overall-footer__articles a:hover,
.overall-footer__links a:hover {
	color: var(--overall-gold-light);
}

.overall-footer__links {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.overall-footer__country,
.overall-footer__welcome {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}

.overall-footer__address {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.5;
}

.overall-footer__address-icon {
	flex-shrink: 0;
	color: var(--overall-gold-light);
}

.overall-footer__phones {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.overall-footer__contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

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

.overall-footer__contact-btn--phone {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.overall-footer__contact-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
	color: #fff;
}

.overall-footer__phone-number {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.02em;
}

.overall-footer__phone-number:hover {
	color: var(--overall-gold-light);
}

.overall-footer-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.overall-footer-icon--mastercard {
	width: 38px;
	height: 24px;
}

.overall-footer__payment {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 24px 0 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.overall-footer__payment-text {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.overall-footer__copyright {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.overall-footer__seo-wrap {
	background: var(--overall-footer-seo);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.overall-footer__seo-inner {
	padding: 28px 24px 36px;
}

.overall-footer__seo {
	margin: 0;
	font-size: 12px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.42);
}

/* Responsive */
@media (max-width: 1100px) {
	.overall-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.overall-topbar__inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 16px 0;
	}

	.overall-topbar__links,
	.overall-topbar__contacts {
		justify-content: center;
		align-items: center;
		justify-self: center;
	}

	.overall-topbar__brand {
		order: -1;
	}

	.overall-mainnav__toggle {
		display: block;
	}

	.overall-mainnav__menu {
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding-bottom: 12px;
	}

	.overall-mainnav__menu.is-open {
		display: flex;
	}

	.overall-mainnav__item {
		justify-content: space-between;
		width: 100%;
	}

	.overall-mainnav__item::after {
		display: none;
	}

	.overall-mainnav__submenu {
		position: static;
		box-shadow: none;
		border: 0;
		padding: 0 0 8px 16px;
	}

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

	.overall-info__grid {
		grid-template-columns: 1fr;
	}

	.overall-info__col--benefits {
		border-right: 0;
		border-bottom: 1px solid var(--overall-line);
	}
}

@media (max-width: 600px) {
	.overall-container,
	.overall-hero {
		padding-left: 16px;
		padding-right: 16px;
	}

	.overall-categories__row {
		justify-content: flex-start;
		gap: 16px;
	}

	.overall-categories__item {
		flex: 0 0 90px;
		min-width: 90px;
	}

	.overall-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.overall-info__col {
		padding: 28px 20px;
	}

	.overall-footer__main {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 36px 16px 28px;
	}

	.overall-footer__seo-inner {
		padding: 24px 16px 28px;
	}

	.overall-map__widget {
		min-height: 420px;
	}
}

/* Floating cart — outside .overall-home, use explicit colors */
.overall-cart-fab {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #524a42;
	color: #fff !important;
	border: 2px solid rgba(184, 137, 58, 0.45);
	box-shadow: 0 12px 32px rgba(62, 56, 50, 0.28);
	text-decoration: none;
	transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.overall-cart-fab:hover {
	background: #b8893a;
	color: #fff !important;
	border-color: #d4a853;
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(62, 56, 50, 0.32);
}

.overall-cart-fab__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.overall-cart-fab__icon svg {
	display: block;
}

.overall-cart-fab__count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: #b8893a;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 22px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
	border: 2px solid #fff;
}

.overall-cart-fab__count.is-empty {
	display: none;
}

@media (max-width: 640px) {
	.overall-cart-fab {
		right: 16px;
		bottom: 16px;
		width: 54px;
		height: 54px;
	}
}

/* Cart toast */
.overall-cart-toast-wrap {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 400;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	pointer-events: none;
}

.overall-cart-toast {
	pointer-events: auto;
	min-width: 280px;
	max-width: min(360px, calc(100vw - 32px));
	padding: 14px 16px;
	background: #524a42;
	color: #fff;
	border-radius: 14px;
	border: 1px solid rgba(184, 137, 58, 0.35);
	box-shadow: 0 16px 40px rgba(62, 56, 50, 0.24);
	transform: translateX(calc(100% + 24px));
	opacity: 0;
	transition: transform 0.32s ease, opacity 0.32s ease;
}

.overall-cart-toast.is-visible {
	transform: translateX(0);
	opacity: 1;
}

.overall-cart-toast__content {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.overall-cart-toast__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(184, 137, 58, 0.22);
	color: #d4a853;
}

.overall-cart-toast__text {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	color: #fff;
}

.overall-cart-toast__link {
	display: inline-block;
	margin-top: 10px;
	margin-left: 40px;
	font-size: 13px;
	font-weight: 600;
	color: #d4a853 !important;
	text-decoration: none;
}

.overall-cart-toast__link:hover {
	color: #fff !important;
	text-decoration: underline;
}

@media (max-width: 640px) {
	.overall-cart-toast-wrap {
		top: 16px;
		right: 16px;
		left: 16px;
		align-items: stretch;
	}

	.overall-cart-toast {
		min-width: 0;
		max-width: none;
	}
}
