/* =========================================================
   BlessedlyHooked theme stylesheet
   Theme by The Free Website Guys
   ========================================================= */

:root {
	--font-display: 'Halant', serif;
	--font-body: 'Fira Sans', sans-serif;

	--radius: 0.75rem;
	--shadow-soft: 0 4px 20px -4px hsl(22 40% 14% / 0.10);
	--shadow-elevated: 0 8px 40px -8px hsl(22 40% 14% / 0.22);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);

	--header-height: 80px;

	--btn-radius: 999px;
	--btn-height: 3.25rem;
	--btn-padding: 1rem 2.25rem;
	--btn-font-size: 0.7rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.25em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0;
	--color-button-text: var(--color-background);

	/* colors are emitted by PHP (wp_add_inline_style) but declare sane
	   fallbacks so the stylesheet is valid standalone */
	--color-background: #f4f1eb;
	--color-foreground: #312017;
	--color-navbar: #ffffff;
	--color-primary: #9d3d25;
	--color-primary-foreground: #faf8f4;
	--color-secondary: #ebe1d6;
	--color-muted: #d5ccc3;
	--color-muted-foreground: #5f4e45;
	--color-border: #d1c7bd;
	--color-rosa: #7c1d38;
	--color-marigold: #e68a19;
	--color-teal: #296563;
	--color-butter: #ebe1d6;
	--logo-height: 64px;
}

/* ===================== RESET / BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; }

html { scroll-behavior: smooth; }

body {
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	-webkit-font-smoothing: antialiased;
	margin: 0;
	line-height: 1.5;
}

button, input, textarea, select, .woocommerce, .woocommerce-page {
	font-family: var(--font-body);
}

img, video { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.gallery-img):not(.tile-img):not(.service-img):not(.owner-img):not(.cta-bg-img):not(.gallery-thumb-img):not(.main-product-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .product-card-img, .gallery-img, .tile-img, .service-img, .owner-img, .cta-bg-img, .gallery-thumb-img, .main-product-img,
.theme-product-card__image-wrapper img,
.theme-cart-item__image img {
	position: absolute; inset: 0;
	width: 100% !important; height: 100% !important;
	object-fit: cover;
	max-width: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

.section-divider {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
}

.theme-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.theme-icon-5 { width: 1.25rem; height: 1.25rem; }
.theme-icon-4 { width: 1rem; height: 1rem; }
.theme-icon-sm { width: 0.875rem; height: 0.875rem; }
.theme-icon-xs { width: 0.75rem; height: 0.75rem; }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
	content: '';
	position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

.scroll-mt-24 { scroll-margin-top: 6rem; }

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

.theme-btn-primary {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background-color: var(--color-foreground);
	color: var(--color-background);
	padding: 1rem 2.25rem;
	font-family: var(--font-display);
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	border-radius: 999px;
}
.theme-btn-primary:hover { background-color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }

.theme-btn-secondary {
	display: inline-flex; align-items: center; justify-content: center;
	background-color: var(--color-background);
	color: var(--color-foreground);
	padding: 1.25rem 3rem;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.85rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	transition: background-color 0.2s ease;
}
.theme-btn-secondary:hover { background-color: color-mix(in srgb, var(--color-background) 90%, transparent); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroRiseSm { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes modalPop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes checkPop { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }

.animate-fade-in { animation: fadeIn 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.6s var(--transition-smooth) forwards; }

.reveal-section .reveal-item,
.theme-product-card-wrap.reveal-item {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
	transition-delay: var(--reveal-delay, 0s);
}
.reveal-section.is-visible .reveal-item,
.theme-product-card-wrap.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}
body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .theme-product-card-wrap.reveal-item, .hero-rise, .hero-rise-sm, .hero-fade { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ===================== ANNOUNCEMENT BAR ===================== */
.theme-announcement-bar {
	position: relative;
	background-color: var(--color-foreground);
	color: var(--color-background);
}
.theme-announcement-bar__inner { padding: 0.5rem 1.5rem; text-align: center; }
.theme-announcement-bar__text { font-size: 0.8125rem; letter-spacing: 0.18em; text-transform: uppercase; }
.theme-announcement-bar__close {
	position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
	padding: 0.25rem; opacity: 0.7; transition: opacity 0.2s ease; color: inherit;
}
.theme-announcement-bar__close:hover { opacity: 1; }
.theme-announcement-bar.is-dismissed { display: none; }

/* ===================== HEADER ===================== */
.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50;
	background-color: var(--color-navbar);
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 30%, transparent);
	transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-solid,
.site-header.mobile-open {
	background-color: color-mix(in srgb, var(--color-navbar) 95%, transparent);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-bottom-color: var(--color-border);
}
.site-header__nav { display: flex; align-items: center; justify-content: space-between; height: 5rem; position: relative; }
.site-header__logo-link { display: flex; align-items: center; gap: 0.75rem; }
.site-header .site-logo-img { height: 3rem !important; width: auto !important; display: block; object-fit: contain; }
@media (min-width: 768px) {
	.site-header .site-logo-img { height: var(--logo-height) !important; }
}
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; line-height: 3rem; display: block; }
.site-logo-text--with-image { font-size: 1.125rem; line-height: 1.2; font-weight: 500; letter-spacing: 0.04em; }
@media (min-width: 768px) { .site-logo-text { line-height: var(--logo-height); } }

.site-header__center-nav { display: none; }
@media (min-width: 1024px) {
	.site-header__center-nav {
		display: flex; align-items: center; gap: 2rem;
		position: absolute; left: 50%; transform: translateX(-50%);
	}
}
.theme-nav-list { display: flex; align-items: center; gap: 2rem; margin: 0; padding: 0; list-style: none; }
.theme-nav-list li { display: flex; }
.theme-nav-list a, .theme-nav-link {
	font-family: var(--font-display); font-weight: 500; font-size: 0.75rem;
	letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
	transition: color 0.3s ease; position: relative; display: inline-block;
}
.theme-nav-list a::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-list a:hover::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .site-header__actions { gap: 0.75rem; } }
.site-header__icon-btn { position: relative; padding: 0.5rem; transition: opacity 0.2s ease; display: inline-flex; }
.site-header__icon-btn .theme-icon { width: 1.25rem; height: 1.25rem; }
.site-header__icon-btn:hover { opacity: 0.6; }
.site-header__search-btn { display: none; }
@media (min-width: 768px) { .site-header__search-btn { display: inline-flex; } }
.site-header__menu-btn { display: inline-flex; }
@media (min-width: 1024px) { .site-header__menu-btn { display: none; } }

.theme-cart-count {
	position: absolute; top: -0.125rem; right: -0.125rem;
	width: 1.25rem; height: 1.25rem; display: flex; align-items: center; justify-content: center;
	font-size: 0.7rem; font-weight: 500; border-radius: 999px;
	background-color: var(--color-primary); color: var(--color-primary-foreground);
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-menu { display: none; border-top: 1px solid var(--color-border); padding: 1rem 0; }
.site-header__mobile-menu.is-open { display: block; animation: fadeIn 0.4s var(--transition-smooth); }
@media (min-width: 1024px) { .site-header__mobile-menu { display: none !important; } }
.theme-mobile-nav-list,
.site-header__mobile-menu ul,
.site-header__mobile-menu .theme-nav-list,
.site-header__mobile-menu .theme-mobile-nav-list {
	display: flex !important;
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 1rem !important;
	width: 100%;
}
.theme-mobile-nav-list a { text-align: left; font-size: 0.875rem; font-family: var(--font-display); letter-spacing: 0.18em; text-transform: uppercase; padding: 0.5rem 0; display: block; transition: color 0.2s ease; }
.theme-mobile-nav-list a:hover { color: var(--color-muted-foreground); }
.site-header__mobile-menu .theme-nav-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
}
.site-header__mobile-menu .theme-nav-list a::after { content: none; }
.site-header__mobile-menu .theme-nav-list a {
	text-align: left;
	font-size: 0.875rem;
	letter-spacing: 0.18em;
	padding: 0.5rem 0;
	display: block;
}

/* ===================== HERO ===================== */
.hero-section { background-color: var(--color-background); }
.hero-media-wrap {
	position: relative;
	animation: heroFadeIn 1.1s var(--ease-smooth) both;
}
.hero-frame {
	position: relative; width: 100%; overflow: hidden;
	height: 70vh; min-height: 520px;
}
@media (min-width: 768px) { .hero-frame { height: 80vh; min-height: 640px; } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in srgb, var(--color-foreground) 55%, transparent), color-mix(in srgb, var(--color-foreground) 25%, transparent), transparent); }
.hero-content {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 1024px) {
	.hero-content { padding-left: 2rem; padding-right: 2rem; }
}
.hero-content-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.hero-title {
	font-family: var(--font-display); font-weight: 400;
	font-size: 3rem; line-height: 1.05; color: #fff; margin-bottom: 2rem;
	max-width: 48rem; margin-left: auto; margin-right: auto; white-space: pre-line;
	text-shadow: 0 2px 24px color-mix(in srgb, var(--color-foreground) 55%, transparent);
	animation: heroRise 0.9s var(--ease-smooth) 0.35s both;
}
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }
.hero-subtitle {
	color: #fff; font-size: 1.125rem; line-height: 1.6; margin-bottom: 3rem;
	max-width: 42rem; margin-left: auto; margin-right: auto; white-space: pre-line;
	text-shadow: 0 2px 18px color-mix(in srgb, var(--color-foreground) 50%, transparent);
	animation: heroRiseSm 0.7s var(--ease-smooth) 0.55s both;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
@media (min-width: 1280px) { .hero-subtitle { font-size: 1.5rem; } }
.hero-cta { text-align: center; animation: heroRiseSm 0.65s var(--ease-smooth) 0.75s both; }
.hero-cta-btn {
	display: inline-flex; align-items: center; justify-content: center;
	background-color: var(--color-background); color: var(--color-foreground);
	padding: 1.25rem 3rem; font-family: var(--font-display); font-weight: 500;
	font-size: 0.875rem; letter-spacing: 0.25em; text-transform: uppercase;
	transition: background-color 0.2s ease;
}
.hero-cta-btn:hover { background-color: color-mix(in srgb, var(--color-background) 90%, transparent); }

/* ===================== SHOP BY COLLECTION ===================== */
.section-pad {
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}
@media (min-width: 768px) {
	.section-pad {
		padding-top: 4rem;
		padding-bottom: 4rem;
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}
}
@media (min-width: 1024px) {
	.section-pad { padding-left: 2rem !important; padding-right: 2rem !important; }
}
.container-wide.section-pad { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
@media (min-width: 1024px) { .container-wide.section-pad { padding-left: 2rem !important; padding-right: 2rem !important; } }
.section-header-center { text-align: center; margin-bottom: 2.5rem; }
.section-kicker { display: block; font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 0.75rem; }
.about-section .section-kicker,
.owner-section .section-kicker { margin-bottom: 1.25rem; }
.services-section .section-kicker,
.cta-section .section-kicker { margin-bottom: 1rem; }
.collection-section .section-heading { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; }
@media (min-width: 768px) { .collection-section .section-heading { font-size: 2.25rem; } }

.collection-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .collection-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.collection-tile { position: relative; aspect-ratio: 3 / 4; overflow: hidden; display: block; width: 100%; }
.collection-tile__img { transition: transform 0.7s var(--ease-smooth); }
.collection-tile:hover .collection-tile__img { transform: scale(1.05); }
.collection-tile__gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 85%, transparent), color-mix(in srgb, var(--color-foreground) 40%, transparent), color-mix(in srgb, var(--color-foreground) 10%, transparent));
	transition: background 0.5s ease;
}
.collection-tile:hover .collection-tile__gradient { background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 90%, transparent), color-mix(in srgb, var(--color-foreground) 40%, transparent), color-mix(in srgb, var(--color-foreground) 10%, transparent)); }
.collection-tile__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; text-align: left; color: var(--color-background); text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
@media (min-width: 768px) { .collection-tile__content { padding: 1.75rem; } }
.collection-tile__tagline { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.6875rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.5rem; filter: brightness(1.5); }
.collection-tile__tagline .rule { height: 1px; width: 1.5rem; background: currentColor; display: inline-block; }
.collection-tile__label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .collection-tile__label { font-size: 1.875rem; } }
.collection-tile__cta { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; }

/* ===================== FEATURED PIECES ===================== */
.featured-section .section-heading { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .featured-section .section-heading { font-size: 3rem; } }
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .featured-grid { gap: 3rem; } }
.featured-view-all { text-align: center; margin-top: 3.5rem; }

/* ===================== PRODUCT CARD ===================== */
.theme-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }
.featured-grid.theme-product-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .featured-grid.theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: block; position: relative; }
.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 3 / 4; background-color: var(--color-secondary);
	overflow: hidden; margin-bottom: 1.25rem; transition: transform 0.2s var(--transition-smooth);
	z-index: 1;
}
.theme-product-card__image-link { display: block; position: absolute; inset: 0; z-index: 1; }
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-4px); }
.theme-product-card__image-wrapper img { transition: transform 0.7s var(--ease-smooth); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.04); }
.theme-product-card__image-wrapper img.is-soldout { opacity: 0.6; }

.theme-product-badge {
	position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.75rem;
	font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
	background-color: var(--color-foreground); color: var(--color-background); border-radius: 999px;
	z-index: 3;
}

.theme-product-card__quick-add {
	position: absolute !important;
	bottom: 0.75rem !important;
	right: 0.75rem !important;
	top: auto !important;
	left: auto !important;
	width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
	border-radius: 999px; background-color: var(--color-background) !important; color: var(--color-foreground) !important;
	box-shadow: var(--shadow-soft); transition: opacity 0.3s ease, transform 0.15s ease, background-color 0.15s ease;
	opacity: 1; z-index: 6; pointer-events: auto !important; isolation: isolate;
}
@media (min-width: 768px) {
	.theme-product-card__quick-add { opacity: 0; }
	.theme-product-card:hover .theme-product-card__quick-add { opacity: 1; }
}
.theme-product-card__quick-add:hover {
	transform: scale(1.08);
	background-color: var(--color-background) !important;
	color: var(--color-foreground) !important;
	opacity: 1 !important;
}
.theme-product-card__quick-add:active { transform: scale(0.92); }
.theme-product-card__quick-add.disabled,
.theme-product-card__quick-add:disabled { opacity: 0.4 !important; pointer-events: none !important; cursor: not-allowed !important; }

.theme-product-card__info { flex: 1; text-align: center; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-card__title {
	font-size: 0.875rem; font-family: var(--font-body); font-weight: 500; text-transform: uppercase;
	letter-spacing: 0.15em; line-height: 1.4; color: var(--color-foreground); transition: color 0.3s ease;
	min-width: 0;
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-size: 1rem; color: var(--color-foreground); font-weight: 400; line-height: 1.3; }
@media (min-width: 768px) { .theme-product-card__price { font-size: 1.125rem; } }

/* WooCommerce structural overrides for add-to-cart on cards (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	position: absolute !important;
	bottom: 0.75rem !important;
	right: 0.75rem !important;
	top: auto !important;
	left: auto !important;
	min-height: unset !important;
	height: 2.5rem !important;
	width: 2.5rem !important;
	padding: 0 !important;
	border-radius: 50% !important;
	font-size: 0 !important;
	background-color: var(--color-background) !important;
	color: var(--color-foreground) !important;
	line-height: 0 !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart::before { display: none !important; content: none !important; }
.theme-product-card .add_to_cart_button.ajax_add_to_cart .theme-icon {
	width: 1rem;
	height: 1rem;
	display: block;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover {
	background-color: var(--color-background) !important;
	color: var(--color-foreground) !important;
	opacity: 1 !important;
}

.theme-product-card { position: relative; }

/* ===================== ABOUT ===================== */
.about-section .section-inner { padding: 3.5rem 1.5rem; }
@media (min-width: 768px) { .about-section .section-inner { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .about-section .section-inner { padding: 5rem 5rem; } }
.about-section .content-wrap { max-width: 56rem; margin: 0 auto; text-align: center; }
.about-section .section-heading { font-family: var(--font-display); font-weight: 600; font-size: 1.875rem; line-height: 1.25; margin-bottom: 2rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .about-section .section-heading { font-size: 2.25rem; } }
.about-section p { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; margin-bottom: 1.25rem; }
.about-section p:last-of-type { margin-bottom: 2.5rem; }

/* ===================== OWNER ===================== */
.owner-section .owner-grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .owner-section .owner-grid { grid-template-columns: 1fr 1fr; } }
.owner-section .owner-media { position: relative; min-height: 380px; }
@media (min-width: 768px) { .owner-section .owner-media { min-height: 520px; } }
@media (min-width: 1024px) { .owner-section .owner-media { min-height: 620px; } }
.owner-section .owner-content { display: flex; align-items: center; background-color: var(--color-background); padding: 3rem 1.5rem; }
@media (min-width: 768px) { .owner-section .owner-content { padding: 4rem 3.5rem; } }
@media (min-width: 1024px) { .owner-section .owner-content { padding: 4rem 5rem; } }
@media (min-width: 1280px) { .owner-section .owner-content { padding: 4rem 6rem; } }
.owner-section .owner-content-inner { max-width: 36rem; }
.owner-section .section-heading { font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .owner-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .owner-section .section-heading { font-size: 3.75rem; } }
.owner-section .owner-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); line-height: 1.4; margin-bottom: 2rem; }
@media (min-width: 768px) { .owner-section .owner-quote { font-size: 1.5rem; } }
.owner-section p:not(.owner-quote) { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; margin-bottom: 1.25rem; }

/* ===================== SERVICES ===================== */
.services-section { background-color: var(--color-butter); }
.services-section .services-intro { padding: 3.5rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .services-section .services-intro { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .services-section .services-intro { padding: 5rem 5rem; } }
.services-section .section-heading { font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; letter-spacing: -0.02em; line-height: 1.05; }
@media (min-width: 768px) { .services-section .section-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .services-section .section-heading { font-size: 4.5rem; } }

.service-row { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .service-row { grid-template-columns: 1fr 1fr; } }
.service-row.is-reversed .service-media { order: 2; }
.service-row.is-reversed .service-content { order: 1; }
@media (max-width: 1023px) { .service-row.is-reversed .service-media, .service-row.is-reversed .service-content { order: initial; } }
.service-media { position: relative; min-height: 360px; }
@media (min-width: 768px) { .service-media { min-height: 500px; } }
@media (min-width: 1024px) { .service-media { min-height: 560px; } }
.service-media img { transition: transform 0.9s var(--ease-smooth); }
.service-row:hover .service-media img { transform: scale(1.03); }
.service-numeral {
	position: absolute; top: 1.25rem; left: 1.25rem; font-family: var(--font-display); font-size: 0.875rem;
	letter-spacing: 0.3em; padding: 0.25rem 0.5rem; background-color: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(4px); z-index: 2;
}
.service-content { display: flex; align-items: center; background-color: var(--color-butter); padding: 3rem 1.5rem; }
@media (min-width: 768px) { .service-content { padding: 4rem 3.5rem; } }
@media (min-width: 1024px) { .service-content { padding: 4rem 5rem; } }
@media (min-width: 1280px) { .service-content { padding: 4rem 6rem; } }
.service-content-inner { max-width: 36rem; }
.service-badge-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.service-icon-badge { display: flex; height: 2.5rem; width: 2.5rem; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid; flex-shrink: 0; }
.service-icon-badge svg { width: 1rem; height: 1rem; }
.service-kicker { font-size: 0.6875rem; letter-spacing: 0.3em; text-transform: uppercase; }
.service-title { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .service-title { font-size: 3rem; } }
@media (min-width: 1024px) { .service-title { font-size: 3.75rem; } }
.service-description { font-size: 1rem; color: var(--color-muted-foreground); line-height: 1.7; }
@media (min-width: 768px) { .service-description { font-size: 1.125rem; } }

.accent-rosa { border-color: color-mix(in srgb, var(--color-rosa) 40%, transparent); color: var(--color-rosa); }
.accent-marigold { border-color: color-mix(in srgb, var(--color-marigold) 50%, transparent); color: var(--color-marigold); }
.accent-teal { border-color: color-mix(in srgb, var(--color-teal) 40%, transparent); color: var(--color-teal); }

/* ===================== GALLERY ===================== */
.gallery-section .gallery-header { margin-bottom: 2.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
@media (min-width: 768px) { .gallery-section .gallery-header { margin-bottom: 3.5rem; } }
.gallery-section .section-heading { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; letter-spacing: -0.02em; line-height: 1.05; }
@media (min-width: 768px) { .gallery-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .gallery-section .section-heading { font-size: 3.75rem; } }

.gallery-track-wrap { overflow: hidden; width: 100%; }
.gallery-track {
	display: flex; gap: 1rem; overflow-x: auto; overflow-y: hidden; padding-bottom: 0.5rem;
	padding-left: 1.5rem; padding-right: 1.5rem;
	scrollbar-width: none; -ms-overflow-style: none;
	width: 100%;
	box-sizing: border-box;
}
.gallery-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .gallery-track { gap: 1.5rem; padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .gallery-track { padding-left: 4rem; padding-right: 4rem; } }
.gallery-item { flex: 0 0 auto; box-sizing: border-box; }
.gallery-item a { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; }
.gallery-item img { object-position: top; transition: transform 0.9s var(--ease-smooth); }
.gallery-item a:hover img { transform: scale(1.04); }

.gallery-controls { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.gallery-nav-btn {
	height: 3rem; width: 3rem; display: flex; align-items: center; justify-content: center;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: color 0.2s ease, border-color 0.2s ease;
}
.gallery-nav-btn:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* ===================== SHOP SECTION ===================== */
.shop-section .shop-heading-block { text-align: center; margin-bottom: 3rem; }
.shop-section .section-heading { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-section .section-heading { font-size: 3rem; } }

.shop-search-wrap { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search-wrap .theme-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); width: 1rem; height: 1rem; }
.shop-search-input {
	width: 100%; padding: 0.5rem 0 0.5rem 1.75rem; background: transparent;
	border: none; border-bottom: 1px solid var(--color-border); border-radius: 0;
	font-size: 0.9375rem; color: var(--color-foreground); outline: none;
	transition: border-color 0.2s ease;
}
.shop-search-input::placeholder { color: var(--color-muted-foreground); }
.shop-search-input:focus { border-color: var(--color-foreground); }

.shop-category-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.shop-category-pill {
	padding: 0.5rem 1.25rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
	border-radius: 999px; border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground);
	transition: all 0.3s ease;
}
.shop-category-pill:hover { border-color: var(--color-rosa); color: var(--color-rosa); }
.shop-category-pill.is-active { background-color: var(--color-rosa); border-color: var(--color-rosa); color: var(--color-background); }

.shop-price-filter-toggle {
	display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; margin: 0 auto;
	font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground);
	transition: color 0.3s ease;
}
.shop-price-filter-toggle:hover { color: var(--color-foreground); }
.shop-price-filter-toggle .price-range-hint { opacity: 0.7; text-transform: none; letter-spacing: normal; }
.shop-price-filter-toggle .theme-icon { transition: transform 0.3s ease; }
.shop-price-filter-toggle.is-open .theme-icon { transform: rotate(180deg); }
.shop-price-filter-wrap { width: 100%; max-width: 28rem; margin: 0 auto; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease; }
.shop-price-filter-wrap.is-open { max-height: 220px; opacity: 1; }
.shop-price-filter-inner { padding: 1.25rem 0.5rem 0.5rem; }
.shop-price-values { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.75rem; }

.shop-empty-state { text-align: center; padding: 5rem 0; }
.shop-empty-state p { color: var(--color-muted-foreground); }
.shop-show-more { text-align: center; margin-top: 3rem; }

/* Dual range price slider (Section 31.4) */
.price-range-wrapper { position: relative; height: 1.5rem; margin-bottom: 0.75rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-primary); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 1.25rem; height: 1.25rem; border-radius: 999px; border: 2px solid var(--color-primary); background: var(--color-background); cursor: pointer; margin-top: 0; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 1.25rem; height: 1.25rem; border-radius: 999px; border: 2px solid var(--color-primary); background: var(--color-background); cursor: pointer; }
.range-input::-webkit-slider-runnable-track { background: transparent; }
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

/* ===================== FINAL CTA ===================== */
.cta-section { position: relative; background-color: var(--color-butter); overflow: hidden; }
.cta-section .cta-inner { position: relative; padding: 4rem 0; }
@media (min-width: 768px) { .cta-section .cta-inner { padding: 6rem 0; } }
.cta-card {
	max-width: 42rem; margin: 0 auto; text-align: center;
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(4px); box-shadow: var(--shadow-elevated);
	padding: 2rem 1.5rem; border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
}
@media (min-width: 768px) { .cta-card { padding: 4rem 3.5rem; } }
.cta-section .section-heading { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-section .section-heading { font-size: 3.75rem; } }
.cta-section p.cta-paragraph { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; margin-bottom: 2.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ===================== FOOTER ===================== */
.site-footer { border-top: 1px solid var(--color-border); background-color: var(--color-butter); }
.site-footer__inner {
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}
@media (min-width: 768px) {
	.site-footer__inner { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
}
@media (min-width: 1024px) {
	.site-footer__inner {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
}
.site-footer__top { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .site-footer__top { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__logo-link { display: flex; align-items: center; }
.site-footer__logo-link .site-logo-img { height: 4rem !important; }
.site-footer__nav .theme-nav-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
}
@media (min-width: 768px) { .site-footer__nav .theme-nav-list { gap: 1.75rem; } }
.site-footer__nav .theme-nav-list a {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}
.site-footer__nav .theme-nav-list a::after { content: none; }
.site-footer__nav .theme-nav-list a:hover { color: var(--color-foreground); }
.theme-footer-nav-list { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
@media (min-width: 768px) { .theme-footer-nav-list { gap: 1.75rem; } }
.theme-footer-nav-list a { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.theme-footer-nav-list a:hover { color: var(--color-foreground); }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .site-footer__contact { flex-direction: row; align-items: center; gap: 1.25rem; } }
.site-footer__contact-link { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.site-footer__contact-link:hover { color: var(--color-foreground); }
.site-footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__tagline { font-size: 0.75rem; color: var(--color-muted-foreground); letter-spacing: 0.02em; font-style: italic; font-family: var(--font-display); }
.site-footer__copyright { font-size: 0.75rem; color: var(--color-muted-foreground); letter-spacing: 0.02em; }

/* ===================== CONTACT MODAL ===================== */
.theme-modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.6); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.theme-modal { position: fixed; left: 50%; top: 50%; z-index: 101; width: calc(100% - 2rem); max-width: 32rem; max-height: 90vh; overflow-y: auto; transform: translate(-50%, calc(-50% + 12px)) scale(0.97); opacity: 0; pointer-events: none; background-color: var(--color-background); border: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); padding: 1.5rem; border-radius: var(--radius); transition: opacity 0.2s ease, transform 0.2s ease; }
body.theme-modal-open .theme-modal-overlay { opacity: 1; pointer-events: auto; }
body.theme-modal-open .theme-modal { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.theme-modal__close { position: absolute; right: 1rem; top: 1rem; padding: 0.25rem; opacity: 0.7; transition: opacity 0.2s ease; }
.theme-modal__close:hover { opacity: 1; }
.theme-modal__header { margin-bottom: 1rem; }
.theme-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 500; }
.theme-modal__description { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-modal__quick-contacts { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-modal__quick-contact { display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s ease; }
.theme-modal__quick-contact:hover { color: var(--color-foreground); }

.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form__field label { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; display: block; }
.theme-contact-form__field input, .theme-contact-form__field textarea {
	width: 100%; padding: 0.625rem 0.75rem; background-color: var(--color-background);
	border: 1px solid var(--color-border); font-size: 1rem; border-radius: calc(var(--radius) - 4px);
	transition: box-shadow 0.3s ease; resize: none;
}
.theme-contact-form__field input:focus, .theme-contact-form__field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 2.5rem;
	padding: 0.5rem 1rem;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: calc(var(--radius) - 2px);
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	transition: background-color 0.2s ease;
}
.theme-contact-form__submit:hover { background-color: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.theme-contact-form__submit .theme-icon { width: 1rem; height: 1rem; }
.theme-contact-form__submit:disabled { opacity: 0.6; pointer-events: none; }
.theme-contact-form__error { color: #c32222; font-size: 0.875rem; }

.theme-contact-success { text-align: center; padding: 2rem 0; }
.theme-contact-success.is-visible { animation: modalPop 0.4s var(--ease-smooth) both; }
.theme-contact-success__icon {
	width: 3.5rem; height: 3.5rem; background-color: var(--color-primary); color: var(--color-primary-foreground);
	display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; border-radius: 999px;
	animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
.theme-contact-success__icon .theme-icon { width: 1.75rem; height: 1.75rem; }
.theme-contact-success__title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-success__text { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* ===================== CART DRAWER ===================== */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 90; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
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-color: var(--color-background); z-index: 91; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	opacity: 0;
	transform: translateY(1.25rem);
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth), visibility 0.6s;
}
body.cart-open #theme-cart-drawer {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	visibility: visible;
}
#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 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; opacity: 0.7; transition: opacity 0.2s ease; }
.theme-cart-drawer__close:hover { opacity: 1; }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty .theme-icon { width: 3rem; height: 3rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

.theme-cart-drawer__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-color: var(--color-secondary); overflow: hidden; flex-shrink: 0; }
.theme-cart-item__image img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; 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; transition: opacity 0.2s ease; }
.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__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s ease; display: inline-flex; }
.theme-cart-item__qty-btn:hover { background-color: var(--color-secondary); }
.theme-cart-item__qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.theme-cart-item__remove: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-drawer__subtotal-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__subtotal-row .label { color: var(--color-muted-foreground); }
.theme-cart-drawer__subtotal-row .value { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-btn-outline {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%;
	border: 1px solid var(--color-border); background: var(--color-background); color: var(--color-foreground);
	padding: 0.5rem 1rem; font-size: 0.875rem; border-radius: calc(var(--radius) - 2px);
	transition: background-color 0.2s ease;
}
.theme-btn-outline:hover { background-color: var(--color-secondary); }
.theme-cart-drawer__checkout-btn {
	display: flex; align-items: center; justify-content: center; width: 100%;
	background-color: var(--color-primary); color: var(--color-primary-foreground);
	height: 2.75rem; padding: 0 2rem;
	font-family: var(--font-display); font-size: 0.875rem; font-weight: 500;
	text-transform: none; letter-spacing: 0;
	border-radius: calc(var(--radius) - 2px);
	transition: background-color 0.2s ease;
}
.theme-cart-drawer__checkout-btn:hover { background-color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* Hide WooCommerce's own "View cart" link injected after AJAX add (Section 11.4.2) */
.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; }

/* Add to cart button style override (Section 11.4.1) */
.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-button-text) !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-button-text) !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;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact button override (scoped after globals) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	position: absolute !important;
	bottom: 0.75rem !important;
	right: 0.75rem !important;
	top: auto !important;
	left: auto !important;
	min-height: unset !important;
	padding: 0 !important;
	border-radius: 50% !important;
	background-color: var(--color-background) !important;
	color: var(--color-foreground) !important;
}

/* WooCommerce notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	max-width: 80rem; margin: 1rem auto; padding: 1rem 1.5rem; border-radius: var(--radius);
	background-color: var(--color-secondary); color: var(--color-foreground); list-style: none;
	font-size: 0.9375rem;
}
.woocommerce-error { background-color: #fbe4e4; color: #7a1f1f; }

/* ===================== SINGLE PRODUCT PAGE ===================== */
.single-product main.site-main,
.single-product-main { padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 1024px) {
	.single-product main.site-main,
	.single-product-main { padding-top: 7rem; }
}
.product-breadcrumb { padding: 1.5rem 0; font-size: 0.8125rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.product-breadcrumb a { transition: color 0.2s ease; }
.product-breadcrumb a:hover { color: var(--color-foreground); }
.product-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }
.product-breadcrumb .current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: flex-start; min-width: 0; padding-bottom: 6rem; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; } }
.theme-product-gallery { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { grid-column: span 7 / span 7; } }
.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-info { grid-column: span 5 / span 5; padding-left: 1rem; position: sticky; top: 7rem; } }

.product-main-image { aspect-ratio: 1 / 1; background-color: var(--color-secondary); overflow: hidden; position: relative; }
@media (min-width: 1024px) { .product-main-image { display: none; } }
.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-top: 1rem; overflow-x: auto; padding-bottom: 0.25rem; flex-wrap: nowrap; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-thumbnails { display: none; } }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background-color: var(--color-secondary); }
.theme-product-thumb img { opacity: 0.6; transition: opacity 0.2s ease; }
.theme-product-thumb.is-active img { opacity: 1; }
.theme-product-thumb:hover img { opacity: 1; }
.theme-product-thumb .active-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--color-foreground); opacity: 0; transition: opacity 0.2s ease; }
.theme-product-thumb.is-active .active-bar { opacity: 1; }

.theme-product-gallery-desktop { display: none; }
@media (min-width: 1024px) { .theme-product-gallery-desktop { display: flex; flex-direction: column; gap: 1rem; } }
.theme-product-gallery-desktop .gallery-frame { aspect-ratio: 1 / 1; background-color: var(--color-secondary); overflow: hidden; position: relative; }

.product-category-label { font-size: 0.8125rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); }
.product-title { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.1; margin-top: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.75rem; } }
.product-price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.product-price ins { text-decoration: none; }
.product-price del { opacity: 0.6; margin-right: 0.5rem; }
.product-stock-status { display: inline-block; font-size: 0.8125rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 999px; margin-bottom: 1.5rem; background-color: var(--color-secondary); color: var(--color-muted-foreground); }
.product-stock-status.out-of-stock { background-color: color-mix(in srgb, #c32222 12%, transparent); color: #7a1f1f; }
.product-short-desc { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; font-size: 1rem; overflow-wrap: break-word; word-break: break-word; }

.product-option-group { margin-bottom: 1rem; }
.product-option-group h3 { font-size: 0.8125rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; font-style: normal; }
.product-option-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.product-option-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: transparent;
	color: var(--color-foreground);
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.product-option-swatch {
	width: 0.75rem; height: 0.75rem; border-radius: 999px;
	border: 1px solid var(--color-border); display: inline-block; flex-shrink: 0;
}
.product-option-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.product-option-pill.is-active {
	background-color: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}
.product-option-pill.has-swatch.is-active {
	background-color: color-mix(in srgb, var(--color-foreground) 5%, transparent);
	color: var(--color-foreground);
	border-color: var(--color-foreground);
}
.variations_form.cart { position: relative; }
.theme-add-to-cart-area { display: flex; flex-direction: column; align-items: stretch; gap: 0; margin-bottom: 1rem; }
.theme-variations-native {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.single-product .single_add_to_cart_button.button,
.single-product button.single_add_to_cart_button {
	width: 100% !important;
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	font-family: var(--font-body) !important;
	font-size: 0.75rem !important;
	letter-spacing: 0.25em !important;
	padding: 1rem 2.25rem !important;
	border-radius: 999px !important;
}
.single-product .single_add_to_cart_button.button:hover {
	background-color: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
	color: var(--color-background) !important;
	opacity: 1 !important;
}
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); }
.theme-quantity-wrapper .theme-qty-minus,
.theme-quantity-wrapper .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background-color 0.2s ease; }
.theme-quantity-wrapper .theme-qty-minus:hover,
.theme-quantity-wrapper .theme-qty-plus:hover { background-color: var(--color-secondary); }
.theme-quantity-wrapper input.qty {
	width: 2.75rem; text-align: center; border: none; background: transparent; -moz-appearance: textfield;
	font-size: 0.875rem; padding: 0.5rem 0; min-width: 0;
}
.theme-quantity-wrapper input.qty::-webkit-outer-spin-button,
.theme-quantity-wrapper input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.single-product .single_add_to_cart_button.button,
.single-product a.single_add_to_cart_button,
.single-product .single_add_to_cart_button {
	flex: none !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: unset !important;
	height: auto !important;
	padding: 1rem !important;
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border-radius: 9999px !important;
	font-family: var(--font-body) !important;
	font-size: 0.75rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
}
.single-product .single_add_to_cart_button.button:hover,
.single-product a.single_add_to_cart_button:hover {
	background-color: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
	color: var(--color-background) !important;
}
.single-product .single_add_to_cart_button.button:disabled:hover,
.single-product .single_add_to_cart_button.button.disabled:hover {
	background-color: var(--color-foreground) !important;
}

.product-accordion { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.product-accordion-item { border-bottom: 1px solid var(--color-border); }
.product-accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.product-accordion-trigger span { font-size: 0.8125rem; letter-spacing: 0.25em; text-transform: uppercase; }
.product-accordion-trigger .theme-icon { transition: transform 0.2s ease; }
.product-accordion-item.is-open .product-accordion-trigger .theme-icon { transform: rotate(180deg); }
.product-accordion-panel { display: none; padding-bottom: 1.5rem; }
.product-accordion-item.is-open .product-accordion-panel { display: block; }
.product-accordion-panel p { font-size: 0.9375rem; color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1rem; white-space: pre-line; }
.product-accordion-panel ul li { font-size: 0.9375rem; color: var(--color-muted-foreground); display: flex; align-items: flex-start; margin-bottom: 0.5rem; }
.product-accordion-panel ul li::before { content: ''; width: 0.25rem; height: 0.25rem; background: var(--color-foreground); border-radius: 999px; margin-top: 0.55rem; margin-right: 0.75rem; flex-shrink: 0; }

/* Related products */
.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); margin-top: 0; }
.related-products-heading { text-align: center; margin-bottom: 3rem; }
.related-products-heading .line-1 { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; display: block; }
.related-products-heading .line-2 { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-heading .line-2 { font-size: 2.25rem; } }
.related-products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
@media (min-width: 1024px) { .related-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

/* Variable product select styling */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 600; font-family: var(--font-body); font-style: normal; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations select { width: 100%; max-width: 320px; padding: 0.6rem 0.75rem; border: 1px solid var(--color-border); background-color: var(--color-background); border-radius: calc(var(--radius) - 4px); }

/* ===================== ARCHIVE / SHOP PAGE (WooCommerce native archive) ===================== */
.theme-archive-header { text-align: center; padding: 3rem 0 2rem; }
.theme-archive-header h1 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 400; }
.theme-archive-wrap { padding-bottom: 4rem; }
.theme-archive-empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }

/* ===================== PAGE TITLE (generic inner pages) ===================== */
.page-title { font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; padding: 3rem 0 1.5rem; }

/* ===================== 404 ===================== */
.theme-404 {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 1.5rem;
	background-color: var(--color-muted);
}
.theme-404__inner { max-width: 32rem; }
.theme-404 h1 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.015em; }
.theme-404 p { color: var(--color-muted-foreground); margin-bottom: 1rem; font-size: 1.25rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }
.theme-404__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* ===================== CHECKOUT (WooCommerce Blocks) ===================== */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: 6rem; padding-bottom: 4rem; }
body.woocommerce-checkout .site-main { padding-top: 5rem; padding-bottom: 4rem; }
@media (min-width: 1024px) {
	body.woocommerce-cart .site-main { padding-top: 7rem; }
	body.woocommerce-checkout .site-main { padding-top: 5.5rem; }
}
body.woocommerce-checkout .entry-title,
body.woocommerce-checkout h1.wp-block-post-title,
body.woocommerce-checkout .wp-block-post-title {
	margin-top: 0 !important;
}
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { width: 100%; }

body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
	display: block !important;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout form.checkout.woocommerce-checkout,
body.woocommerce-checkout form.woocommerce-checkout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 3rem !important;
	align-items: start !important;
	width: 100% !important;
	max-width: 80rem !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout form.checkout.woocommerce-checkout,
	body.woocommerce-checkout form.woocommerce-checkout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		gap: 4rem !important;
	}
}
body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-checkout__form,
body.woocommerce-checkout .col2-set,
body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2,
body.woocommerce-checkout #customer_details {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	float: none !important;
	grid-template-columns: none !important;
	padding: 0 !important;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout form.woocommerce-checkout .col2-set,
	body.woocommerce-checkout form.woocommerce-checkout #customer_details {
		grid-column: 1 !important;
	}
	body.woocommerce-checkout form.woocommerce-checkout #order_review_heading,
	body.woocommerce-checkout form.woocommerce-checkout #order_review {
		grid-column: 2 !important;
		grid-row: 1 !important;
	}
}
body.woocommerce-checkout .wc-block-checkout__sidebar { order: 1; }
body.woocommerce-checkout .wc-block-checkout__main { order: 2; }
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-checkout__sidebar { order: 2; }
	body.woocommerce-checkout .wc-block-checkout__main { order: 1; }
}

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 .select2-container .select2-selection,
body.woocommerce-checkout .select2-container--default .select2-selection--single,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-blocks-components-select__select,
body.woocommerce-checkout .wc-block-components-state-input select,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-block-components-totals-coupon input,
body.woocommerce-checkout .components-form-token-field__input,
body.woocommerce-checkout .wc-blocks-components-select .components-input-control__container,
body.woocommerce-checkout .wc-block-components-text-input .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.375rem !important;
	font-size: 1rem !important;
	font-family: var(--font-body) !important;
	font-weight: 400 !important;
	color: var(--color-foreground) !important;
	box-shadow: none !important;
	outline: none !important;
}
body.woocommerce-checkout input::placeholder,
body.woocommerce-checkout textarea::placeholder {
	color: var(--color-muted-foreground) !important;
}
body.woocommerce-checkout input:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single,
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-combobox input:focus {
	outline: none !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-checkbox label,
body.woocommerce-checkout .wc-block-components-radio-control label { display: inline-flex; }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: 0.375rem !important;
	font-family: var(--font-display) !important;
	font-weight: 500 !important;
	height: 2.75rem !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; border-radius: var(--radius); }
body.woocommerce-checkout h1, body.woocommerce-checkout .wp-block-post-title,
body.woocommerce-checkout .wc-block-components-title {
	font-family: var(--font-display) !important;
}

/* ===================== THANK YOU PAGE ===================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { max-width: 60rem; margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 1.5rem; margin-bottom: 2rem;
	background-color: var(--color-secondary); border-radius: var(--radius);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.9375rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-size: 1.5rem; padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; font-style: normal; line-height: 1.7; }

.theme-media-control { display: flex; flex-direction: column; gap: 0.5rem; }
