/* ==========================================================================
RITZ THE LABEL — Base Stylesheet
Mobile-first. Breakpoint overrides live in responsive.css
========================================================================== */

/* --------------------------------------------------------------------------
1. Design Tokens
-------------------------------------------------------------------------- */
:root {
	/* Colour palette */
	--color-ivory: #faf8f5;
	--color-cream: #f2ede5;
	--color-black: #14120f;
	--color-charcoal: #262420;
	--color-grey-700: #52504c;
	--color-grey-500: #8a8680;
	--color-grey-300: #d8d3c9;
	--color-grey-100: #ece8e1;
	--color-white: #ffffff;
	--color-accent: #7e1d1d;
	--color-accent-dark: #531f26;
	--color-brass: #ab8a56;
	--color-success: #3f6b4a;
	--color-error: #a13a3a;

	/* Typography */
	--font-display: "Cormorant Garamond", "Times New Roman", serif;
	--font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

	/* Spacing scale */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.75rem;
	--space-lg: 3rem;
	--space-xl: 5rem;
	--space-2xl: 8rem;

	/* Motion */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--dur-fast: 0.25s;
	--dur-med: 0.45s;
	--dur-slow: 0.8s;

	/* Layout */
	--header-height: 84px;
	--announcement-height: 40px;
	--container-max: 1440px;
}

/* --------------------------------------------------------------------------
2. Reset & Base
-------------------------------------------------------------------------- */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-charcoal);
	background-color: var(--color-ivory);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease);
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
}

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

/* Skip link for accessibility */
.skip-link {
	position: absolute;
	top: -100px;
	left: var(--space-sm);
	background: var(--color-black);
	color: var(--color-white);
	padding: var(--space-xs) var(--space-md);
	z-index: 2000;
	transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus {
	top: var(--space-sm);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
}

/* --------------------------------------------------------------------------
3. Typography
-------------------------------------------------------------------------- */
h1, h2, h3, h4,
.font-display {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.15;
	color: var(--color-black);
	margin: 0;
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: var(--space-xs);
}

.section-heading {
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	letter-spacing: 0.01em;
}

.section-subtext {
	color: var(--color-grey-700);
	font-size: 0.98rem;
	max-width: 46ch;
}

.section-head {
	margin-bottom: var(--space-lg);
}

.section-head.text-center {
	margin-inline: auto;
}

.section-head .section-subtext {
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
4. Buttons
-------------------------------------------------------------------------- */
.btn-ritz {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.95em 2.2em;
	border: 1px solid var(--color-black);
	border-radius: 0;
	background: transparent;
	color: var(--color-black);
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
	white-space: nowrap;
}

.btn-ritz-dark {
	background: var(--color-black);
	color: var(--color-white);
	border-color: var(--color-black);
}
.btn-ritz-brass {
	background: var(--color-brass);
	color: var(--color-white);
	border-color: var(--color-brass);
}
.btn-ritz-dark:hover,
.btn-ritz-dark:focus-visible, .btn-ritz-brass:hover, .btn-ritz-brass:focus-visible {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-white);
}
.btn-ritz-light {
	background: transparent;
	color: var(--color-white);
	border-color: var(--color-white);
}
.btn-ritz-light:hover,
.btn-ritz-light:focus-visible {
	background: var(--color-white);
	color: var(--color-black);
}
.btn-ritz-outline:hover,
.btn-ritz-outline:focus-visible {
	background: var(--color-black);
	color: var(--color-white);
}
.btn-ritz-accent {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-white);
}
.btn-ritz-accent:hover,
.btn-ritz-accent:focus-visible {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: var(--color-white);
}
.btn-ritz-block {
	width: 100%;
}

/* --------------------------------------------------------------------------
5. Announcement Bar
-------------------------------------------------------------------------- */
.announcement-bar {
	background: var(--color-black);
	color: var(--color-grey-100);
	height: var(--announcement-height);
	overflow: hidden;
	position: relative;
}

.announcement-track {
	display: flex;
	align-items: center;
	height: 100%;
	white-space: nowrap;
	animation: marquee 26s linear infinite;
	width: max-content;
}

.announcement-track span {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding-inline: var(--space-lg);
	display: inline-flex;
	align-items: center;
	gap: var(--space-lg);
}

.announcement-track span::after {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--color-brass);
	display: inline-block;
	margin-left: var(--space-lg);
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.announcement-track {
		animation: none;
	}
}

/* --------------------------------------------------------------------------
6. Site Header
-------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--color-ivory);
	border-bottom: 1px solid var(--color-grey-300);
	transition: box-shadow var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);height:80px;
}

.site-header.is-stuck {
	box-shadow: 0 6px 24px rgba(20, 18, 15, 0.06);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	transition: height var(--dur-fast) var(--ease);
}

.site-header.is-stuck .header-inner {
	height: 68px;
}

.header-col {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.header-col--nav {
	flex: 1;
	justify-content: center;
}

.header-logo img {
	height: 34px;
	width: auto;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--color-black);
	background: none;
	border: none;
}

.icon-btn svg {
	width: 19px;
	height: 19px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.4;
}

.icon-btn:hover,
.icon-btn:focus-visible {
	color: var(--color-accent);
}

.icon-btn .count-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 0.6rem;
	font-family: var(--font-body);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}


/* Mobile menu toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 1px;
	background: var(--color-black);
	transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

/* Search overlay */
.search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 18, 15, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--dur-fast) var(--ease), visibility var(--dur-fast);
	z-index: 1200;
}

.search-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.search-panel {
	background: var(--color-ivory);
	padding: var(--space-xl) var(--space-sm);
	transform: translateY(-100%);
	transition: transform var(--dur-med) var(--ease);
}

.search-overlay.is-open .search-panel {
	transform: translateY(0);
}

.search-panel__bar {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	border-bottom: 1px solid var(--color-black);
	padding-bottom: var(--space-sm);
}

.search-form {
	display: flex;
	flex: 1;
	align-items: center;
	gap: 1rem;
}

.search-panel input[type="search"] {
	flex: 1;
	border: none;
	background: none;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	color: var(--color-black);
}

.search-panel input[type="search"]:focus {
	outline: none;
}

.search-close {
	background: none;
	border: none;
	font-size: 1.6rem;
	line-height: 1;
	color: var(--color-black);
}

/* Live search results dropdown */
.search-results {
	max-height: min(60vh, 480px);
	overflow-y: auto;
	margin-top: var(--space-md);
}

.search-results[hidden] {
	display: none;
}

.search-results__status {
	padding: var(--space-sm) 0;
	color: var(--color-grey-500);
	font-size: 0.9rem;
}

.search-results__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.search-results__item + .search-results__item {
	border-top: 1px solid var(--color-grey-100);
}

.search-results__link {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	padding: var(--space-sm) 0;
	text-decoration: none;
	color: var(--color-black);
}

.search-results__image {
	width: 56px;
	height: 56px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--color-grey-100);
}

.search-results__body {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	min-width: 0;
}

.search-results__title {
	font-size: 0.95rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-results__price {
	font-size: 0.85rem;
	color: var(--color-grey-500);
}

.search-results__view-all {
	display: block;
	padding: var(--space-sm) 0;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-black);
	border-top: 1px solid var(--color-grey-100);
}

/* --------------------------------------------------------------------------
7. Hero Banner
-------------------------------------------------------------------------- */
.hero {
	position: relative;
	overflow: hidden;
}

.hero .carousel-item {
	height: calc(100vh - var(--announcement-height) - var(--header-height));
	min-height: 560px;
	max-height: 980px;
	position: relative;
}

.hero .carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .carousel-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(10,9,8,0.78) 0%, rgba(10,9,8,0.5) 28%, rgba(10,9,8,0.18) 52%, rgba(10,9,8,0) 72%),
		linear-gradient(180deg, rgba(10,9,8,0.2) 0%, rgba(10,9,8,0) 25%, rgba(10,9,8,0) 65%, rgba(10,9,8,0.3) 100%);
}

.hero-caption {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	z-index: 2;
	padding-inline: var(--space-sm);
}

.hero-caption .eyebrow {
	color: var(--color-brass);
}

.hero-caption h1,
.hero-caption h2 {
	color: var(--color-white);
	font-size: clamp(2.4rem, 6vw, 4.6rem);
	max-width: 14ch;
	margin-bottom: var(--space-sm);
}

.hero-caption p {
	color: var(--color-grey-100);
	max-width: 40ch;
	margin-bottom: var(--space-md);
}

.hero-cta-group {
	display: flex;
	gap: var(--space-sm);
	flex-wrap: wrap;
}

.hero .carousel-indicators {
	margin-bottom: var(--space-md);
}

.hero .carousel-indicators [data-bs-target] {
	width: 26px;
	height: 2px;
	background-color: rgba(255,255,255,0.5);
	border: none;
	opacity: 1;
}

.hero .carousel-indicators .active {
	background-color: var(--color-white);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
	width: 64px;
	opacity: 0;
	transition: opacity var(--dur-fast) var(--ease);
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next {
	opacity: 0.85;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
	width: 1.4rem;
	height: 1.4rem;
}

/* --------------------------------------------------------------------------
8. Shop By Category
-------------------------------------------------------------------------- */
.category-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 2px;
	isolation: isolate;
}

.category-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
}

.category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--dur-slow) var(--ease);
}

.category-card:hover .category-card__media img {
	transform: scale(1.08);
}

.category-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0) 55%);
}

.category-card__body {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: var(--space-md);
	color: var(--color-white);
	width: 100%;
}

.category-card__body h3 {
	color: var(--color-white);
	font-size: 1.5rem;
	margin-bottom: 0.35rem;
}

.category-card__body span {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	border-bottom: 1px solid rgba(255,255,255,0.6);
	padding-bottom: 2px;
	transition: gap var(--dur-fast) var(--ease);
}

.category-card:hover .category-card__body span {
	gap: 0.8em;
}

/* --------------------------------------------------------------------------
9. Product Cards
-------------------------------------------------------------------------- */
.product-grid-row {
	row-gap: var(--space-lg);
}

.product-card {
	position: relative;
}

.product-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: var(--color-grey-100);
}

.product-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity var(--dur-med) var(--ease), transform var(--dur-slow) var(--ease);
}

.product-card__media img.img-primary {
	opacity: 1;
	z-index: 1;
}

.product-card__media img.img-hover {
	opacity: 0;
	z-index: 2;
}

.product-card:hover .product-card__media img.img-hover {
	opacity: 1;
}

.product-card:hover .product-card__media img.img-primary {
	transform: scale(1.04);
}

.product-card__badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	z-index: 3;
}

.badge-ritz {
	font-family: var(--font-body);
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3em 0.7em;
	color: var(--color-white);
	background: var(--color-black);
}

.badge-ritz.badge-sale {
	background: var(--color-accent);
}

.badge-ritz.badge-new {
	background: var(--color-success);
}

.product-card__wishlist {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-white);
	border: none;
	border-radius: 50%;
	color: var(--color-charcoal);
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.product-card__wishlist svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
}

.product-card:hover .product-card__wishlist,
.product-card__wishlist:focus-visible {
	opacity: 1;
	transform: translateY(0);
}

.product-card__wishlist.is-active {
	color: var(--color-accent);
}

.product-card__wishlist.is-active svg {
	fill: currentColor;
}

.product-card__quickview {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	text-align: center;
	padding: 0.85em 0.5em;
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: none;
	width: 100%;
	transform: translateY(100%);
	opacity: 0;
	transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.product-card:hover .product-card__quickview,
.product-card__quickview:focus-visible {
	transform: translateY(0);
	opacity: 1;
}

.product-card__quickview:hover {
	background: var(--color-black);
}

.product-card__body {
	padding-top: var(--space-sm);
	text-align: left;
}

.product-card__category {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-grey-500);
	margin-bottom: 0.3rem;
	display: block;
}

.product-card__title {
	font-family: var(--font-body);
	font-size: 0.94rem;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 0.35rem;
	line-height: 1.4;
}

.product-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 0.4rem;
}

.product-card__rating svg {
	width: 12px;
	height: 12px;
	fill: var(--color-brass);
}

.product-card__rating svg.is-empty {
	fill: var(--color-grey-300);
}

.product-card__rating span {
	font-size: 0.72rem;
	color: var(--color-grey-500);
	margin-left: 4px;
}

.product-card__price {
	display: flex;
	align-items: center;
	gap: 0.6em;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--color-black);
}

.product-card__price .price-old {
	font-weight: 400;
	color: var(--color-grey-500);
	text-decoration: line-through;
	font-size: 0.85rem;
}

.multibuy-note {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--color-grey-500);
}

.product-info__price .multibuy-note {
	margin-left: 10px;
}

.multibuy-note__label {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-accent);
}
.multibuy-note span:first-child {
    display: none;
}

/* Section carousels (New Arrivals / Best Sellers) */
.product-carousel-nav {
	display: flex;
	gap: var(--space-xs);
}

.carousel-nav-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--color-grey-300);
	background: var(--color-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.carousel-nav-btn svg {
	width: 16px;
	height: 16px;
	stroke: var(--color-black);
	fill: none;
	stroke-width: 1.4;
}

.carousel-nav-btn:hover {
	background: var(--color-black);
	border-color: var(--color-black);
}

.carousel-nav-btn:hover svg {
	stroke: var(--color-white);
}

.product-track-viewport {
	overflow: hidden;
}

.product-track {
	display: flex;
	gap: var(--space-md);
	transition: transform var(--dur-med) var(--ease);
}

.product-track .product-card {
	flex: 0 0 auto;
	width: 78%;
}

.section-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

/* --------------------------------------------------------------------------
10. Featured Collection (editorial split banner)
-------------------------------------------------------------------------- */
.editorial-split {
	display: grid;
	grid-template-columns: 1fr;
	border: 10px solid var(--color-brass);
	border-right: 0;
	border-left: 0;
}
.editorial-split__media {
	position: relative;
	min-height: 340px;
	overflow: hidden;
}
.editorial-split__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}
.editorial-split__content {
	background: var(--color-black);
	color: var(--color-grey-100);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--space-xl) var(--space-xl);
}

.editorial-split__content .eyebrow, .newsletter-section .eyebrow{
	color: var(--color-brass);
}

.editorial-split__content h2 {
	color: var(--color-white);
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: var(--space-sm);
}

.editorial-split__content p {
	color: var(--color-grey-300);
	max-width: 44ch;
	margin-bottom: var(--space-md);
}
.editorial-split .btn-ritz {
    width: fit-content;
}


/* --------------------------------------------------------------------------
11. Promotional Banner (Customise / Bespoke)
-------------------------------------------------------------------------- */
.promo-steps {
	display: flex;
	gap: var(--space-lg);
	margin-block: var(--space-lg);
	flex-wrap: wrap;
}

.promo-step {
	max-width: 160px;
}

.promo-step__num {
	font-family: var(--font-display);
	font-size: 30px;
	color: var(--color-accent);
	margin-bottom: 0.3rem;
}

.promo-step p {
	font-size: 20px;
	color: var(--color-grey-700);
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
11b. Customise — Phone-style Video Showcase
-------------------------------------------------------------------------- */
.customise-showcase {
	background: var(--color-ivory);
}
.customise-showcase:before{content:"";background: url(../images/bg-pattern.webp);}

.customise-showcase__frame {
	margin-bottom: var(--space-xl);
}

.customise-phone {
	position: relative;
	width: min(320px, 74vw);
	aspect-ratio: 9 / 16;
	margin-inline: auto;
	border-radius: 28px;
	overflow: hidden;
	background: var(--color-black);
	box-shadow: 0 0 0 8px var(--color-black), 0 40px 80px rgba(20, 18, 15, 0.28);
}

.customise-phone video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.promo-steps--center {
	justify-content: center;
	text-align: center;
	margin-bottom: var(--space-lg);
}

.promo-steps--center .promo-step {
	max-width: 250px;
}

.customise-video__mute {
	position: absolute;
	right: var(--space-sm);
	bottom: var(--space-sm);
	z-index: 3;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(250, 248, 245, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	transition: background var(--dur-fast) var(--ease);
}

.customise-video__mute:hover {
	background: rgba(250, 248, 245, 0.28);
}

.customise-video__mute svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
}


/* --------------------------------------------------------------------------
12. Why Choose Us
-------------------------------------------------------------------------- */
.value-prop {text-align: center;padding-inline: var(--space-sm);}
.value-prop h3 {font-size: 24px;margin:16px 0;}
.value-prop__icon img {margin: 0 auto;max-width: 70px;}
.value-prop p {color: var(--color-grey-700);font-size: 0.88rem;margin-bottom: 0;}


/* --------------------------------------------------------------------------
13. Testimonials
-------------------------------------------------------------------------- */
.testimonial-section {
	background: var(--color-cream);
}

.testimonial-card {
	background: var(--color-white);
	padding: var(--space-lg) var(--space-md);
	height: 100%;
	border: 1px solid var(--color-grey-300);
}

.testimonial-card__quote {
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--color-black);
	margin-bottom: var(--space-md);
	line-height: 1.5;
}

.testimonial-card__stars {
	display: flex;
	gap: 3px;
	margin-bottom: var(--space-sm);
}

.testimonial-card__stars svg {
	width: 20px;
	height: 20px;
	fill: var(--color-brass);
}
.testimonial-card__stars svg.is-empty {
	fill: var(--color-grey-300);
}
.testimonial-card__author {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.testimonial-card__author-initial {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-black);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 1.05rem;
}

.testimonial-card__author strong {
	display: block;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.testimonial-card__author span {
	font-size: 0.75rem;
	color: var(--color-grey-500);
}

/* Testimonial slider */
.testimonial-carousel {
	position: relative;
	max-width: 1000px;
	margin-inline: auto;
	padding-inline: var(--space-xl);
}
.testimonial-carousel .testimonial-card {
	max-width: 780px;
	margin-inline: auto;
	border: none;
	background: none;
	padding: 0;
	height: auto;
	text-align: center;
}
.testimonial-carousel .testimonial-card__stars {
	justify-content: center;
}
.testimonial-carousel .testimonial-card__quote {
	font-size: clamp(1.25rem, 2.6vw, 1.6rem);
}
.testimonial-carousel .testimonial-card__author {
	justify-content: center;
}
.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--color-grey-300);
	background: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.testimonial-carousel .carousel-control-prev {
	left: 0;
}
.testimonial-carousel .carousel-control-next {
	right: 0;
}
.testimonial-carousel .carousel-control-prev svg,
.testimonial-carousel .carousel-control-next svg {
	width: 16px;
	height: 16px;
	stroke: var(--color-black);
	fill: none;
	stroke-width: 1.5;
}

.testimonial-carousel .carousel-control-prev:hover,
.testimonial-carousel .carousel-control-next:hover {
	background: var(--color-black);
	border-color: var(--color-black);
}

.testimonial-carousel .carousel-control-prev:hover svg,
.testimonial-carousel .carousel-control-next:hover svg {
	stroke: var(--color-white);
}

.testimonial-carousel .carousel-indicators {
	position: static;
	margin: var(--space-lg) 0 0;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--color-grey-300);
	border: none;
	opacity: 1;
	margin-inline: 4px;
}

.testimonial-carousel .carousel-indicators .active {
	background-color: var(--color-accent);
}

/* --------------------------------------------------------------------------
14. Instagram Gallery
-------------------------------------------------------------------------- */
.insta-item {
	position: relative;
	display: block;
	overflow: hidden;
}

.insta-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--dur-med) var(--ease);
}

.insta-item:hover img {
	transform: scale(1.08);
}

.insta-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 18, 15, 0.35);
	opacity: 0;
	transition: opacity var(--dur-fast) var(--ease);
}

.insta-item:hover::after {
	opacity: 1;
}

.insta-item__icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--dur-fast) var(--ease);
	z-index: 1;
}

.insta-item:hover .insta-item__icon {
	opacity: 1;
}

.insta-item__icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--color-white);
	fill: none;
	stroke-width: 1.4;
}

/* --------------------------------------------------------------------------
14b. Instagram + Newsletter — 60/40 split
-------------------------------------------------------------------------- */
.instagram-newsletter__grid {
	display: grid;
	grid-template-columns: 1fr;
}

.instagram-newsletter__insta {
	background: var(--color-white);
	padding: var(--space-xl) var(--space-md);
}

.instagram-newsletter__newsletter.newsletter-section {
	padding: var(--space-xl) var(--space-md);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* --------------------------------------------------------------------------
15. Newsletter
-------------------------------------------------------------------------- */
.newsletter-section {
	background: var(--color-black);
	color: var(--color-grey-100);
	text-align: center;
}

.newsletter-section h2 {
	color: var(--color-white);
}

.newsletter-section .section-subtext {
	color: var(--color-grey-300);
	margin-inline: auto;
}

.newsletter-form {
	display: flex;
	width:100%;
	max-width: 420px;
	margin: var(--space-md) auto 0;
}
.newsletter-form .wpcf7{width:100%;}
.newsletter-form input {
	flex: 1;
	background: none;
	border: none;
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.9rem;width:100%;
	padding: 0.8em 0;border-bottom: 1px solid var(--color-grey-500);
}
.newsletter-form input::placeholder {
	color: var(--color-grey-500);
}
.newsletter-form input:focus {
	outline: none;
}
.field-submit input {
	background: var(--color-brass);text-transform:uppercase;border:0;margin-top:10px;
}
.field-submit input:hover {
	background: var(--color-accent);
	color: var(--color-white);
}

.newsletter-note {
	font-size: 0.75rem;
	color: var(--color-grey-500);
	margin-top: var(--space-sm);
}

.newsletter-feedback {
	font-size: 0.8rem;
	margin-top: var(--space-sm);
	min-height: 1.2em;
	color: var(--color-success);
}

/* --------------------------------------------------------------------------
16. Footer
-------------------------------------------------------------------------- */
.site-footer {
	background: var(--color-charcoal);
	color: var(--color-grey-300);position: relative;
	overflow: hidden;
}
.site-footer:after {
	content: "Ritz The Label";
	font-size: 200px;
	line-height: 200px;
	position: absolute;
	bottom: -30px;
	opacity: 0.05;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.footer-top {
	padding-block: var(--space-2xl) var(--space-lg);
	position: relative;
	z-index: 1;
}
.footer-brand p {
	font-size: 0.85rem;
	max-width: 32ch;
	margin: 16px 0;
}
.footer-social {
	display: flex;
	gap: 16px;
	margin-top: var(--space-md);
}
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.footer-social img {
	margin: 0;max-width: 22px;transition: scale 0.5s ease-in-out;
}
.footer-social a:hover img {
	scale: 1.2;filter: brightness(0) saturate(100%) invert(55%) sepia(6%) saturate(3272%) hue-rotate(358deg) brightness(102%) contrast(73%);
}
.footer-col .footer-title {
	font-family: var(--font-body);
	color: var(--color-white);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: var(--space-md);
}

.footer-col ul li {
	margin-bottom: 0.7rem;
}

.footer-col ul li a {
	font-size: 0.86rem;
	color: var(--color-grey-300);
}

.footer-col ul li a:hover {
	color: var(--color-brass);
}

.footer-contact li {
	display: flex;
	gap: 0.6em;
	align-items: flex-start;
	font-size: 0.86rem;
	color: var(--color-grey-300);
	margin-bottom: 0.9rem;
}

.footer-contact svg {
	width: 15px;
	height: 15px;
	stroke: var(--color-brass);
	fill: none;
	stroke-width: 1.4;
	flex-shrink: 0;
	margin-top: 3px;
}

.footer-bottom {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	align-items: center;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.78rem;
	margin: 0;
}
.payment-icons img {
	max-width: 65px;
}

/* --------------------------------------------------------------------------
17. Back to Top
-------------------------------------------------------------------------- */
.back-to-top {
	position: fixed;
	right: var(--space-md);
	bottom: var(--space-md);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-black);
	color: var(--color-white);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
	z-index: 900;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--color-accent);
}

.back-to-top svg {
	width: 17px;
	height: 17px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
}

/* --------------------------------------------------------------------------
17b. Mobile Bottom Navigation (app-style)
-------------------------------------------------------------------------- */
.mobile-bottom-nav {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1100;
	background: var(--color-ivory);
	border-top: 1px solid var(--color-grey-300);
	box-shadow: 0 -8px 24px rgba(20, 18, 15, 0.08);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-bottom-nav__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	padding-block: 0.5rem 0.4rem;
	background: none;
	border: none;
	color: var(--color-charcoal);
	font-family: var(--font-body);
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	transition: color var(--dur-fast) var(--ease);
}

.mobile-bottom-nav__item svg {
	width: 21px;
	height: 21px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
}

.mobile-bottom-nav__item:active,
.mobile-bottom-nav__item.is-active {
	color: var(--color-accent);
}

.mobile-bottom-nav__icon-wrap {
	position: relative;
	display: inline-flex;
}

.mobile-bottom-nav__icon-wrap .count-badge {
	position: absolute;
	top: -5px;
	right: -9px;
	min-width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 0.58rem;
	font-family: var(--font-body);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* --------------------------------------------------------------------------
18a. Side Cart Drawer
-------------------------------------------------------------------------- */
.cart-drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(20, 18, 15, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s;
	z-index: 1300;
}

.cart-drawer-backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

.cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: min(420px, 92vw);
	background: var(--color-ivory);
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1301;
	display: flex;
	flex-direction: column;
}

.cart-drawer.is-open {
	transform: translateX(0);
}

.cart-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-md);
	border-bottom: 1px solid var(--color-grey-300);
}

.cart-drawer-head h2 {
	font-size: 1.3rem;
}

.cart-drawer-close {
	background: none;
	border: none;
	font-size: 1.6rem;
	line-height: 1;
	color: var(--color-black);
}

.cart-drawer-items {
	flex: 1;
	overflow-y: auto;max-height: 65vh;
	padding: var(--space-md);
}

.cart-item {
	display: flex;
	gap: var(--space-sm);
	padding-block: var(--space-sm);
	border-bottom: 1px solid var(--color-grey-100);
}

.cart-item__media {
	width: 76px;
	height: 96px;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-grey-100);
}

.cart-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-item__body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cart-item__title {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--color-black);
	margin-bottom: 0.2rem;
}

.cart-item__meta {
	font-size: 0.75rem;
	color: var(--color-grey-500);
	margin-bottom: 0.4rem;
}

.cart-item__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.cart-item__qty-value {
	font-size: 0.82rem;
	color: var(--color-grey-700);
}

.cart-item__price {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--color-black);
}

.cart-item__remove {
	background: none;
	border: none;
	color: var(--color-grey-500);
	font-size: 0.72rem;
	text-decoration: underline;
	text-underline-offset: 2px;
	padding: 0;
	margin-left: var(--space-sm);
}

.cart-item__remove:hover {
	color: var(--color-accent);
}

.cart-drawer-empty {
	text-align: center;
	padding: var(--space-xl) var(--space-sm);
	color: var(--color-grey-500);
	display: none;
}

.cart-drawer-foot {
	padding: var(--space-md);
	border-top: 1px solid var(--color-grey-300);
}

.cart-subtotal-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--space-sm);
	font-size: 0.95rem;
}

.cart-subtotal-row strong {
	font-family: var(--font-display);
	font-size: 1.2rem;
}

.cart-drawer-note {
	font-size: 0.75rem;
	color: var(--color-grey-500);
	margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
18b. Trust Bar
-------------------------------------------------------------------------- */
.trust-bar {
	background: var(--color-white);
	border-top: 1px solid var(--color-grey-300);
	border-bottom: 1px solid var(--color-grey-300);
	padding-block: var(--space-xs);
}

.trust-bar .row {
	align-items: stretch;
	--bs-gutter-x: 0;
}

.trust-bar .row > div {
	border-right: 1px solid var(--color-grey-100);
}

.trust-bar .row > div:last-child {
	border-right: none;
}

.trust-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	padding: var(--space-md) var(--space-sm);
	text-align: left;
	height: 100%;    flex-direction: column;
}

.trust-badge img {
	width: auto;max-height: 100px;
	max-width: 250px;
	object-fit: contain;
	flex-shrink: 0;
	transition: transform var(--dur-fast) var(--ease);
}
.badgelogo {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.trust-badge:hover img {
	transform: scale(1.05);
}

/* --------------------------------------------------------------------------
18c. Video Section — How It's Made
-------------------------------------------------------------------------- */
.video-showcase {
	background: var(--color-cream);
	overflow: hidden;position:relative;
}
.video-showcase:before {
	content: "";
	background: url(../images/bg-pattern.webp) repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0.08;
	top: 0;
}
.video-showcase__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
	align-items: center;
	padding-block: var(--space-2xl);
}

.video-showcase__content p {
	color: var(--color-grey-700);
	max-width: 46ch;
	margin-bottom: var(--space-lg);
}

.video-showcase__stats {
	display: flex;
	gap: var(--space-lg);
	flex-wrap: wrap;
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--color-grey-300);
}

.video-showcase__stats div {
	min-width: 100px;
}

.video-showcase__stats strong {
	display: block;
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--color-black);
	line-height: 1;
	margin-bottom: 0.35rem;
}

.video-showcase__stats span {
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-grey-500);
}

.video-showcase__media {
	display: flex;
	justify-content: center;
}

.video-frame {
	position: relative;
	width: 100%;
	/*aspect-ratio: 4 / 5;
	max-width: 420px;*/
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 40px 70px rgba(20, 18, 15, 0.22);
}

.video-frame video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: var(--color-charcoal);max-height: 360px;
}

.video-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0) 35%);
	pointer-events: none;
}

.video-play-btn {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(250, 248, 245, 0.92);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
	z-index: 2;
}

.video-play-btn:hover {
	transform: scale(1.08);
	background: var(--color-white);
}

.video-play-btn svg {
	width: 22px;
	height: 22px;
	fill: var(--color-black);
	margin-left: 3px;
}

.video-play-btn.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* --------------------------------------------------------------------------
19. Quick View Modal
-------------------------------------------------------------------------- */
.quickview-modal .modal-content {
	border-radius: 0;
	border: none;
}

.quickview-modal .modal-body {
	padding: var(--space-md);
}

.quickview-media img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
}

.quickview-price {
	display: flex;
	align-items: center;
	gap: 0.6em;
	font-size: 1.2rem;
	color: var(--color-black);
	margin-bottom: var(--space-sm);
}

.quickview-price .price-old {
	font-size: 1rem;
	color: var(--color-grey-500);
	text-decoration: line-through;
}

.size-options {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: var(--space-md);
}

.size-options input {
	display: none;
}

.size-options label {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-grey-300);
	font-size: 0.8rem;
	transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.size-options input:checked + label {
	background: var(--color-black);
	border-color: var(--color-black);
	color: var(--color-white);
}

/* --------------------------------------------------------------------------
19. Scroll Reveal Utility
-------------------------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* --------------------------------------------------------------------------
20. Section Spacing Helper
-------------------------------------------------------------------------- */
.section-pad {
	padding-block: var(--space-xl);
}

.bg-ivory { background-color: var(--color-ivory); }
.bg-cream { background-color: var(--color-cream); }
.bg-white { background-color: var(--color-white); }

/* --------------------------------------------------------------------------
21. About Page
-------------------------------------------------------------------------- */

/* About hero (static, single image) */
.about-hero {
	position: relative;
	overflow: hidden;
	min-height: 46vh;
}

.about-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 9, 8, 0.35) 0%, rgba(10, 9, 8, 0.6) 100%);
}

.about-hero__content {
	position: relative;
	z-index: 1;
	min-height: 46vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-white);
	padding-block: var(--space-2xl);
}

.about-hero__content .eyebrow {
	color: var(--color-brass);
}

.about-hero__content h1 {
	color: var(--color-white);
	font-size: clamp(2.4rem, 6vw, 4rem);
}

.about-hero__content p {
	color: var(--color-grey-100);
	max-width: 52ch;
	margin-top: var(--space-sm);
}

/* Our Story split (light, reading-friendly) */
.story-split {
	display: grid;
	grid-template-columns: 1fr;
	background: var(--color-ivory);
}

.story-split__media {
	position: relative;
	min-height: 420px;
	overflow: hidden;
}

.story-split__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-split__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
}

.story-split__content .eyebrow {
	color: var(--color-accent);
}

.story-split__content h2 {
	font-size: clamp(2rem, 4vw, 2.9rem);
	margin-bottom: var(--space-md);
}

.story-split__content p {
	color: var(--color-grey-700);
	margin-bottom: var(--space-md);
}
.story-split__content h4 {
    padding-top: 30px;
    padding-bottom: 20px;
}
.story-split__content p:last-of-type {
	margin-bottom: 0;
}
.story-split__content ul {
    list-style: disc;
    padding-left: 24px;
}
.story-split__content ul li{margin-bottom:6px;}

/* Founder timeline */
.founder-timeline {
	max-width: 500px;
	margin-inline: auto;
}

.founder-timeline__item {
	position: relative;
	padding-left: 2.5rem;
	padding-bottom: var(--space-lg);
	border-left: 1px solid var(--color-grey-300);
}

.founder-timeline__item:last-child {
	border-left-color: transparent;
	padding-bottom: 0;
}

.founder-timeline__dot {
	position: absolute;
	left: -9px;
	top: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--color-accent);
	border: 3px solid var(--color-ivory);
}

.founder-timeline__year {
	font-size: 16px;font-weight:500;
	color: var(--color-accent);
	margin-bottom: 0.25rem;
}

.founder-timeline__item h3 {
	margin-bottom: 16px;
}

.founder-timeline__item p {
	color: var(--color-grey-700);
	margin-bottom: 0;
	max-width: 56ch;
}

/* Craftsmanship gallery */
.gallery-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 2px;
	aspect-ratio: 4 / 5;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--dur-slow) var(--ease);
}

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

.gallery-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(20, 18, 15, 0.55) 0%, rgba(20, 18, 15, 0) 45%);
}

.gallery-card figcaption {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: var(--space-sm);
	color: var(--color-white);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	width: 100%;
}

/* Explore / cross-link cards */
.explore-card {
	display: block;
	padding: var(--space-lg);
	border: 1px solid var(--color-grey-300);
	text-align: center;
	height: 100%;
	transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.explore-card:hover {
	border-color: var(--color-accent);
	background: var(--color-white);
}

.explore-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.explore-card p {
	color: var(--color-grey-700);
	font-size: 0.88rem;
	margin-bottom: 1rem;
}

.explore-card__link {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent);
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
}

/* Closing CTA */
.about-cta {
	text-align: center;
}

.about-cta .btn-group-inline {
	display: flex;
	gap: var(--space-sm);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--space-md);
}

/* --------------------------------------------------------------------------
22. Customise Page
-------------------------------------------------------------------------- */

/* Reuse .about-hero for the Customise hero — no additional CSS needed */

/* 3-step process cards */
.process-card {
	text-align: center;
	padding: var(--space-lg) var(--space-md);
	border: 1px solid var(--color-grey-300);
	height: 100%;
	transition: border-color var(--dur-fast) var(--ease);
}

.process-card:hover {
	border-color: var(--color-accent);
}

.process-card__num {
	font-family: var(--font-display);
	font-size: 2.6rem;
	line-height: 1;
	color: var(--color-accent);
	margin-bottom: var(--space-sm);
}

.process-card h3 {
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.6rem;
}

.process-card p {
	color: var(--color-grey-700);
	font-size: 0.9rem;
	margin-bottom: 0;
}

/* FAQ accordion */
.faq-accordion .accordion-item {
	background: none;
	border: none;
	border-bottom: 1px solid var(--color-grey-300);
}

.faq-accordion .accordion-button {
	background: none;
	border: none;
	box-shadow: none;
	font-family: var(--font-display);
	font-size: 1.6rem;font-weight:500;
	color: var(--color-black);
	padding: var(--space-md) 0;
}

.faq-accordion .accordion-button::after {
	width: 18px;
	height: 18px;
	background-size: 18px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	color: var(--color-accent);
	box-shadow: none;
}

.faq-accordion .accordion-body {
	padding: 0 0 var(--space-md);
	color: var(--color-grey-700);
	font-size: 1rem;
	max-width: 95ch;
}

.narrow-col {
	max-width: 960px;
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
23. FAQs Page
-------------------------------------------------------------------------- */

.faq-jumpnav {
	display: flex;
	justify-content: center;
	gap: var(--space-sm);
	flex-wrap: wrap;
	margin-bottom: var(--space-lg);
}

.faq-jumpnav a {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.65em 1.4em;
	border: 1px solid var(--color-grey-300);
	color: var(--color-charcoal);
	transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.faq-jumpnav a:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

/* --------------------------------------------------------------------------
24. Contact Page
-------------------------------------------------------------------------- */
.contact-info-card {
	background: var(--color-ivory);
	border: 1px solid var(--color-grey-300);
	padding: var(--space-lg);
	height: 100%;
}

.contact-info-card h3 {
	margin-bottom: var(--space-md);
}

.contact-info-list li {
	display: flex;
	gap: 0.75em;
	align-items: flex-start;
	margin-bottom: var(--space-md);
	font-size: 0.92rem;
	color: var(--color-charcoal);
}

.contact-info-list li:last-child {
	margin-bottom: 0;
}

.contact-info-list svg {
	width: 18px;
	height: 18px;
	stroke: var(--color-accent);
	fill: none;
	stroke-width: 1.4;
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-info-list a {
	color: var(--color-charcoal);
}

.contact-info-list a:hover {
	color: var(--color-accent);
}

.contact-social {
	display: flex;
	gap: var(--space-xs);
	margin-top: var(--space-lg);
}

.contact-social {
	gap: 16px;
}
.contact-social a {
	border: 1px solid var(--color-accent);
	width: 40px;
	height: 40px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;transition:all 0.5s ease-in-out;
}
.contact-social img {
	filter: brightness(0) saturate(100%) invert(16%) sepia(18%) saturate(7492%) hue-rotate(342deg) brightness(96%) contrast(94%);
	max-width: 22px;
}
.contact-social a:hover {
    background: var(--color-accent);
}
.contact-social a:hover img {
    filter: grayscale(1);
}

.contact-form-field {
	margin-bottom: var(--space-md);
}

.contact-form-field label {
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 0.4rem;
}

.contact-form-field input,
.contact-form-field textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--color-grey-300);
	background: none;
	padding: 0.6em 0;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--color-black);
	transition: border-color var(--dur-fast) var(--ease);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
	outline: none;
	border-color: var(--color-accent);
}

.contact-form-field textarea {
	resize: vertical;
	max-height: 150px;
}

.contact-form-feedback {
	font-size: 0.85rem;
	min-height: 1.2em;
	margin-top: var(--space-sm);
}

/* --------------------------------------------------------------------------
24. Generic Page / Single Post / Archive Templates
-------------------------------------------------------------------------- */
.page-title {
	margin-bottom: var(--space-md);
}

.page-content p {
	margin-bottom: var(--space-md);
}

.single-post__header {
	margin-bottom: var(--space-md);
}

.single-post__thumbnail {
	margin-bottom: var(--space-md);
}

.single-post__thumbnail img {
	width: 100%;
	height: auto;
}

.single-post__content p {
	margin-bottom: var(--space-md);
}

.archive-posts {
	display: grid;
	gap: var(--space-lg);
}

.archive-posts__item {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: var(--space-md);
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--color-grey-300);
}

.archive-posts__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--color-grey-100);
}

.archive-posts__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.archive-posts__body h2 {
	font-size: 1.4rem;
	margin-block: 0.3em 0.5em;
}

.archive-posts__body p {
	color: var(--color-grey-700);
}

@media (max-width: 767.98px) {
	.archive-posts__item {
		grid-template-columns: 1fr;
	}
}

.pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	margin-top: var(--space-xl);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding-inline: 0.4em;
	font-size: 0.82rem;
	border: 1px solid var(--color-grey-300);
	color: var(--color-charcoal);
}

.pagination a.page-numbers:hover,
.pagination a.page-numbers:focus-visible {
	background: var(--color-black);
	border-color: var(--color-black);
	color: var(--color-white);
}

.pagination .page-numbers.current {
	background: var(--color-black);
	border-color: var(--color-black);
	color: var(--color-white);
}


.default-content ul{list-style: disc;padding-left:20px;margin-bottom:30px;}
.default-content ol{list-style: auto;padding-left:20px;margin-bottom:30px;}
.default-content li{margin-bottom:6px;}
.default-content h2, .default-content h3, .default-content h4{margin-top:20px;margin-bottom:20px;}
.default-content a {color: var(--color-brass);}
.default-content a:hover {color: #000000;}



.shop-pages-main #primary {width: 75%;flex: 0 0 auto;}
.shop-pages-main #sidebar {width: 25%;flex: 0 0 auto;}
.siebar-category{margin-top:30px;}
.siebar-category ul li ul {display: none;}
.siebar-category li {margin-bottom: 10px;}
.wc-block-components-product-details > span {display: inline-block;width: 100%;margin-bottom: 6px;}
.wc-block-components-product-details span span[aria-hidden="true"] {display: none;}
.wc-block-components-product-details__name {font-weight: 500;}
.wc-block-components-product-name {font-size: 14px !important;}
nav.header-menu ul.menu > li > a {padding: 30px 25px;text-transform: uppercase;font-weight: 500;position: relative;}
nav.header-menu a:hover, .current-menu-item > a{color: var(--color-accent);}