/* ========================================
   COMPONENTS - Buttons, Cards, Forms, Nav
   ======================================== */

/* ========================================
   BUTTONS
   ======================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.75rem;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition-base);
	text-decoration: none;
}

.btn:focus {
	outline: 2px solid var(--brown-light);
	outline-offset: 2px;
}

.btn:disabled,
.btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.btn-primary {
	background-color: var(--deep-wine);
	color: var(--color-white);
	border-color: var(--deep-wine);
}

.btn-primary:hover {
	background-color: #4A3D35;
	border-color: #4A3D35;
	color: var(--color-white);
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: var(--white);
	color: var(--brown-dark);
	border-color: var(--brown-dark);
}

.btn-secondary:hover {
	background-color: var(--brown-dark);
	color: var(--white);
}

.btn-outline {
	background-color: transparent;
	color: var(--brown-dark);
	border-color: var(--brown-dark);
}

.btn-outline:hover {
	background-color: var(--brown-dark);
	color: var(--white);
}

.btn-text {
	background-color: transparent;
	color: var(--brown-dark);
	border-color: transparent;
	padding: 0.5rem;
}

.btn-text:hover {
	color: var(--brown-medium);
	background-color: transparent;
}

.btn-sm {
	padding: 0.625rem 1.25rem;
	font-size: var(--text-xs);
}

.btn-lg {
	padding: 1.125rem 2.25rem;
	font-size: var(--text-base);
}

.btn-icon {
	padding: 0.75rem;
	min-width: 40px;
	min-height: 40px;
}

/* ========================================
   CARD SYSTEM — Unified Design Language
   ======================================== */

.card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: all var(--transition-base);
}

.card:hover {
	box-shadow: var(--shadow-md);
}

.card--flat {
	border: none;
	background: none;
	box-shadow: none;
}

.card--flat:hover {
	box-shadow: none;
}

.card--accent {
	position: relative;
}

.card--accent::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--deep-wine);
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.card--center {
	text-align: center;
}

.card-image {
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: auto;
	transition: transform var(--transition-slow);
}

.card:hover .card-image img,
.card-image a:hover img {
	transform: scale(1.03);
}

.card-image--cover {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

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

.card-image--portrait {
	aspect-ratio: 3 / 4;
}

.card-image--portrait img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-body {
	padding: var(--space-xl);
}

.card-body--sm {
	padding: var(--space-lg);
}

.card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: var(--space-md);
	color: var(--golden-brown);
}

.card-icon--center {
	margin-left: auto;
	margin-right: auto;
}

.card-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: var(--leading-snug);
	margin-bottom: var(--space-sm);
	color: var(--color-text);
}

.card-title a {
	color: var(--color-text);
}

.card-title a:hover {
	color: var(--golden-brown);
}

.card-text {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-md);
}

.card-text:last-child {
	margin-bottom: 0;
}

.card-meta {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.card-footer {
	padding: var(--space-md) var(--space-xl);
	border-top: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ========================================
   PRODUCT CARD — Standardized
   ======================================== */

.product-card {
	position: relative;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.product-card-image {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background-color: var(--cream);
}

.product-card-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
	transform: scale(1.05);
}

.product-card-badge {
	position: absolute;
	top: var(--space-sm);
	left: var(--space-sm);
	z-index: 2;
	padding: 4px 10px;
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: var(--radius-sm);
	background-color: var(--deep-wine);
	color: var(--color-white);
}

.product-card-badge.sold-out {
	background-color: var(--taupe);
}

.product-card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(91, 76, 66, 0.3);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.product-card:hover .product-card-overlay {
	opacity: 1;
}

.product-card-info {
	padding: var(--space-lg);
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.product-card-category {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--golden-brown);
}

.product-card-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-text);
}

.product-card-title a {
	color: var(--color-text);
	text-decoration: none;
}

.product-card-title a:hover {
	color: var(--golden-brown);
}

.product-card-price {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	margin-top: auto;
	padding-top: var(--space-sm);
}

.product-card-price del {
	opacity: 0.5;
	margin-right: 6px;
}

.product-card-price ins {
	text-decoration: none;
	color: var(--color-text);
}

.product-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: var(--space-sm);
	font-size: var(--text-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--deep-wine);
	text-decoration: none;
	transition: gap var(--transition-fast);
}

.product-card-cta:hover {
	gap: 10px;
}

.product-card-cta svg {
	flex-shrink: 0;
}

/* ========================================
   CTA SECTION — 2 Brand Patterns
   ======================================== */

.cta-section {
	padding: var(--space-4xl) 0;
}

.cta-section--dark {
	background-color: var(--deep-wine);
	color: var(--color-white);
}

.cta-section--dark .section-label {
	color: var(--color-white);
	opacity: 0.7;
}

.cta-section--dark .section-title {
	color: var(--color-white);
}

.cta-section--dark .section-subtitle {
	color: var(--color-white);
	opacity: 0.8;
}

.cta-section--dark .btn-primary {
	background-color: var(--color-white);
	color: var(--deep-wine);
	border-color: var(--color-white);
}

.cta-section--dark .btn-primary:hover {
	background-color: var(--cream);
	border-color: var(--cream);
}

.cta-section--dark .btn-outline {
	color: var(--color-white);
	border-color: var(--color-white);
}

.cta-section--dark .btn-outline:hover {
	background-color: var(--color-white);
	color: var(--deep-wine);
}

.cta-section--dark .btn-text {
	color: var(--color-white);
}

.cta-section--dark .btn-text:hover {
	color: var(--cream);
}

.cta-section--light {
	background-color: var(--color-surface);
}

.cta-section-inner {
	max-width: var(--container-md);
	margin: 0 auto;
	text-align: center;
}

.cta-section-actions {
	display: flex;
	gap: var(--space-lg);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--space-xl);
}

.cta-section-image {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.cta-section-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(91, 76, 66, 0.55);
	z-index: 1;
}

.cta-section-image .container {
	position: relative;
	z-index: 2;
}

/* ========================================
   GRID — Section-level card grids
   ======================================== */

.card-grid {
	display: grid;
	gap: var(--space-xl);
}

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

.card-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.card-grid--compact {
	gap: var(--space-lg);
}

/* ========================================
   PROCESS STEP — Uniform system
   ======================================== */

.process-step {
	position: relative;
	padding-top: var(--space-xl);
}

.process-step-number {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: 500;
	line-height: 1;
	color: rgba(91, 76, 66, 0.1);
	margin-bottom: var(--space-md);
}

.process-step-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: var(--leading-snug);
	color: var(--color-text);
	margin-bottom: var(--space-sm);
}

.process-step-text {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	max-width: 320px;
}

.process-step-connector {
	position: absolute;
	height: 1px;
	background-color: var(--warm-beige);
}

/* ========================================
   SECTION HEADER — Standardized
   ======================================== */

.section-header {
	margin-bottom: var(--space-3xl);
}

.section-header--center {
	text-align: center;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.section-label {
	display: inline-block;
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--golden-brown);
	margin-bottom: var(--space-md);
}

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 500;
	line-height: var(--leading-tight);
	color: var(--color-text);
	margin-bottom: var(--space-md);
}

.section-subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: var(--leading-relaxed);
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
	margin-bottom: var(--space-lg);
}

.form-label {
	display: block;
	font-size: var(--text-sm);
	font-weight: 500;
	margin-bottom: var(--space-sm);
	color: var(--color-text);
}

.form-label.required::after {
	content: '*';
	color: var(--brown-medium);
	margin-left: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: 1.5;
	color: var(--color-text);
	background-color: var(--white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	transition: border-color var(--transition-fast),
	box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: var(--brown-medium);
	box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: var(--text-light);
}

.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
	background-color: var(--cream);
	cursor: not-allowed;
	opacity: 0.7;
}

.form-textarea {
	resize: vertical;
	min-height: 120px;
}

.form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b5b4e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.form-check {
	display: flex;
	align-items: flex-start;
	gap: var(--space-sm);
	margin-bottom: var(--space-sm);
}

.form-check-input {
	appearance: none;
	width: 18px;
	height: 18px;
	min-width: 18px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background-color: var(--white);
	cursor: pointer;
	transition: all var(--transition-fast);
	position: relative;
}

.form-check-input:checked {
	background-color: var(--brown-dark);
	border-color: var(--brown-dark);
}

.form-check-input:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid var(--white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.form-check-input:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-check-label {
	font-size: var(--text-sm);
	cursor: pointer;
}

.form-error-message {
	font-size: var(--text-sm);
	color: var(--deep-wine);
	margin-top: var(--space-xs);
}

.form-help-text {
	font-size: var(--text-xs);
	color: var(--text-light);
	margin-top: var(--space-xs);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-lg);
}

@media (max-width: 480px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   NAVIGATION
   ======================================== */

/* Main Navigation */
.main-navigation {
	width: 100%;
	position: relative;
}

#primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#primary-menu > li {
	position: relative;
	display: flex;
	align-items: center;
}

#primary-menu > li > a {
	display: block;
	padding: 8px 0;
	font-size: var(--text-sm);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text);
	position: relative;
	z-index: 2;
}

#primary-menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--brown-dark);
	transition: width var(--transition-base);
}

#primary-menu > li > a:hover::after,
#primary-menu > li.current-menu-item > a::after,
#primary-menu > li.current-menu-ancestor > a::after {
	width: 100%;
}

#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-ancestor > a {
	color: var(--brown-dark);
}

/* Submenu - Standard Dropdown (Non-Mega Only) */
#primary-menu > li:not(.mega-menu) > .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background-color: var(--white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	box-shadow: 0 4px 20px rgba(91, 76, 66, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	z-index: var(--z-dropdown);
	padding: var(--space-sm) 0;
	pointer-events: none;
}

#primary-menu > li:not(.mega-menu):hover > .sub-menu,
#primary-menu > li:not(.mega-menu):focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

#primary-menu .sub-menu li {
	border-bottom: none;
	margin: 0;
}

#primary-menu .sub-menu li:last-child {
	border-bottom: none;
}

#primary-menu .sub-menu a {
	display: block;
	padding: var(--space-sm) var(--space-lg);
	font-size: var(--text-sm);
	color: var(--color-text);
	transition: all 0.2s ease;
	position: relative;
}

#primary-menu .sub-menu a::before {
	content: '';
	position: absolute;
	left: var(--space-lg);
	right: var(--space-lg);
	bottom: var(--space-xs);
	height: 1px;
	background-color: var(--color-border);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

#primary-menu .sub-menu a:hover {
	background-color: transparent;
	color: var(--brown-dark);
	padding-left: calc(var(--space-lg) + 4px);
}

#primary-menu .sub-menu a:hover::before {
	transform: scaleX(1);
}

/* ========================================
   MEGA MENU DROPDOWN
   ======================================== */

.main-navigation .menu-item.mega-menu > .sub-menu {
	position: absolute;
	top: calc(100% + 0px);
	left: 50%;
	transform: translateX(-50%);

	display: none;

	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 36px;

	width: auto;
	min-width: min(600px, 80vw);
	max-width: min(1400px, 94vw);

	padding: 36px 40px;

	background: var(--cream);

	box-shadow: 0 10px 30px rgba(91, 76, 66, .04);

	border-top: 1px solid rgba(60,40,20,.08);

	z-index: 9999;
	overflow: visible;
}

/* SHOW when JS adds .mega-menu-open class */
.main-navigation .menu-item.mega-menu.mega-menu-open > .sub-menu {
	display: grid;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ========================================
   COLUMN CONTAINERS
   ======================================== */

.main-navigation .menu-item.mega-menu > .sub-menu > li {
	flex: 1;
	min-width: 0;

	display: flex;
	flex-direction: column;

	position: static !important;

	background: transparent !important;
	box-shadow: none !important;
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
}

/* ========================================
   COLUMN HEADINGS
   ======================================== */

.main-navigation .sub-menu .sub-menu {
	left: auto;
	top: auto;
}

/* ========================================
   MENU TOGGLE INDICATOR
======================================== */

.menu-toggle-indicator {
	display: inline-flex;
	align-items: center;
	margin-left: var(--space-xs);
	opacity: 0.5;
	transition: transform var(--transition-base);
}

#primary-menu > li:hover > a .menu-toggle-indicator,
#primary-menu > li:focus-within > a .menu-toggle-indicator {
	opacity: 1;
	transform: rotate(180deg);
}

#primary-menu .menu-item > a {
	position: relative;
}

/* ========================================
   MEGA MENU DROPDOWN WRAPPER (JS-driven)
   ======================================== */

.main-navigation .mega-menu-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: var(--white);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-lg);
	display: none;
	z-index: 1000;
}

.main-navigation .menu-item.mega-menu.mega-menu-open > .mega-menu-dropdown {
	display: block;
}

/* Mobile Navigation */
.mobile-navigation {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--cream-light);
	z-index: var(--z-modal);
	overflow-y: auto;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
}

.mobile-navigation.active {
	display: block;
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.mobile-navigation-inner {
	padding: var(--space-2xl) var(--space-lg);
}

/* ========================================
     ENHANCED MOBILE NAVIGATION
     ======================================== */

.mobile-nav {
	padding: var(--space-lg) 0;
}

.mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu > li {
	border-bottom: 1px solid var(--color-border);
}

.mobile-menu > li > a,
.mobile-menu > li > button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: var(--space-md) 0;
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-text);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
}

.mobile-menu-link-text {
	flex: 1;
}

.mobile-submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: var(--space-md) 0;
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-text);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
}

.mobile-submenu-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--color-text-muted);
	transition: transform var(--transition-base);
}

.mobile-menu > li.active > .mobile-submenu-toggle .mobile-submenu-indicator {
	transform: rotate(180deg);
}

.mobile-submenu {
	list-style: none;
	margin: 0;
	padding: 0 0 var(--space-md) 0;
	display: none;
}

.mobile-submenu.active {
	display: block;
}

.mobile-submenu li {
	padding-left: var(--space-md);
}

.mobile-submenu a {
	display: block;
	padding: var(--space-sm) 0;
	font-size: var(--text-base);
	color: var(--color-text-muted);
}

.mobile-submenu a:hover {
	color: var(--brown-dark);
}

.mobile-menu-header {
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--color-border);
	margin-bottom: var(--space-lg);
}

.mobile-menu-label {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--text-light);
}

.mobile-menu-footer {
	margin-top: var(--space-xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-border);
}

.mobile-menu-footer a {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-sm) 0;
	font-size: var(--text-base);
	color: var(--color-text-muted);
}

.mobile-menu-footer a:hover {
	color: var(--brown-dark);
}

.mobile-menu-footer svg {
	flex-shrink: 0;
}

.mobile-menu-empty {
	font-size: var(--text-base);
	color: var(--color-text-muted);
	text-align: center;
	padding: var(--space-xl) 0;
}



/* ========================================
   HEADER
   ======================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(245, 241, 236, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
	z-index: 1000;
}

.site-header.sticky {
	position: fixed;
	top: 0;
	background: rgba(245, 241, 236, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: var(--shadow-sm);
	z-index: 1000;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-md) var(--gutter);
	max-width: var(--container-xl);
	margin: 0 auto;
}

.site-branding {
	flex-shrink: 0;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	max-height: 60px;
	width: auto;
}

.site-description {
	display: none;
}

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

.header-search,
.header-account,
.header-cart {
	display: flex;
	align-items: center;
}

.header-cart {
	position: relative;
}

.cart-link {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	padding: var(--space-xs);
	color: var(--color-text);
}

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

.cart-count {
	min-width: 18px;
	height: 18px;
	padding: 0 var(--space-xs);
	background-color: var(--deep-wine);
	color: var(--color-white);
	font-size: var(--text-xs);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: none !important;
	border: none !important;
	cursor: pointer !important;
	padding: var(--space-sm);
	gap: 5px;
	position: relative !important;
	z-index: 9999999 !important;
	pointer-events: auto !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--color-text);
	transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}



/* ========================================
   LOADING STATES
   ======================================== */

.loading {
	position: relative;
	pointer-events: none;
}

.loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
}

.spinner {
	width: 24px;
	height: 24px;
	border: 2px solid var(--color-border);
	border-top-color: var(--brown-dark);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Skeleton loading */
.skeleton {
	background: linear-gradient(
		90deg,
		var(--cream) 25%,
		var(--cream-light) 50%,
		var(--cream) 75%
	);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s ease-in-out infinite;
	border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* ========================================
   TOP ANNOUNCEMENT
   ======================================== */

.top-announcement {
	background-color: var(--brown-dark);
	color: var(--white);
	padding: var(--space-sm) 0;
	text-align: center;
}

.top-announcement p {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0;
}

/* ========================================
   HEADER MAIN STRUCTURE
   ======================================== */

.header-main {
	padding: var(--space-md) 0;
	position: relative;
	z-index: 2;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-lg);
	position: relative;
	z-index: 2;
}

.site-header .site-branding {
	flex-shrink: 0;
}

.site-header .site-branding .custom-logo {
	max-height: 50px;
	width: auto;
}

.site-header .site-title-link {
	display: block;
}

.site-header .site-title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 500;
	color: var(--color-text);
}

.site-header .main-navigation {
	flex-grow: 1;
	display: flex;
	justify-content: center;
}

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

.header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--color-text);
	transition: color var(--transition-fast);
	position: relative;
}

.header-icon:hover {
	color: var(--color-accent);
}

.header-icon svg {
	flex-shrink: 0;
}

.header-icon .cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	background-color: var(--deep-wine);
	color: var(--color-white);
	font-size: var(--text-xs);
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
}


/* ========================================
   HOME HERO
    ======================================== */

.home-hero {
	padding: var(--space-4xl) 0;
	background-color: var(--cream-light);
	min-height: 85vh;
	display: flex;
	align-items: center;
}

.home-hero-inner {
	max-width: var(--container-xl);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3xl);
	align-items: center;
}

.home-hero-content {
	order: 1;
}

.home-hero-label {
	display: inline-block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--golden-brown);
	margin-bottom: var(--space-lg);
}

.home-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 500;
	line-height: 1.15;
	color: var(--color-text);
	margin-bottom: var(--space-lg);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.2s;
}

.home-hero-subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-xl);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.4s;
}

.home-hero-ctas {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.6s;
}

.home-hero-image {
	order: 2;
	position: relative;
	opacity: 0;
	transform: translateX(30px);
	animation: fadeInLeft 0.8s ease forwards;
	animation-delay: 0.3s;
}

.home-hero-image-main {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.home-hero-image-secondary {
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 50%;
	aspect-ratio: 1;
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image-placeholder span {
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-light);
}

.hero-image-placeholder.small {
	width: 100%;
	height: 100%;
}

/* ========================================
    BRAND STORY
    ======================================== */

.home-brand-story {
	padding: var(--space-4xl) 0;
	background-color: var(--white);
}

.home-brand-story-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3xl);
	align-items: center;
}

.home-brand-story-image {
	position: relative;
}

.home-brand-story-image .brand-image-placeholder {
	aspect-ratio: 4 / 5;
	background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-brand-story-image .brand-image-placeholder span {
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-light);
}

.home-brand-story-content {
	padding-left: var(--space-xl);
}

.home-brand-story-text p {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-xl);
}

.home-brand-story-content .btn-text {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.home-brand-story-content .btn-text svg {
	transition: transform var(--transition-base);
}

.home-brand-story-content .btn-text:hover svg {
	transform: translateX(4px);
}

/* ========================================
    SERVICES
    ======================================== */

.home-services {
	padding: var(--space-4xl) 0;
	background-color: var(--cream);
}

.home-services-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.home-services-header .section-subtitle {
	margin-left: auto;
	margin-right: auto;
}

.home-services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-xl);
}

.service-card-Editorial {
	background-color: var(--white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
}

.service-card-Editorial:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.service-card-image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.service-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-image-placeholder span {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--brown-light);
}

.service-card-content {
	padding: var(--space-xl);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card-title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-sm);
}

.service-card-text {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-md);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.service-card-arrow {
	margin-top: auto;
}

.service-card-link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-medium);
	transition: color var(--transition-fast);
}

.service-card-link:hover {
	color: var(--brown-dark);
}

.service-card-link svg {
	transition: transform var(--transition-base);
}

.service-card-link:hover svg {
	transform: translateX(4px);
}

/* ========================================
    COLLECTIONS
    ======================================== */

.home-collections {
	padding: var(--space-4xl) 0;
	background-color: var(--cream-light);
}

.home-collections-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.home-collections-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-lg);
}

.collection-card {
	display: block;
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: var(--radius-sm);
	text-decoration: none;
}

.collection-card-large {
	grid-column: span 2;
	grid-row: span 2;
}

.collection-card-image {
	position: absolute;
	inset: 0;
}

.collection-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collection-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition-slow);
}

.collection-card:hover .collection-image-placeholder {
	transform: scale(1.05);
}

.collection-image-placeholder span {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--brown-light);
	background-color: var(--white);
	padding: var(--space-sm) var(--space-md);
}

.collection-card-content {
	position: absolute;
	inset: 0;
	padding: var(--space-lg);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: linear-gradient(to top, rgba(61, 50, 41, 0.7) 0%, transparent 60%);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.collection-card:hover .collection-card-content {
	opacity: 1;
}

.collection-card-title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 500;
	color: var(--white);
	margin-bottom: var(--space-xs);
}

.collection-card-text {
	font-size: var(--text-sm);
	color: var(--white);
	opacity: 0.8;
	margin-bottom: var(--space-sm);
}

.collection-card-cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--white);
}

.collection-card-cta svg {
	transition: transform var(--transition-base);
}

.collection-card:hover .collection-card-cta svg {
	transform: translateX(4px);
}

/* ========================================
    PROCESS
    ======================================== */

.home-process {
	padding: var(--space-4xl) 0;
	background-color: var(--white);
}

.home-process-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.home-process-timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-lg);
	position: relative;
}

.process-step {
	position: relative;
	text-align: center;
	padding-top: var(--space-2xl);
}

.process-step-number {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: 500;
	color: var(--cream-dark);
	line-height: 1;
}

.process-step-content {
	padding: var(--space-md);
}

.process-step-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-sm);
}

.process-step-text {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
}

.process-step-connector {
	position: absolute;
	top: 40px;
	left: 50%;
	width: calc(100% - 20px);
	height: 1px;
	background-color: var(--color-border);
}

/* ========================================
    SUSTAINABILITY
    ======================================== */

.home-sustainability {
	padding: var(--space-4xl) 0;
	background-color: var(--cream);
}

.home-sustainability-inner {
	max-width: var(--container-lg);
	margin: 0 auto;
}

.home-sustainability-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

/* ========================================
    FEATURED PRODUCTS
    ======================================== */

.home-featured {
	padding: var(--space-4xl) 0;
	background-color: var(--cream-light);
}

.home-featured-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.home-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-xl);
}

.featured-product-card {
	background-color: var(--white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: all var(--transition-base);
}

.featured-product-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.featured-product-image {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.product-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-image-placeholder span {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-light);
	text-align: center;
	padding: var(--space-md);
}

.featured-product-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(61, 50, 41, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--transition-base);
}

.featured-product-card:hover .featured-product-overlay {
	opacity: 1;
}

.featured-product-info {
	padding: var(--space-lg);
}

.featured-product-category {
	display: block;
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-medium);
	margin-bottom: var(--space-xs);
}

.featured-product-title {
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-xs);
}

.featured-product-price {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.home-featured-cta {
	text-align: center;
	margin-top: var(--space-2xl);
}

/* ========================================
    ANIMATIONS
    ======================================== */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Scroll-triggered animations */
.home-hero .home-hero-content > *,
.home-hero .home-hero-image,
.home-brand-story .home-brand-story-image,
.home-brand-story .home-brand-story-content,
.home-services-grid .service-card-Editorial,
.home-collections-grid .collection-card,
.home-process .process-step,

.home-featured-grid .featured-product-card {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll .animated {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
     ENHANCED MOBILE NAVIGATION
     ======================================== */

.mobile-nav {
	padding: var(--space-lg) 0;
}

.mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu > li {
	border-bottom: 1px solid var(--color-border);
}

.mobile-menu > li > a,
.mobile-menu > li > button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: var(--space-md) 0;
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-text);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
}

.mobile-menu-link-text {
	flex: 1;
}

.mobile-submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: var(--space-md) 0;
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-text);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
}

.mobile-submenu-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--color-text-muted);
	transition: transform var(--transition-base);
}

.mobile-menu > li.active > .mobile-submenu-toggle .mobile-submenu-indicator {
	transform: rotate(180deg);
}

.mobile-submenu {
	list-style: none;
	margin: 0;
	padding: 0 0 var(--space-md) 0;
	display: none;
}

.mobile-submenu.active {
	display: block;
}

.mobile-submenu li {
	padding-left: var(--space-md);
}

.mobile-submenu a {
	display: block;
	padding: var(--space-sm) 0;
	font-size: var(--text-base);
	color: var(--color-text-muted);
}

.mobile-submenu a:hover {
	color: var(--brown-dark);
}

.mobile-menu-header {
	padding-bottom: var(--space-lg);
	border-bottom: 1px solid var(--color-border);
	margin-bottom: var(--space-lg);
}

.mobile-menu-label {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--text-light);
}

.mobile-menu-footer {
	margin-top: var(--space-xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-border);
}

.mobile-menu-footer a {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-sm) 0;
	font-size: var(--text-base);
	color: var(--color-text-muted);
}

.mobile-menu-footer a:hover {
	color: var(--brown-dark);
}

.mobile-menu-footer svg {
	flex-shrink: 0;
}

.mobile-menu-empty {
	font-size: var(--text-base);
	color: var(--color-text-muted);
	text-align: center;
	padding: var(--space-xl) 0;
}

/* ========================================
     BODY LOCK WHEN MOBILE MENU OPEN
     ======================================== */

body.menu-open {
	overflow: hidden;
}

/* ========================================
    SERVICE PAGE STYLES
    ======================================== */

/* Service Hero */
.service-hero {
	padding: var(--space-4xl) 0;
	background-color: var(--cream-light);
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.service-hero-inner {
	max-width: var(--container-xl);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-3xl);
	align-items: center;
}

.service-hero-content {
	order: 1;
}

.service-breadcrumb {
	margin-bottom: var(--space-lg);
}

.service-breadcrumb ol {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.service-breadcrumb li {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	color: var(--color-text-muted);
}

.service-breadcrumb li:not(:last-child)::after {
	content: '/';
	color: var(--color-border);
}

.service-breadcrumb a {
	color: var(--color-text-muted);
	transition: color var(--transition-fast);
}

.service-breadcrumb a:hover {
	color: var(--color-text);
}

.service-breadcrumb span[itemprop="name"] {
	color: var(--color-text);
}

.service-hero-title {
	font-family: var(--font-heading);
	font-size: var(--text-5xl);
	font-weight: 500;
	line-height: 1.15;
	color: var(--color-text);
	margin-bottom: var(--space-lg);
}

.service-hero-subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-xl);
}

.service-hero-ctas {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.service-hero-image {
	order: 2;
	position: relative;
}

.service-hero-image img,
.service-hero-image .hero-placeholder {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.hero-placeholder {
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-placeholder span {
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-light);
}

/* Service Intro */
.service-intro {
	padding: var(--space-4xl) 0;
	background-color: var(--white);
}

.service-intro-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3xl);
	align-items: center;
}

.service-intro-image {
	position: relative;
}

.service-intro-image img,
.service-intro-image .intro-placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.intro-placeholder {
	background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.intro-placeholder span {
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-light);
}

.service-intro-content {
	padding-left: var(--space-xl);
}

.service-intro-title {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 500;
	line-height: var(--leading-tight);
	color: var(--color-text);
	margin-bottom: var(--space-lg);
}

.service-intro-text p {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-xl);
}

.service-intro-values {
	display: flex;
	gap: var(--space-2xl);
	padding-top: var(--space-xl);
	border-top: 1px solid var(--color-border);
}

.intro-value {
	text-align: center;
}

.intro-value-number {
	display: block;
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 500;
	color: var(--color-text);
	line-height: 1;
	margin-bottom: var(--space-xs);
}

.intro-value-label {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
}

/* Service Process */
.service-process {
	padding: var(--space-4xl) 0;
	background-color: var(--cream);
}

.service-process-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.service-process-timeline {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-lg);
	position: relative;
}

.process-item {
	position: relative;
	text-align: center;
	padding-top: var(--space-2xl);
}

.process-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--white);
	border: 1px solid var(--color-border);
	border-radius: 50%;
}

.process-item-step {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.step-number {
	font-family: var(--font-heading);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--brown-dark);
}

.process-item-content {
	padding: var(--space-md);
}

.process-item-title {
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-sm);
}

.process-item-text {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	max-width: 150px;
	margin: 0 auto;
}

.process-item::after {
	content: '';
	position: absolute;
	top: 20px;
	left: calc(50% + 20px);
	width: calc(100% - 40px);
	height: 1px;
	background-color: var(--color-border);
}

.process-item:last-child::after {
	display: none;
}

/* Service Techniques */
.service-techniques {
	padding: var(--space-4xl) 0;
	background-color: var(--cream-light);
}

.service-techniques-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.service-techniques-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
}

.technique-card {
	padding: var(--space-xl);
	background-color: var(--white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	text-align: center;
	transition: all var(--transition-base);
}

.technique-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.technique-icon {
	margin-bottom: var(--space-md);
	color: var(--brown-medium);
}

.technique-icon svg {
	width: 40px;
	height: 40px;
}

.technique-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-sm);
}

.technique-text {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
}

/* Service Materials */
.service-materials {
	padding: var(--space-4xl) 0;
	background-color: var(--white);
}

.service-materials-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.service-materials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
}

.material-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: all var(--transition-base);
}

.material-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.material-image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background-color: var(--cream);
}

.material-image img,
.material-image .material-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.material-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.material-placeholder span {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-light);
}

.material-info {
	padding: var(--space-lg);
}

.material-name {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-xs);
}

.material-description {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
}

.service-materials-note {
	text-align: center;
	margin-top: var(--space-2xl);
	padding-top: var(--space-xl);
	border-top: 1px solid var(--color-border);
}

.service-materials-note p {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.service-materials-note a {
	color: var(--brown-medium);
	text-decoration: underline;
}

/* Service Gallery */
.service-gallery {
	padding: var(--space-4xl) 0;
	background-color: var(--cream);
}

.service-gallery-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.service-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 250px);
	gap: var(--space-lg);
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-sm);
}

.gallery-item-large {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item-medium {
	grid-column: span 1;
	grid-row: span 1;
}

.gallery-item-small {
	grid-column: span 1;
	grid-row: span 1;
}

.gallery-item-inner {
	width: 100%;
	height: 100%;
	background-color: var(--cream-dark);
}

.gallery-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.gallery-placeholder span {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-light);
}

.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--space-md) var(--space-lg);
	background: linear-gradient(to top, rgba(61, 50, 41, 0.8) 0%, transparent 100%);
	color: var(--white);
	font-size: var(--text-sm);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

/* Service CTA */
.service-cta {
	padding: var(--space-4xl) 0;
	background-color: var(--cream-light);
}

.service-cta-inner {
	max-width: var(--container-lg);
	margin: 0 auto;
}

.service-cta-content {
	text-align: center;
}

.service-cta-title {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-md);
}

.service-cta-text {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	max-width: 600px;
	margin: 0 auto var(--space-2xl);
}

.service-cta-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl);
	margin-bottom: var(--space-2xl);
}

.cta-option {
	padding: var(--space-xl);
	background-color: var(--white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	text-align: center;
	transition: all var(--transition-base);
}

.cta-option:hover {
	box-shadow: var(--shadow-md);
}

.cta-option-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: var(--space-sm);
}

.cta-option-text {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-lg);
}

.service-cta-contact {
	padding-top: var(--space-xl);
	border-top: 1px solid var(--color-border);
}

.contact-direct {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.contact-direct a {
	color: var(--brown-medium);
	text-decoration: underline;
}

/* ========================================
   SEARCH OVERLAY
   ======================================== */

.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.search-overlay.open {
	display: block;
}

.search-overlay-bg {
	position: absolute;
	inset: 0;
	background: rgba(61, 50, 41, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.search-overlay-inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 5rem 40px 40px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.search-overlay-header {
	margin-bottom: 2rem;
}

.search-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.search-input-wrap .search-icon {
	position: absolute;
	left: 16px;
	color: var(--brown-light);
	pointer-events: none;
}

.search-overlay-input {
	width: 100%;
	padding: 18px 20px 18px 52px;
	font-size: 1.25rem;
	font-family: var(--font-body);
	border: 2px solid var(--cream-dark);
	border-radius: var(--radius-md);
	background: var(--white);
	color: var(--color-text);
	outline: none;
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.search-overlay-input::placeholder {
	color: var(--text-light);
}

.search-overlay-input:focus {
	border-color: var(--brown-dark);
	box-shadow: 0 0 0 4px rgba(92, 75, 58, 0.1);
}

.search-overlay-close {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text-light);
	padding: 6px;
	transition: color var(--transition-fast);
}

.search-overlay-close:hover {
	color: var(--color-text);
}

.search-overlay-exit {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 2;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--white);
	opacity: 0.5;
	padding: 10px;
	transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.search-overlay-exit:hover {
	opacity: 1;
	transform: scale(1.1);
}

.search-overlay-results {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.search-overlay-loading {
	text-align: center;
	padding: 60px 0;
	display: none;
}

.search-overlay-loading .search-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid var(--color-border);
	border-top-color: var(--brown-dark);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin: 0 auto;
}

.search-overlay-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	padding-top: 16px;
}

.search-overlay-empty,
.search-overlay-noresults {
	text-align: center;
	padding: 60px 20px;
	color: var(--color-text-muted);
	display: none;
}

.search-overlay-empty .search-empty-icon {
	margin-bottom: 16px;
	opacity: 0.3;
}

.search-overlay-empty p {
	font-size: var(--text-base);
}

.search-overlay-noresults p {
	font-size: var(--text-base);
}

/* Search Result Card */
.search-result-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background-color: var(--white);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.search-result-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.search-result-image {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background-color: var(--cream-light);
}

.search-result-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.search-result-card:hover .search-result-image img {
	transform: scale(1.05);
}

.search-result-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-light);
}

.search-result-badge {
	position: absolute;
	top: var(--space-sm);
	right: var(--space-sm);
	padding: 4px 10px;
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: var(--radius-sm);
}

.search-result-badge.sale {
	background-color: var(--brown-dark);
	color: var(--white);
}

.search-result-badge.sold-out {
	background-color: var(--text-light);
	color: var(--white);
}

.search-result-info {
	padding: var(--space-lg);
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	flex: 1;
}

.search-result-category {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brown-medium);
}

.search-result-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 500;
	line-height: 1.3;
}

.search-result-title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition-fast);
}

.search-result-title a:hover {
	color: var(--brown-dark);
}

.search-result-price {
	font-size: var(--text-md);
	color: var(--color-text);
	margin-top: auto;
	padding-top: var(--space-sm);
}

/* Responsive – Search Overlay */
@media (max-width: 1024px) {
	.search-overlay-inner {
		padding: 4rem 24px 24px;
	}

	.search-overlay-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.search-overlay-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.search-overlay-inner {
		padding: 3.5rem 16px 16px;
	}

	.search-overlay-exit {
		top: 12px;
		right: 12px;
	}

	.search-result-info {
		padding: var(--space-md);
	}
}

@media (max-width: 480px) {
	.search-overlay-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.search-overlay-input {
		font-size: 1.1rem;
		padding: 14px 16px 14px 44px;
	}
}