/*
 * KShel Customs theme stylesheet.
 * Author: The Free Website Guys
 */

:root {
	--font-display: 'baileywick-jf-gothic', sans-serif;
	--font-body: 'Manrope', sans-serif;
	--radius: 14px;
	--shadow-soft: 0 4px 20px -4px hsl(330 45% 14% / 0.08);
	--shadow-elevated: 0 10px 40px -8px hsl(328 60% 30% / 0.18);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 112px;
	--btn-radius: calc(var(--radius) - 2px);
	--btn-height: 44px;
	--btn-padding: 0 2rem;
	--btn-font-size: 0.875rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0;
	--color-destructive: #e53e3e;
}

/* -------------------------------------------------------------------------
 * RESET / BASE
 * ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.01em;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
img, video { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-poster-img):not(.theme-product-main-image):not(.theme-product-card__image):not(.site-logo-img):not(.footer-logo-img),
video:not(.cover-img):not(.hero-video):not(.contact-video) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.hero-poster-img,
.theme-product-main-image,
.theme-product-card__image,
.theme-cart-item-image img,
.theme-product-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	max-height: none;
	object-fit: cover;
	object-position: center;
}
.site-header .container-wide { position: relative; }
.site-logo-link {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	max-height: 100%;
}
.site-nav .site-logo-img {
	height: var(--logo-height);
	width: auto;
	max-width: none;
	max-height: none;
	object-fit: contain;
	transition: height 0.5s var(--transition-smooth), filter 0.5s var(--transition-smooth);
}
.site-header.is-solid .site-nav .site-logo-img {
	height: var(--logo-height);
	filter: none;
}
.site-header:not(.is-solid) .site-nav .site-logo-img {
	height: calc(var(--logo-height) * 1.23);
	filter: brightness(0) invert(1);
}
.footer-logo-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.footer-logo-img {
	height: 134px;
	width: auto;
	max-width: none;
	max-height: none;
	object-fit: contain;
}
.footer-brand-text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-foreground);
}
input, textarea, select, button { font-family: inherit; font-size: 1em; color: inherit; }
input::placeholder, textarea::placeholder { color: var(--color-muted-foreground); }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 1024px) {
	.container-wide { padding-left: 2rem; padding-right: 2rem; }
}

#about,
#services,
#shop,
#owner,
#faq,
#contact {
	scroll-margin-top: 6rem;
}

.site-main { padding-top: var(--header-height); }
body.theme-no-hero .site-main { padding-top: var(--header-height); }
body.home .site-main { padding-top: 0; }

.section-eyebrow {
	display: block;
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}
.section-header-center { text-align: center; margin-bottom: 3rem; }
.section-heading {
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin-top: 0.5rem;
}

/* Typography parity with Lovable tokens */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.text-body { font-family: var(--font-body); font-weight: 500; }

/* -------------------------------------------------------------------------
 * SCROLL REVEAL ANIMATIONS (Section 2.1)
 * ---------------------------------------------------------------------- */
.reveal-item {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}
.reveal-item[data-reveal="fadeIn"] { transform: none; }
.reveal-item[data-reveal="fadeLeft"] { transform: translateX(-40px); }
.reveal-item[data-reveal="fadeRight"] { transform: translateX(40px); }
.reveal-item[data-reveal="scaleUp"] { transform: scale(0.9); }
.reveal-item.is-visible {
	opacity: 1;
	transform: none;
}
body.is-customizer .reveal-item,
body.no-js .reveal-item {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; opacity: 1; transform: none; }
	.process-connector-mobile-fill,
	.process-connector-fill { transition: none; transform: none; }
	.process-stepper.is-visible .process-connector-mobile-fill,
	.process-stepper.is-visible .process-connector-fill { transform: none; }
}

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: theme-fade-in 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: theme-slide-up 0.6s var(--transition-smooth) forwards; }

/* -------------------------------------------------------------------------
 * HEADER
 * ---------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	transition: all 0.5s var(--transition-smooth);
	background: transparent;
	border-bottom: 1px solid transparent;
}
.site-header.is-solid {
	background-color: var(--color-background);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
}
.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 7rem;
	transition: height 0.5s var(--transition-smooth);
}
.site-header:not(.is-solid) .site-nav { height: 8rem; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--color-foreground); }
.site-header:not(.is-solid) .site-logo-text { color: var(--color-background); }

.site-nav-desktop { display: none; }
@media (min-width: 1024px) {
	.site-nav-desktop { display: flex; align-items: center; gap: 2rem; }
}
.site-nav-desktop .theme-nav-list {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.theme-nav-link {
	position: relative;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	color: var(--color-foreground);
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.5s var(--transition-smooth);
}
.site-header:not(.is-solid) .site-nav-desktop .theme-nav-link { color: var(--color-background); }
.theme-nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px; left: 0;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.theme-nav-link:hover::after { transform: scaleX(1); }

.site-nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-cart-toggle {
	position: relative;
	background: none;
	border: none;
	padding: 0.5rem;
	color: var(--color-foreground);
	transition: opacity 0.5s var(--transition-smooth), color 0.5s var(--transition-smooth);
}
.site-header:not(.is-solid) .theme-cart-toggle { color: var(--color-background); }
.theme-cart-toggle:hover { opacity: 0.6; }
.theme-cart-count {
	position: absolute;
	top: -2px; right: -2px;
	width: 1.25rem; height: 1.25rem;
	display: flex; align-items: center; justify-content: center;
	font-size: 0.625rem; font-weight: 500;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-toggle {
	background: none; border: none; padding: 0.5rem;
	color: var(--color-foreground);
	transition: opacity 0.5s var(--transition-smooth), color 0.5s var(--transition-smooth);
}
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }
.site-header:not(.is-solid) .theme-mobile-toggle { color: var(--color-background); }
.theme-mobile-menu {
	display: none;
	position: absolute;
	left: 0; right: 0; top: 100%;
	border-top: 1px solid var(--color-border);
	background: var(--color-background);
	z-index: 50;
	box-shadow: var(--shadow-elevated);
}
.theme-mobile-menu-inner { padding: 1.5rem; }
.theme-mobile-menu.is-open { display: block; animation: theme-fade-in 0.6s var(--transition-smooth) forwards; }
@media (min-width: 1024px) { .theme-mobile-menu { display: none !important; } }
.theme-mobile-menu .theme-mobile-nav-list,
.theme-mobile-menu .theme-mobile-nav-list ul {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.theme-mobile-menu .theme-mobile-nav-list li { display: block; width: 100%; }
.theme-mobile-nav-link,
.theme-mobile-menu .theme-mobile-nav-list a,
.theme-mobile-menu .theme-nav-link {
	display: block;
	width: 100%;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	padding: 0.5rem 0;
	text-align: left;
	color: var(--color-foreground);
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.15s;
}
.theme-mobile-nav-link:hover,
.theme-mobile-menu .theme-mobile-nav-list a:hover { color: var(--color-muted-foreground); }
.theme-mobile-toggle .icon-close { display: none; }
.theme-mobile-toggle.is-open .icon-menu { display: none; }
.theme-mobile-toggle.is-open .icon-close { display: inline-flex; }
.theme-mobile-overlay {
	display: none;
	position: fixed;
	inset: 0;
	top: 7rem;
	background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	z-index: 40;
}
.theme-mobile-overlay.is-open { display: block; }
@media (min-width: 1024px) { .theme-mobile-overlay { display: none !important; } }

/* -------------------------------------------------------------------------
 * HERO
 * ---------------------------------------------------------------------- */
.hero-section {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { display: none; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-poster-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (min-width: 1024px) {
	.hero-video { display: block; }
	.hero-poster-img { display: none; }
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, hsl(var(--fg-hsl,0 0% 0%) / 0.85), hsl(var(--fg-hsl,0 0% 0%) / 0.75) 50%, hsl(var(--fg-hsl,0 0% 0%) / 0.85));
	background: linear-gradient(to bottom, color-mix(in srgb, var(--color-foreground) 85%, transparent), color-mix(in srgb, var(--color-foreground) 75%, transparent) 50%, color-mix(in srgb, var(--color-foreground) 85%, transparent));
}
@media (min-width: 1024px) {
	.hero-overlay {
		background: linear-gradient(to right, color-mix(in srgb, var(--color-foreground) 95%, transparent), color-mix(in srgb, var(--color-foreground) 75%, transparent) 50%, color-mix(in srgb, var(--color-foreground) 40%, transparent));
	}
}
.hero-content { position: relative; z-index: 10; width: 100%; padding-top: 8rem; padding-bottom: 3.5rem; }
@media (min-width: 768px) { .hero-content { padding-top: 9rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .hero-content { padding-top: 9rem; padding-bottom: 5rem; } }
.hero-inner { max-width: 56rem; display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	align-self: flex-start;
	margin-bottom: 1rem;
	padding: 0.375rem 0.75rem;
	background: color-mix(in srgb, var(--color-primary) 15%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	border-radius: calc(var(--radius) - 4px);
}
@media (min-width: 768px) { .hero-badge { margin-bottom: 1.25rem; } }
.hero-badge-dot {
	width: 0.375rem; height: 0.375rem; border-radius: 50%;
	background: var(--color-primary);
	animation: theme-pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes theme-pulse { 50% { opacity: 0.5; } }
.hero-badge-text { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-background); }
.hero-title {
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.9;
	letter-spacing: -0.05em;
	color: var(--color-background);
	margin-bottom: 1rem;
	font-size: 2.25rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; margin-bottom: 2rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-title-accent { color: var(--color-primary); }
.hero-title-break { display: none; }
@media (min-width: 640px) { .hero-title-break { display: block; } }
.hero-paragraph {
	max-width: 36rem;
	color: color-mix(in srgb, var(--color-background) 85%, transparent);
	line-height: 1.625;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
}
@media (min-width: 640px) { .hero-paragraph { font-size: 1rem; } }
@media (min-width: 768px) { .hero-paragraph { font-size: 1.125rem; margin-bottom: 2.5rem; } }
@media (min-width: 1024px) { .hero-paragraph { font-size: 1.25rem; } }
.hero-ctas { display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem; max-width: 20rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; align-items: center; gap: 1rem; max-width: none; } }

.btn-hero-primary, .btn-hero-outline, .btn-owner-primary, .btn-owner-outline, .btn-contact-submit, .theme-btn-primary, .theme-btn-outline {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 0.5rem;
	height: 2.75rem;
	padding: 0 2rem;
	border-radius: var(--btn-radius);
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}
.btn-hero-primary, .btn-owner-primary, .btn-contact-submit, .theme-btn-primary {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	font-weight: 700;
	box-shadow: var(--shadow-soft);
}
.btn-owner-primary, .btn-contact-submit, .theme-btn-primary { text-transform: none; letter-spacing: normal; font-weight: 500; font-size: 0.875rem; box-shadow: none; }
.btn-hero-primary:hover { transform: translateY(-2px); }
.btn-hero-outline, .theme-btn-outline {
	background: transparent;
	border: 2px solid var(--color-background);
	color: var(--color-background);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	font-weight: 700;
}
.theme-btn-outline { border: 1px solid var(--color-border); color: var(--color-foreground); text-transform: none; letter-spacing: normal; font-weight: 500; font-size: 0.875rem; }
.btn-hero-outline:hover { background: var(--color-accent); color: var(--color-accent-foreground); border-color: var(--color-accent); }
.btn-owner-outline {
	background: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
}
.btn-owner-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-contact-submit:hover, .theme-btn-primary:hover { opacity: 0.9; }

/* -------------------------------------------------------------------------
 * VALUE BAR
 * ---------------------------------------------------------------------- */
.value-bar-section { background: var(--color-primary); color: var(--color-primary-foreground); }
.value-bar-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	align-items: center;
	justify-content: center;
	gap: 1rem 1rem;
	padding: 1rem 0;
	font-size: 0.875rem;
	text-align: center;
}
@media (min-width: 640px) {
	.value-bar-inner { display: flex; flex-wrap: wrap; gap: 3rem; padding: 1.25rem 0; font-size: 1rem; }
}
.value-bar-item { display: flex; align-items: center; justify-content: center; gap: 0.5rem; min-width: 0; }
.value-bar-item svg { width: 1rem; height: 1rem; flex-shrink: 0; }
@media (min-width: 640px) { .value-bar-item svg { width: 1.25rem; height: 1.25rem; } }
.value-bar-dot { display: none; opacity: 0.4; }
@media (min-width: 640px) { .value-bar-dot { display: block; } }

/* -------------------------------------------------------------------------
 * ABOUT
 * ---------------------------------------------------------------------- */
.about-section { padding-top: 5rem; padding-bottom: 5rem; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-image-col { position: relative; min-width: 0; }
.about-image-wrap { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 4/5; }
.about-badge {
	position: absolute; bottom: -1.5rem; right: -1.5rem;
	display: none;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	padding: 1rem 1.5rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	max-width: 220px;
}
@media (min-width: 640px) { .about-badge { display: block; } }
.about-badge p { font-family: var(--font-display); font-size: 0.875rem; font-weight: 500; line-height: 1.375; }
.about-text-col { min-width: 0; }
.about-heading { font-size: 2.25rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .about-heading { font-size: 3rem; } }
.about-paragraph { color: var(--color-muted-foreground); line-height: 1.625; margin-bottom: 1.5rem; font-size: 1.125rem; }
.about-paragraph-lg { font-size: 1.25rem; }
.about-quote-box { background: var(--color-secondary); padding: 2rem; border-left: 4px solid var(--color-primary); border-radius: var(--radius); margin-bottom: 0; }
.about-quote { font-size: 1.5rem; font-family: var(--font-display); color: var(--color-muted-foreground); font-style: italic; line-height: 1.625; }
.about-quote-author { font-size: 1rem; font-weight: 500; margin-top: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2.5rem; }
.about-stat-item {
	text-align: center; padding: 1rem;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	background: var(--color-background);
	transition: border-color 0.3s;
}
.about-stat-item:hover { border-color: var(--color-primary); transform: translateY(-4px); transition: transform 0.2s, border-color 0.3s; }
.about-stat-number { font-family: var(--font-display); font-size: 1.875rem; font-weight: 600; color: var(--color-primary); }
@media (min-width: 768px) { .about-stat-number { font-size: 2.25rem; } }
.about-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-muted-foreground); margin-top: 0.25rem; }
@media (min-width: 768px) { .about-stat-label { font-size: 0.875rem; } }

/* -------------------------------------------------------------------------
 * SERVICES
 * ---------------------------------------------------------------------- */
.services-section { background: var(--color-secondary); padding-top: 5rem; padding-bottom: 5rem; }
.services-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .services-heading { font-size: 3rem; } }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.service-card {
	display: flex; flex-direction: column; height: 100%;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all 0.5s var(--transition-smooth);
}
.service-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
.service-card-image-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.service-card-img { transition: transform 0.7s cubic-bezier(0,0,0.2,1); }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 2rem; }
.service-card-title { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.75rem; }
.service-card-desc { color: var(--color-muted-foreground); line-height: 1.625; font-size: 1rem; }

/* -------------------------------------------------------------------------
 * PROCESS / HOW IT WORKS
 * ---------------------------------------------------------------------- */
.process-section { padding-top: 5rem; padding-bottom: 5rem; position: relative; }
.process-section .section-header-center { margin-bottom: 4rem; }
.process-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .process-heading { font-size: 3rem; } }

.process-stepper {
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: 28rem;
	margin: 0 auto;
	padding-left: 3rem;
}
.process-connector-bg,
.process-connector-fill,
.process-connector-mobile-bg,
.process-connector-mobile-fill {
	position: absolute;
	pointer-events: none;
}
.process-connector-mobile-bg,
.process-connector-mobile-fill {
	display: block;
	left: 19px;
	top: 0;
	bottom: 0;
	width: 2px;
}
.process-connector-mobile-bg { background: var(--color-border); }
.process-connector-mobile-fill { background: var(--color-primary); transform-origin: top; transform: scaleY(0); }
.process-stepper.is-visible .process-connector-mobile-fill { transform: scaleY(1); transition: transform 1.5s 0.2s cubic-bezier(0.25, 0.1, 0.25, 1); }
.process-connector-bg,
.process-connector-fill { display: none; }
@media (min-width: 1024px) {
	.process-stepper {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		max-width: 64rem;
		padding-left: 0;
	}
	.process-connector-mobile-bg,
	.process-connector-mobile-fill { display: none; }
	.process-connector-bg,
	.process-connector-fill {
		display: block;
		top: 2.5rem;
		left: 10%;
		right: 10%;
		height: 2px;
	}
	.process-connector-bg { background: var(--color-border); }
	.process-connector-fill { background: var(--color-primary); transform-origin: left; transform: scaleX(0); }
	.process-stepper.is-visible .process-connector-fill { transform: scaleX(1); transition: transform 1.2s 0.3s cubic-bezier(0.25, 0.1, 0.25, 1); }
}
.process-step {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding-bottom: 2.5rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-mobile-number {
	position: absolute;
	left: -3rem;
	top: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	box-shadow: var(--shadow-soft);
	z-index: 10;
	flex-shrink: 0;
}
.process-step-body { min-width: 0; width: 100%; }
.process-step-icon-circle,
.process-step-number { display: none; }
.process-step-title-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
	min-width: 0;
}
.process-step-inline-icon {
	flex-shrink: 0;
	color: var(--color-primary);
}
.process-step-title { font-size: 1.25rem; font-weight: 500; min-width: 0; }
.process-step-desc { color: var(--color-muted-foreground); line-height: 1.625; font-size: 1rem; }
@media (min-width: 1024px) {
	.process-step {
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: 25%;
		padding: 0 1rem 0;
		z-index: 10;
	}
	.process-step-mobile-number,
	.process-step-inline-icon { display: none; }
	.process-step-title-row {
		display: block;
		margin-bottom: 0;
	}
	.process-step-body {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.process-step-icon-circle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 5rem;
		height: 5rem;
		border-radius: 50%;
		background: var(--color-background);
		color: var(--color-primary);
		border: 2px solid var(--color-primary);
		margin-bottom: 1rem;
		box-shadow: var(--shadow-soft);
	}
	.process-step-number {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.75rem;
		height: 1.75rem;
		border-radius: 50%;
		background: var(--color-primary);
		color: var(--color-primary-foreground);
		font-size: 0.875rem;
		font-weight: 700;
		margin-bottom: 0.5rem;
	}
	.process-step-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
}

/* -------------------------------------------------------------------------
 * SHOP / PRODUCT GRID / PRODUCT CARD
 * ---------------------------------------------------------------------- */
.shop-section { padding-top: 5rem; padding-bottom: 5rem; }
.shop-heading { font-size: 2.25rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
.shop-subtitle { color: var(--color-muted-foreground); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2rem; }
.shop-search-wrap { position: relative; max-width: 28rem; margin: 0 auto 1.5rem; }
.shop-search-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-search-input {
	width: 100%; height: 3rem;
	border: 1px solid var(--color-border);
	background: var(--color-background);
	padding-left: 2.5rem; padding-right: 2.5rem;
	font-size: 1rem;
	border-radius: var(--radius);
}
.shop-search-input:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.shop-search-clear { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--color-muted-foreground); }
.shop-search-clear:hover { color: var(--color-foreground); }
.shop-category-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.shop-category-btn {
	padding: 0.75rem 1.5rem;
	border-radius: 9999px;
	background: var(--color-secondary);
	color: var(--color-secondary-foreground);
	border: none;
	font-size: 1rem;
	transition: all 0.3s;
}
.shop-category-btn:hover { background: var(--color-muted); }
.shop-category-btn.is-active { background: var(--color-primary); color: var(--color-primary-foreground); }
.shop-category-btn.is-active:hover { background: var(--color-primary); }

.theme-product-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}
@media (min-width: 1024px) { .theme-product-grid { gap: 2rem; } }
.theme-product-card-wrap {
	width: 100%;
	display: flex;
}
@media (min-width: 640px) { .theme-product-card-wrap { width: calc(50% - 0.75rem); } }
@media (min-width: 1024px) { .theme-product-card-wrap { width: calc(25% - 1.5rem); } }
.theme-product-grid.shop-product-grid[data-single-item="1"] .theme-product-card-wrap { width: 100%; max-width: 380px; }

.theme-product-card {
	position: relative;
	display: flex; flex-direction: column;
	height: 100%; width: 100%;
	transition: transform 0.2s;
}
.theme-product-card:hover { transform: translateY(-6px); }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card .theme-quick-add,
.theme-product-card .add_to_cart_button { pointer-events: auto; }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 3/4;
	background: var(--color-secondary);
	overflow: hidden;
	margin-bottom: 1rem;
	border-radius: var(--radius);
	transition: box-shadow 0.3s;
}
.theme-product-card:hover .theme-product-card__image-wrapper { box-shadow: var(--shadow-soft); }
.theme-product-card__image { transition: transform 0.7s ease-out; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.05); }
.theme-product-card__image.is-out-of-stock { opacity: 0.6; }
.theme-product-card__image-wrapper::after {
	content: '';
	position: absolute; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 0%, transparent);
	transition: background-color 0.3s;
}
.theme-product-card:hover .theme-product-card__image-wrapper::after { background: color-mix(in srgb, var(--color-foreground) 10%, transparent); }

.sold-out-badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem; font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.05em;
	background: var(--color-foreground); color: var(--color-background);
	border-radius: 9999px;
}
.new-badge {
	position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem; font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.05em;
	background: var(--color-primary); color: var(--color-primary-foreground);
	border-radius: 9999px;
}
.customizable-badge {
	position: absolute; bottom: 0.75rem; left: 0.75rem; z-index: 3;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem; font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.05em;
	background: var(--color-background); color: var(--color-foreground);
	border-radius: 9999px;
}
.theme-quick-add {
	position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 3;
	width: 2rem; height: 2rem;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--color-background); color: var(--color-foreground);
	box-shadow: var(--shadow-soft);
	transition: all 0.2s;
}
.theme-quick-add:hover { background: var(--color-primary); color: var(--color-primary-foreground); transform: scale(1.1); }
.theme-quick-add .icon-check { display: none; }
.theme-quick-add.is-added { background: var(--color-primary); color: var(--color-primary-foreground); transform: scale(1.1); }
.theme-quick-add.is-added .icon-plus { display: none; }
.theme-quick-add.is-added .icon-check { display: block; }

.theme-product-card__info { flex: 1; display: flex; flex-direction: column; gap: 0.375rem; }
.theme-product-card__category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted-foreground); min-height: 1em; }
.theme-product-card__title {
	font-family: var(--font-body);
	font-size: 1.125rem; font-weight: 500;
	transition: color 0.3s;
	min-width: 0; overflow: hidden; text-overflow: ellipsis;
}
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__desc { font-size: 1rem; color: var(--color-muted-foreground); overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.theme-product-card__price { font-size: 1.125rem; font-weight: 500; color: var(--color-foreground); }
.theme-product-card__price .woocommerce-Price-amount { font-size: inherit; }

.shop-empty-message { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }
.shop-empty-message.hidden-not { display: none; }

/* -------------------------------------------------------------------------
 * OWNER
 * ---------------------------------------------------------------------- */
.owner-section { background: var(--color-secondary); padding-top: 5rem; padding-bottom: 5rem; overflow: hidden; }
.owner-inner { max-width: 64rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 3rem; }
@media (min-width: 768px) { .owner-inner { flex-direction: row; gap: 5rem; } }
.owner-portrait-wrap { position: relative; flex-shrink: 0; }
.owner-blur-accent { position: absolute; top: -1rem; left: -1rem; width: 6rem; height: 6rem; background: color-mix(in srgb, var(--color-accent) 20%, transparent); border-radius: 50%; filter: blur(40px); }
.owner-blur-primary { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 8rem; height: 8rem; background: color-mix(in srgb, var(--color-primary) 20%, transparent); border-radius: 50%; filter: blur(64px); }
.owner-portrait {
	position: relative; z-index: 10;
	width: 16rem; height: 16rem;
	border-radius: 50%;
	border: 8px solid var(--color-background);
	box-shadow: var(--shadow-elevated);
	overflow: hidden;
}
@media (min-width: 768px) { .owner-portrait { width: 20rem; height: 20rem; } }
.owner-content { flex: 1; text-align: center; }
@media (min-width: 768px) { .owner-content { text-align: left; } }
.owner-eyebrow { color: var(--color-primary); font-weight: 600; }
.owner-heading { font-size: 2.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .owner-heading { font-size: 3rem; } }
.owner-name-accent { color: var(--color-primary); }
.owner-paragraph { color: var(--color-muted-foreground); line-height: 1.625; margin-bottom: 1rem; font-size: 1.125rem; }
.owner-paragraph-sm { font-size: 1rem; margin-bottom: 2rem; }
.owner-ctas { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-top: 2rem; }
@media (min-width: 640px) { .owner-ctas { flex-direction: row; justify-content: center; } }
@media (min-width: 768px) { .owner-ctas { justify-content: flex-start; } }

/* -------------------------------------------------------------------------
 * FAQ
 * ---------------------------------------------------------------------- */
.faq-section { padding-top: 5rem; padding-bottom: 5rem; }
.faq-inner { max-width: 48rem; margin: 0 auto; }
.faq-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
.faq-sections { display: flex; flex-direction: column; gap: 2.5rem; }
.faq-category-title { font-size: 1.5rem; font-weight: 500; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--color-border); }
.faq-items { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
	padding: 1.25rem;
	text-align: left;
	background: none; border: none;
	font-weight: 500; font-size: 1rem;
	transition: background-color 0.15s;
}
.faq-question > span { min-width: 0; padding-right: 1rem; }
.faq-question:hover { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); }
.faq-chevron { flex-shrink: 0; color: var(--color-muted-foreground); transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--transition-smooth); }
.faq-answer-inner { padding: 0 1.25rem 1.25rem; }
.faq-answer-inner p { color: var(--color-muted-foreground); line-height: 1.625; font-size: 1rem; }

/* -------------------------------------------------------------------------
 * CONTACT
 * ---------------------------------------------------------------------- */
.contact-section { position: relative; background: var(--color-foreground); color: var(--color-background); padding-top: 5rem; padding-bottom: 5rem; overflow: hidden; }
.contact-media { position: absolute; inset: 0; z-index: 0; }
.contact-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.contact-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-foreground) 80%, transparent), color-mix(in srgb, var(--color-foreground) 85%, transparent) 50%, color-mix(in srgb, var(--color-foreground) 90%, transparent)); }
.contact-content { position: relative; z-index: 10; }
.contact-inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.contact-eyebrow { color: var(--color-primary); margin-bottom: 1rem; }
.contact-title { font-size: 2.25rem; font-weight: 500; margin-bottom: 1rem; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
.contact-paragraph { color: color-mix(in srgb, var(--color-background) 70%, transparent); margin-bottom: 1rem; font-size: 1.125rem; }
.contact-details { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; font-size: 1rem; color: color-mix(in srgb, var(--color-background) 60%, transparent); }
@media (min-width: 640px) { .contact-details { flex-direction: row; gap: 1.5rem; } }
.contact-email-row { display: flex; align-items: center; gap: 0.5rem; }
.contact-email-link:hover { color: var(--color-primary); }
.contact-social { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.contact-social-link, .footer-social-link {
	width: 2.5rem; height: 2.5rem;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-background) 25%, transparent);
	display: flex; align-items: center; justify-content: center;
	color: color-mix(in srgb, var(--color-background) 70%, transparent);
	transition: color 0.15s, border-color 0.15s;
}
.contact-social-link:hover { color: var(--color-primary); border-color: var(--color-primary); }

.contact-success { text-align: center; }
.contact-success-icon {
	width: 4rem; height: 4rem; border-radius: 50%;
	background: var(--color-primary); color: var(--color-primary-foreground);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1.5rem;
}
.contact-success-title { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.5rem; }
.contact-success-text { color: color-mix(in srgb, var(--color-background) 70%, transparent); }

.contact-form { text-align: left; display: flex; flex-direction: column; gap: 1rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .contact-form-row { grid-template-columns: 1fr 1fr; } }
.contact-form-field label { display: block; font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.contact-form-field input, .contact-form-field textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: color-mix(in srgb, var(--color-background) 10%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-background) 20%, transparent);
	color: var(--color-background);
	font-size: 1rem;
	border-radius: var(--radius);
}
.contact-form-field textarea { resize: none; }
.contact-form-field input:focus, .contact-form-field textarea:focus { outline: none; box-shadow: 0 0 0 1px var(--color-primary); }
.contact-form-submit { text-align: center; padding-top: 0.5rem; }
.contact-form-error { color: #ff6b6b; font-size: 0.875rem; text-align: center; margin-top: 0.5rem; }

/* -------------------------------------------------------------------------
 * FOOTER
 * ---------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-secondary); }
.site-footer-inner { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 1024px) { .site-footer-inner { padding-top: 4rem; padding-bottom: 4rem; } }
.site-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .site-footer-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 3rem; } }
.footer-description { margin-top: 1rem; font-size: 1rem; font-weight: 500; color: var(--color-muted-foreground); max-width: 24rem; line-height: 1.625; }
.footer-social { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.site-footer .footer-social-link { border-color: var(--color-border); color: var(--color-muted-foreground); }
.site-footer .footer-social-link:hover { color: var(--color-foreground); border-color: var(--color-foreground); }
.footer-heading { font-family: var(--font-body); font-size: 1rem; font-weight: 500; margin-bottom: 1rem; }
.footer-nav-list, .footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; margin: 0; padding: 0; }
.footer-nav-link, .footer-nav-list a, .footer-contact-list a { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--color-muted-foreground); transition: color 0.15s; background: none; border: none; cursor: pointer; text-align: left; padding: 0; }
.footer-nav-link:hover, .footer-nav-list a:hover, .footer-contact-list a:hover { color: var(--color-foreground); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 1rem; color: var(--color-muted-foreground); }
.footer-mail-icon { margin-top: 0.25rem; flex-shrink: 0; }
.footer-email-link { word-break: break-all; }
.site-footer-bottom {
	margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--color-border);
	display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 640px) { .site-footer-bottom { flex-direction: row; } }
.footer-copyright, .footer-builtby { font-size: 0.875rem; color: var(--color-muted-foreground); }
.footer-builtby a { text-decoration: underline; text-underline-offset: 2px; }
.footer-builtby a:hover { color: var(--color-foreground); }

/* -------------------------------------------------------------------------
 * 404
 * ---------------------------------------------------------------------- */
.theme-404 { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; justify-content: center; background: var(--color-muted); }
.theme-404-inner { text-align: center; }
.theme-404-code { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; font-family: var(--font-display); }
.theme-404-text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404-link { color: var(--color-primary); text-decoration: underline; }
.theme-404-link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* -------------------------------------------------------------------------
 * SINGLE PRODUCT
 * ---------------------------------------------------------------------- */
.single-product-main { padding-top: calc(var(--header-height) + 1.5rem); padding-bottom: 3rem; min-height: 60vh; }
@media (min-width: 1024px) { .single-product-main { padding-top: calc(var(--header-height) + 2rem); } }
.theme-back-to-shop-row { padding: 1.5rem 0; }
.theme-back-to-shop { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.15s; }
.theme-back-to-shop:hover { color: var(--color-foreground); }

.theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: 5rem;
	min-width: 0;
}
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-main-image-wrap {
	position: relative;
	aspect-ratio: 3/4;
	background: var(--color-secondary);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: zoom-in;
	margin-bottom: 1rem;
}
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; max-width: 100%; }
.theme-product-thumb {
	position: relative;
	width: 5rem; height: 5rem;
	border-radius: calc(var(--radius) - 4px);
	overflow: hidden;
	border: 2px solid transparent;
	opacity: 0.6;
	background: none; padding: 0;
	transition: all 0.2s;
}
.theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb.is-active { border-color: var(--color-foreground); opacity: 1; }
.theme-product-thumb img { position: static; width: 100%; height: 100%; object-fit: cover; }

.theme-product-info { padding: 2.5rem 0; }
.theme-product-category { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.product-title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin-top: 0.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .product-title { font-size: 1.875rem; } }
.theme-product-price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.theme-product-price .woocommerce-Price-amount { font-size: inherit; }
.theme-stock-badge { display: inline-block; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; border-radius: 6px; margin-bottom: 1rem; }
.theme-stock-badge.is-out-of-stock { background: var(--color-muted); color: var(--color-muted-foreground); }
.theme-product-description { color: var(--color-muted-foreground); line-height: 1.625; margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-custom-made-note { background: color-mix(in srgb, var(--color-primary) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); border-radius: var(--radius); padding: 1rem; margin-bottom: 1.5rem; }
.theme-custom-made-title { font-size: 0.875rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.25rem; }
.theme-custom-made-text { font-size: 0.75rem; color: var(--color-muted-foreground); }

.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: 6px; flex-shrink: 0; }
.theme-qty-minus, .theme-qty-plus { background: none; border: none; padding: 0.75rem; transition: background-color 0.15s; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
	width: 3rem; text-align: center;
	border: none; background: none;
	-moz-appearance: textfield;
	padding: 0.75rem 0;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-quick-add,
.theme-product-card .theme-quick-add-link {
	min-height: unset !important;
	padding: var(--btn-icon-padding) !important;
	border-radius: 50% !important;
	background-color: var(--color-background) !important;
	color: var(--color-foreground) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-quick-add:hover,
.theme-product-card .theme-quick-add-link:hover {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	opacity: 1 !important;
}

.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

.theme-made-to-order-note { font-size: 0.75rem; color: var(--color-muted-foreground); text-align: center; margin-bottom: 1rem; }
.theme-product-details-block { border-top: 1px solid var(--color-border); padding-top: 2rem; }
.theme-details-heading { font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.theme-details-content { color: var(--color-muted-foreground); font-size: 0.875rem; line-height: 1.625; overflow-wrap: break-word; word-break: break-word; }
.theme-details-content ul { list-style: disc; padding-left: 1.25rem; }

/* Variable product attribute pills */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td {
	display: block;
	width: 100%;
}
.single-product .variations.shop_attributes tbody td.label { padding-bottom: 0; font-weight: 500; }
.single-product .variations tbody td.label label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.75rem;
	color: var(--color-foreground);
}
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1.5rem; }
.single-product .variations_form .theme-variation-row { margin-bottom: 1.5rem; }
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.theme-attr-pill {
	padding: 0.5rem 1rem;
	min-width: 3rem;
	border: 1px solid var(--color-border);
	border-radius: 0.25rem;
	background: var(--color-background);
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.2s;
}
.theme-attr-pill:hover { border-color: var(--color-foreground); }
.theme-attr-pill.is-selected { border-color: var(--color-foreground); background: var(--color-foreground); color: var(--color-background); }
.single_add_to_cart_button.disabled,
.single_add_to_cart_button:disabled,
.single_add_to_cart_button.wc-variation-selection-needed {
	opacity: 0.4 !important;
	pointer-events: none !important;
	cursor: not-allowed !important;
}

.woocommerce-variation-description { overflow-wrap: break-word; word-break: break-word; }
.posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding-top: 5rem; padding-bottom: 5rem; border-top: 1px solid var(--color-border); }
.related-products-heading { font-size: 1.25rem; font-weight: 500; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .related-products-heading { font-size: 1.5rem; } }
.related-products-grid.theme-product-grid { flex-wrap: wrap; }
.related-products-grid .theme-product-card-wrap { width: calc(50% - 0.75rem); }
@media (min-width: 1024px) { .related-products-grid .theme-product-card-wrap { width: calc(25% - 1.5rem); } }

/* -------------------------------------------------------------------------
 * SHOP ARCHIVE
 * ---------------------------------------------------------------------- */
.theme-shop-archive-inner { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }

/* -------------------------------------------------------------------------
 * SIDE CART DRAWER
 * ---------------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	z-index: 55;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%;
	width: 100%; max-width: 28rem;
	background: var(--color-background);
	z-index: 60;
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer-title-row { display: flex; align-items: center; gap: 0.75rem; }
.theme-cart-drawer-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; }
.theme-cart-empty-link { background: none; border: none; font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-empty-link:hover { color: var(--color-destructive); }
.theme-cart-close { background: none; border: none; padding: 0.25rem; }
.theme-cart-close:hover { opacity: 0.6; }

.theme-cart-empty-state { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-empty-state svg { color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-empty-state p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

.theme-cart-items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item-image { position: relative; width: 5rem; height: 6rem; background: var(--color-secondary); border-radius: 6px; overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	max-height: none;
	object-fit: cover;
}
.theme-cart-item-info { flex: 1; min-width: 0; }
.theme-cart-item-name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item-name:hover { opacity: 0.7; }
.theme-cart-item-price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-item-price .woocommerce-Price-amount { font-size: inherit; }
.theme-cart-item-variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { background: none; border: none; padding: 0.25rem; border-radius: 4px; }
.theme-cart-qty-btn:hover { background: var(--color-secondary); }
.theme-cart-qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-remove-link { margin-left: auto; font-size: 0.75rem; color: var(--color-muted-foreground); background: none; border: none; }
.theme-cart-remove-link:hover { color: var(--color-foreground); }

.theme-cart-drawer-footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-subtotal-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-subtotal-value { font-weight: 500; }
.theme-cart-subtotal-value .woocommerce-Price-amount { font-size: inherit; }
.theme-cart-shipping-note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-checkout-btn { width: 100%; height: 2.75rem; }

/* -------------------------------------------------------------------------
 * WOOCOMMERCE NOTICES (Section 14.1)
 * ---------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error, .woocommerce-message, .woocommerce-info {
	border-radius: var(--radius);
	padding: 1rem 1.5rem;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	list-style: none;
	border-top: 3px solid var(--color-primary);
	background: var(--color-secondary);
	color: var(--color-foreground);
}

/* -------------------------------------------------------------------------
 * CHECKOUT (Section 13)
 * ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: calc(var(--header-height) + 1rem);
	padding-bottom: 4rem;
}
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 2rem;
	margin-bottom: 2rem;
}
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { width: 100%; }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout__main-and-sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}

/* Checkout inputs — Lovable parity (WC block padding preserved via specificity) */
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout input[type="password"],
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input {
	width: 100% !important;
	max-width: none !important;
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 0.25rem !important;
	color: var(--color-foreground) !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}
body.woocommerce-checkout input::placeholder,
body.woocommerce-checkout textarea::placeholder,
body.woocommerce-checkout .wc-block-components-text-input input::placeholder {
	color: var(--color-muted-foreground) !important;
	opacity: 1 !important;
}
body.woocommerce-checkout input:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: none !important;
	border-color: var(--color-border) !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-select .components-custom-select-control__button,
body.woocommerce-checkout .wc-block-components-select .components-input-control__container {
	border: 1px solid var(--color-border) !important;
	border-radius: 0.25rem !important;
	background-color: var(--color-background) !important;
}
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-select label {
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	color: var(--color-foreground) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	border: 1px solid var(--color-border) !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: var(--radius); }

/* -------------------------------------------------------------------------
 * THANK YOU PAGE
 * ---------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order { max-width: 48rem; margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-size: 1.5rem; padding: 2rem 0 1rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { border-right: 1px solid var(--color-border); padding-right: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }
}
