/* SOLE & CO inspired — StepStyle storefront v5 */

:root {
	--cream: #f7f5f0;
	--charcoal: #1a1a1a;
	--mid: #4a4a4a;
	--light: #9a9a9a;
	--accent: #c8a96e;
	--accent-d: #a8893e;
	--white: #ffffff;
	--border: #e8e4dc;
	--card-bg: #fdfcf9;
	--wa-green: #25d366;
	--container: 1200px;
	--nav-h: 64px;
	--topbar-h: 32px;
	--z-nav: 1100;
	--z-overlay: 10000;
}

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

body {
	font-family: 'Inter', system-ui, sans-serif;
	background: var(--cream);
	color: var(--charcoal);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

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

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

/* Topbar */
.topbar {
	background: var(--charcoal);
	color: #fff;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	padding: 7px 0;
	text-align: center;
}

.topbar a { color: var(--accent); }

/* Navbar */
.navbar-main {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: var(--z-nav);
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--nav-h);
	padding: 0 24px;
	max-width: 1400px;
	margin: 0 auto;
}

.brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--charcoal);
	letter-spacing: 0.04em;
	flex-shrink: 0;
}

.brand--has-logo {
	display: flex;
	align-items: center;
	line-height: 0;
}

.brand__logo {
	display: block;
	height: 44px;
	width: auto;
	max-width: min(220px, 42vw);
	object-fit: contain;
}

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none;
	align-items: center;
}

.nav-links a {
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mid);
	transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }

.nav-links__dropdown { position: relative; z-index: 2; }

.nav-links__drop i { font-size: 0.65rem; margin-left: 2px; }

.nav-links__menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 200px;
	padding: 8px;
	background: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
	z-index: 5;
}

.nav-links__dropdown:hover .nav-links__menu {
	opacity: 1;
	visibility: visible;
}

.nav-links__menu a {
	display: block;
	padding: 8px 12px;
	font-size: 0.85rem;
	text-transform: none;
	letter-spacing: 0;
}

.nav-links__menu a:hover { background: var(--cream); }

.nav-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 1.4rem;
	color: var(--charcoal);
	cursor: pointer;
}

.mobile-menu {
	display: none;
	background: var(--white);
	border-top: 1px solid var(--border);
	padding: 16px 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
	display: block;
	padding: 10px 0;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mid);
	border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

/* Hero */
.hero {
	width: 100%;
	display: block;
	line-height: 0;
}

.hero__link {
	display: block;
	width: 100%;
	line-height: 0;
}

.hero__img {
	width: 100%;
	height: auto;
	display: block;
	max-width: none;
}

.btn-primary-custom {
	background: var(--accent);
	color: var(--charcoal);
	padding: 14px 36px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 3px;
	transition: background 0.2s, transform 0.15s;
	display: inline-block;
	border: none;
	cursor: pointer;
}

.btn-primary-custom:hover {
	background: var(--accent-d);
	transform: translateY(-1px);
	color: var(--charcoal);
}

.btn-outline-custom {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	padding: 14px 36px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 3px;
	transition: border-color 0.2s, background 0.2s;
	display: inline-block;
}

.btn-outline-custom:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
}

/* Trust bar */
.trust-bar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 18px 0;
}

.trust-items {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8rem;
	color: var(--mid);
	font-weight: 500;
	letter-spacing: 0.04em;
}

.trust-item i { color: var(--accent); font-size: 1.1rem; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 48px; }

.section-eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 10px;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.9rem, 3.5vw, 2.8rem);
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1.15;
}

.section-sub {
	color: var(--light);
	font-size: 0.92rem;
	margin-top: 10px;
}

.divider-accent {
	width: 40px;
	height: 2px;
	background: var(--accent);
	margin: 14px auto 0;
}

.section-cta { text-align: center; margin-top: 48px; }

/* Category strip */
.cat-strip {
	padding: 72px 0;
	background: var(--white);
}

.cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.cat-banner {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	height: 280px;
	display: block;
}

.cat-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.cat-banner:hover img { transform: scale(1.06); }

.cat-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 55%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px 22px;
}

.cat-banner-label {
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 5px;
}

.cat-banner-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.45rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 12px;
}

.btn-browse {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.btn-browse i { transition: transform 0.2s; }

.cat-banner:hover .btn-browse i { transform: translateX(4px); }

/* Products section */
.products-section {
	padding: 80px 0;
	background: var(--cream);
}

.products-section--page { padding-top: 48px; }

.cat-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 44px;
}

.cat-tab {
	background: none;
	border: 1px solid var(--border);
	color: var(--mid);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 9px 22px;
	border-radius: 2px;
	transition: all 0.2s;
}

.cat-tab:hover { border-color: var(--accent); color: var(--charcoal); }

.cat-tab.active {
	background: var(--charcoal);
	border-color: var(--charcoal);
	color: var(--white);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}

/* Product card */
.product-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 4px;
	overflow: hidden;
	transition: box-shadow 0.25s, transform 0.25s;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.product-card__top { display: block; flex: 1; }

.product-img-wrap {
	position: relative;
	overflow: hidden;
	background: #f0ede6;
	aspect-ratio: 4/3;
}

.product-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.badge-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 2px;
	z-index: 2;
}

.badge-hot { background: var(--accent); color: var(--charcoal); }

.product-body { padding: 18px 18px 12px; }

.product-brand {
	font-size: 0.68rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--light);
	margin-bottom: 5px;
	font-weight: 600;
}

.product-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 8px;
	line-height: 1.3;
}

.product-meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.meta-pill {
	font-size: 0.7rem;
	font-weight: 500;
	padding: 3px 9px;
	border-radius: 20px;
	background: var(--cream);
	color: var(--mid);
	border: 1px solid var(--border);
}

.product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px 18px;
	border-top: 1px solid var(--border);
	margin-top: auto;
}

.price-current {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1;
}

.btn-enquire {
	background: var(--charcoal);
	color: var(--white);
	border: none;
	padding: 9px 16px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 3px;
	transition: background 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.btn-enquire:hover { background: var(--accent); color: var(--charcoal); }

/* Featured section */
.featured-section {
	background: var(--charcoal);
	padding: 88px 0;
}

.featured-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.featured-img-wrap {
	position: relative;
	background: #2a2a2a;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 1;
}

.featured-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-tag {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--accent);
	color: var(--charcoal);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 2px;
}

.featured-content { padding: 20px 0 20px 20px; }

.featured-content--light { padding: 0; }

.featured-eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 14px;
}

.featured-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 16px;
}

.featured-title--dark { color: var(--charcoal); }

.featured-desc {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 28px;
}

.featured-desc--dark { color: var(--mid); }

.featured-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 28px;
}

.spec-label {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 4px;
}

.featured-content--light .spec-label { color: var(--light); }

.spec-value {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--white);
}

.featured-content--light .spec-value { color: var(--charcoal); }

.featured-price {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 28px;
}

.featured-price--dark { color: var(--charcoal); }

.featured-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn-wa-large {
	background: var(--wa-green);
	color: var(--white);
	border: none;
	padding: 16px 36px;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 3px;
	transition: background 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-wa-large:hover { background: #1ebe5d; color: var(--white); }

.btn-wa-large i { font-size: 1.3rem; }

.btn-block { width: 100%; justify-content: center; }

/* Values */
.values-section {
	background: var(--white);
	padding: 80px 0;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.value-card {
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 32px 24px;
	text-align: center;
}

.value-card i {
	font-size: 1.75rem;
	color: var(--accent);
	margin-bottom: 16px;
	display: block;
}

.value-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.value-card p {
	font-size: 0.9rem;
	color: var(--mid);
	line-height: 1.7;
}

/* Home branches preview */
.branches-preview {
	padding: 56px 0 64px;
	background: var(--cream);
	border-top: 1px solid var(--border);
}

.branches-preview__intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.branches-preview__intro-text .section-title {
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	margin-top: 6px;
}

.branches-preview__summary {
	margin-top: 8px;
	font-size: 0.9rem;
	color: var(--mid);
}

.branches-preview__summary strong {
	color: var(--charcoal);
	font-weight: 600;
}

.branches-preview__map-cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 10px 16px 10px 12px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 6px;
	color: var(--charcoal);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.branches-preview__map-cta:hover {
	border-color: var(--accent);
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
	color: var(--charcoal);
}

.branches-preview__map-icon {
	width: 36px;
	height: auto;
	flex-shrink: 0;
	opacity: 0.9;
}

.branches-preview__map-cta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.3;
	text-align: left;
	max-width: 160px;
}

.branches-preview__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 14px;
}

.branch-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 18px 18px 16px;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.branch-card:hover {
	border-color: rgba(200, 169, 110, 0.55);
	box-shadow: 0 10px 28px rgba(26, 26, 26, 0.05);
	transform: translateY(-2px);
}

.branch-card__area {
	display: inline-block;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-d);
	background: rgba(200, 169, 110, 0.12);
	padding: 4px 8px;
	border-radius: 3px;
	margin-bottom: 10px;
}

.branch-card__title {
	font-family: 'Playfair Display', serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--charcoal);
	line-height: 1.35;
	margin-bottom: 6px;
}

.branch-card__address {
	font-size: 0.8rem;
	color: var(--mid);
	line-height: 1.5;
}

.branches-preview__more {
	margin-top: 16px;
	font-size: 0.82rem;
	color: var(--light);
	text-align: center;
}

.branches-preview__more a {
	color: var(--accent-d);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.branches-preview__more a:hover {
	color: var(--charcoal);
}

/* Newsletter / CTA band */
.newsletter-section {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-d) 100%);
	padding: 60px 0;
}

.newsletter-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.newsletter-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 8px;
}

.newsletter-section p {
	color: rgba(26, 26, 26, 0.65);
	font-size: 0.9rem;
}

.newsletter-input {
	flex: 1;
	border: none;
	padding: 12px 18px;
	font-size: 0.9rem;
	border-radius: 3px;
	outline: none;
	background: var(--white);
	color: var(--charcoal);
	font-family: inherit;
}

.btn-subscribe {
	background: var(--charcoal);
	color: var(--white);
	border: none;
	padding: 12px 24px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 3px;
	cursor: pointer;
	white-space: nowrap;
}

/* Catalog controls — shop page */
.catalog-controls {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 1.35rem 1.5rem 1.25rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 8px 32px rgba(26, 26, 26, 0.04);
}

.catalog-controls__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	flex-wrap: wrap;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid var(--border);
}

.catalog-controls__meta {
	flex-shrink: 0;
}

.catalog-count {
	font-size: 0.82rem;
	color: var(--light);
	letter-spacing: 0.02em;
}

.catalog-count strong {
	font-weight: 600;
	color: var(--charcoal);
}

.catalog-search {
	display: flex;
	align-items: stretch;
	gap: 10px;
	flex: 1;
	min-width: min(100%, 520px);
	max-width: 560px;
}

.catalog-search__field {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
}

.catalog-search__field > i {
	position: absolute;
	left: 1rem;
	color: var(--light);
	font-size: 0.95rem;
	pointer-events: none;
}

.catalog-search__input {
	width: 100%;
	padding: 0.82rem 2.5rem 0.82rem 2.65rem;
	border: 1px solid var(--border);
	border-radius: 4px;
	background: var(--card-bg);
	font-family: inherit;
	font-size: 0.9rem;
	color: var(--charcoal);
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.catalog-search__input::placeholder { color: #b8b4ac; }

.catalog-search__input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.16);
	background: var(--white);
}

.catalog-search__clear {
	position: absolute;
	right: 0.65rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	color: var(--light);
	transition: color 0.2s, background 0.2s;
}

.catalog-search__clear:hover {
	color: var(--charcoal);
	background: rgba(26, 26, 26, 0.05);
}

.catalog-search__btn {
	flex-shrink: 0;
	padding: 0.82rem 1.35rem;
	border: 1px solid var(--charcoal);
	border-radius: 4px;
	background: var(--charcoal);
	color: var(--white);
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.catalog-search__btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--charcoal);
}

.catalog-controls__filters {
	padding-top: 1.1rem;
}

.catalog-controls__label {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--light);
}

.cat-tabs--toolbar {
	justify-content: flex-start;
	margin-bottom: 0;
	gap: 0.5rem;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
	scrollbar-color: var(--border) transparent;
	-webkit-overflow-scrolling: touch;
}

.cat-tabs--toolbar::-webkit-scrollbar { height: 4px; }

.cat-tabs--toolbar::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 4px;
}

.cat-tabs--toolbar .cat-tab {
	flex-shrink: 0;
	padding: 8px 18px;
	border-radius: 999px;
	background: var(--card-bg);
}

.cat-tabs--toolbar .cat-tab:hover {
	background: var(--white);
}

.cat-tabs--toolbar .cat-tab.active {
	background: var(--charcoal);
	box-shadow: 0 4px 14px rgba(26, 26, 26, 0.12);
}

.catalog-active {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 0.75rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
}

.catalog-active__label {
	font-size: 0.78rem;
	color: var(--light);
}

.catalog-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: var(--cream);
	border: 1px solid var(--border);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--charcoal);
}

.catalog-active__clear {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--accent-d);
	text-decoration: none;
	border-bottom: 1px solid rgba(168, 137, 62, 0.35);
	transition: color 0.2s, border-color 0.2s;
}

.catalog-active__clear:hover {
	color: var(--charcoal);
	border-color: var(--charcoal);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.link-line {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent-d);
	border-bottom: 1px solid var(--accent);
}

.results-meta {
	margin-bottom: 1.25rem;
	font-size: 0.85rem;
	color: var(--light);
}

/* Page hero */
.page-hero {
	padding: 48px 0;
	background: var(--white);
	border-bottom: 1px solid var(--border);
}

.page-hero__title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	margin-top: 8px;
}

.page-hero__text {
	color: var(--mid);
	margin-top: 10px;
	max-width: 520px;
}

.page-hero--compact {
	padding: 36px 0;
}

.branches-section {
	padding: 48px 0 72px;
	background: var(--cream);
}

.branches-layout {
	display: grid;
	grid-template-columns: minmax(280px, 360px) 1fr;
	gap: 24px;
	align-items: start;
}

.branches-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.branch-card {
	width: 100%;
	text-align: left;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 18px 20px;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.branch-card:hover,
.branch-card.is-active {
	border-color: var(--charcoal);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.branch-card.is-active {
	transform: translateY(-1px);
}

.branch-card__name {
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 8px;
}

.branch-card__address,
.branch-card__phone {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.88rem;
	color: var(--mid);
	line-height: 1.5;
}

.branch-card__phone {
	margin-top: 8px;
}

.branch-card__address i,
.branch-card__phone i {
	color: var(--accent);
	margin-top: 2px;
	flex-shrink: 0;
}

.branches-map-wrap {
	position: relative;
	z-index: 1;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
	min-height: 520px;
	isolation: isolate;
}

.branches-map {
	width: 100%;
	height: 520px;
}

.branches-map.leaflet-container .leaflet-top,
.branches-map.leaflet-container .leaflet-bottom {
	z-index: 400;
}

.page-hero--image {
	position: relative;
	color: #fff;
	min-height: 280px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 48px;
	border-bottom: none;
	background: var(--charcoal);
}

.page-hero--image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%), var(--cover-image) center/cover no-repeat;
}

.page-hero--image .container { position: relative; z-index: 1; }

.page-hero--image .page-hero__text { color: rgba(255, 255, 255, 0.8); }

.crumb {
	font-size: 0.85rem;
	color: var(--light);
	margin-bottom: 12px;
}

.crumb--light { color: rgba(255, 255, 255, 0.7); }

.crumb a:hover { color: var(--accent); }

.crumb--light a { color: rgba(255, 255, 255, 0.9); }

/* PDP */
.pdp__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	margin-top: 32px;
}

.gallery-layout { display: flex; flex-direction: column; gap: 12px; }

.gallery-stage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.zoom-container {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	background: #f0ede6;
	cursor: zoom-in;
}

.gallery-main-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.zoom-lens {
	display: none;
	position: absolute;
	border: 2px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.25);
	pointer-events: none;
}

.zoom-result {
	display: none;
	aspect-ratio: 1;
	background-color: #f0ede6;
	background-repeat: no-repeat;
	border: 1px solid var(--border);
	border-radius: 4px;
}

.gallery-zoom-btn {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }

.gallery-thumb {
	width: 68px;
	height: 68px;
	padding: 0;
	border: 2px solid transparent;
	background: #f0ede6;
	cursor: pointer;
	overflow: hidden;
	border-radius: 2px;
}

.gallery-thumb.active { border-color: var(--accent); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.gallery-hint {
	font-size: 0.78rem;
	color: var(--light);
	margin-top: 8px;
}

.product-specs {
	margin-bottom: 24px;
	padding: 16px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.product-specs__row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	font-size: 0.9rem;
}

.product-specs__row dt { color: var(--light); font-weight: 400; }

.product-specs__row dd { margin: 0; font-weight: 600; }

.option-label {
	display: block;
	margin-bottom: 10px;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--mid);
}

.option-group { margin-bottom: 20px; }

.size-options,
.color-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.size-btn {
	min-width: 42px;
	height: 42px;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--mid);
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 3px;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.15s;
}

.size-btn:hover,
.size-btn.active {
	background: var(--charcoal);
	border-color: var(--charcoal);
	color: var(--white);
}

.color-btn {
	width: 36px;
	height: 36px;
	padding: 3px;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: var(--white);
	cursor: pointer;
}

.color-btn span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--color);
}

.color-btn.active {
	box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--charcoal);
}

.selected-color-label {
	display: block;
	margin-top: 8px;
	font-size: 0.8rem;
	color: var(--light);
}

.whatsapp-note {
	font-size: 0.8rem;
	color: var(--light);
	text-align: center;
	margin-top: 12px;
}

.pdp__desc {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid var(--border);
}

.pdp__desc h3 {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
}

.pdp__desc p {
	color: var(--mid);
	line-height: 1.75;
}

.featured-content--light .spec-label { color: var(--light); }

.featured-content--light .spec-value { color: var(--charcoal); }

.featured-content--light .product-specs__row dt { color: var(--light); }

.featured-content--light .product-specs__row dd { color: var(--charcoal); }

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: var(--z-overlay);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.92);
	padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox-image {
	max-width: min(92vw, 900px);
	max-height: 88vh;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	font-size: 28px;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	font-size: 18px;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	cursor: pointer;
	border-radius: 50%;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.empty-state {
	text-align: center;
	padding: 4rem 2rem;
	background: var(--card-bg);
	border: 1px dashed var(--border);
	border-radius: 4px;
}

.empty-state h3 {
	font-family: 'Playfair Display', serif;
	margin-bottom: 8px;
}

.empty-state p { color: var(--mid); margin-bottom: 20px; }

/* Footer */
.footer {
	background: var(--charcoal);
	color: rgba(255, 255, 255, 0.7);
	padding: 72px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
}

.footer-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 14px;
}

.footer-brand__logo {
	display: block;
	height: 52px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.footer-tagline {
	font-size: 0.85rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 20px;
	max-width: 280px;
}

/* Social links — shared */
.social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--border);
	color: var(--mid);
	flex-shrink: 0;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.social-link i {
	font-size: 0.9rem;
	line-height: 1;
}

.social-link:hover {
	color: var(--charcoal);
	border-color: var(--charcoal);
	background: var(--cream);
}

.social-links--footer {
	margin-bottom: 20px;
}

.social-links--footer .social-link {
	border-color: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.75);
}

.social-links--footer .social-link:hover {
	color: var(--white);
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.08);
}

.social-links--mobile {
	padding-top: 16px;
	margin-top: 8px;
	border-top: 1px solid var(--border);
}

.footer-heading {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--white);
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.85rem;
	transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 16px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item i { color: var(--accent); }

.footer-wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--wa-green);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 3px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s;
	margin-top: 8px;
}

.footer-wa-btn:hover { background: #1ebe5d; color: var(--white); }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 56px;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom p {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.3);
}

/* Animations */
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
	.featured-layout,
	.pdp__layout,
	.footer-grid,
	.values-grid,
	.newsletter-layout {
		grid-template-columns: 1fr;
	}

	.featured-content { padding: 32px 0 0; }

	.gallery-stage { grid-template-columns: 1fr; }

	.zoom-result { display: none !important; }

	.gallery-hint { display: none; }
}

@media (max-width: 768px) {
	.nav-links { display: none; }

	.social-links--nav { display: none; }

	.hamburger { display: block; }

	.cat-banner { height: 200px; }

	.trust-items { gap: 20px; }

	.btn-primary-custom,
	.btn-outline-custom { text-align: center; }

	.product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

	.cat-grid { grid-template-columns: 1fr 1fr; }

	.values-grid { grid-template-columns: 1fr; }

	.footer-grid { grid-template-columns: 1fr; gap: 32px; }

	.branches-layout { grid-template-columns: 1fr; }

	.branches-preview__intro {
		flex-direction: column;
		align-items: flex-start;
	}

	.branches-preview__map-cta span {
		max-width: none;
	}

	.branches-map,
	.branches-map-wrap { min-height: 420px; height: 420px; }

	.newsletter-layout { flex-direction: column; text-align: center; }

	.catalog-controls { padding: 1.1rem 1rem; }

	.catalog-controls__row {
		flex-direction: column;
		align-items: stretch;
	}

	.catalog-search {
		min-width: 0;
		max-width: none;
		width: 100%;
	}

	.catalog-controls__meta {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.catalog-search__btn { padding-inline: 1rem; }
}

@media (max-width: 480px) {
	.product-grid,
	.cat-grid { grid-template-columns: 1fr; }

	.featured-specs { grid-template-columns: 1fr; }
}
