/* ==========================================================================
   Wing and Stone Jewelry — theme.css
   ========================================================================== */

:root {
	--font-display: 'Cormorant Garamond', serif;
	--font-body: 'Jost', sans-serif;

	--btn-radius: 0px;
	--btn-height: 3.25rem;
	--btn-padding: 1rem 2rem;
	--btn-font-size: 0.75rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.2em;
	--btn-text-transform: uppercase;

	--header-height: 96px;
	--checkout-gap: 2rem;
	--card-radius: 4px;
}

@media (min-width: 1024px) {
	:root { --header-height: 112px; }
}

/* --------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */

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

html, body { overflow-x: hidden; }

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

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

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

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.theme-product-card__image) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

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

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

/* --------------------------------------------------------------------------
   ANIMATION UTILITIES (Section 2.1)
   -------------------------------------------------------------------------- */

@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); } }
@keyframes theme-zoom-slow { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes theme-zoom-slow-lg { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }

.animate-fade-in { animation: theme-fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-slide-up { animation: theme-slide-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.reveal-item, .reveal-up, .reveal-fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.25, 0.4, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}
.reveal-fade { transform: none; }
.reveal-item.is-visible, .reveal-up.is-visible, .reveal-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Fallback: content stays visible if IntersectionObserver never fires, and
   ALWAYS visible inside the Customizer preview iframe (Section 2.1 rule 5). */
.no-js .reveal-item, .no-js .reveal-up, .no-js .reveal-fade,
body.is-customizer .reveal-item, body.is-customizer .reveal-up, body.is-customizer .reveal-fade {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .reveal-up, .reveal-fade, .hero-section__bg, .contact-section__bg,
	.animate-fade-in, .animate-slide-up {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */

.eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	margin-bottom: 0.75rem;
}

.section-heading {
	font-family: var(--font-display);
	font-weight: 400;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */

.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	border-radius: var(--btn-radius);
	padding: var(--btn-padding);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
}
.theme-btn-primary { background-color: var(--color-foreground); color: var(--color-background); }
.theme-btn-primary:hover { opacity: 0.9; }
.theme-btn-light { background-color: var(--color-background); color: var(--color-foreground); }
.theme-btn-light:hover { opacity: 0.9; }
.theme-btn-outline {
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-foreground);
	border-radius: 6px;
	height: 2.75rem;
	padding: 0 2rem;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	text-transform: none;
}
.theme-btn-outline:hover { background-color: var(--color-secondary); }

.hero-btn {
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-family: var(--font-body);
	padding: 0.75rem 2rem;
	transition: all 0.3s ease;
}
.hero-btn--outline { border: 1px solid rgba(255,255,255,0.4); }
.hero-btn--outline:hover { background-color: #fff; color: var(--color-foreground); }
.hero-btn--ghost {
	color: rgba(255,255,255,0.8);
	text-decoration: underline;
	text-underline-offset: 4px;
	border: none;
}
.hero-btn--ghost:hover { color: #fff; }
@media (min-width: 640px) { .hero-btn { width: auto; } }

.browse-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.75rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--color-foreground);
	padding-bottom: 0.25rem;
	transition: opacity 0.2s ease;
}
.browse-link:hover { opacity: 0.6; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: transparent;
	transition: background-color 0.5s ease, border-color 0.5s ease;
	border-bottom: 1px solid transparent;
}
.site-header.is-solid,
.site-header.is-scrolled {
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(6px);
	border-bottom-color: var(--color-border);
}

.site-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6rem;
}
@media (min-width: 1024px) { .site-nav { height: 7rem; } }

.site-nav__side { position: absolute; align-items: center; gap: 2rem; display: none; }
.site-nav__side--left { left: 0; }
.site-nav__side--right { right: 0; }
@media (min-width: 768px) { .site-nav__side { display: flex; } }

.theme-nav-list { display: flex; align-items: center; gap: 2rem; }
.theme-nav-list--desktop-right { display: none; }
@media (min-width: 768px) {
	.site-nav__side--right .theme-nav-list { display: flex; }
	.site-nav__side--left .theme-nav-list li:nth-child(n+3) { display: none; }
	.site-nav__side--right .theme-nav-list li:nth-child(-n+2) { display: none; }
}
.theme-nav-link, .theme-nav-list a {
	font-size: 0.6875rem;
	font-family: var(--font-body);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-foreground);
	transition: opacity 0.3s ease;
	cursor: pointer;
}
.site-header:not(.is-solid) .theme-nav-link,
.site-header:not(.is-solid) .theme-nav-list a { color: rgba(255,255,255,0.8); }
.theme-nav-link:hover, .theme-nav-list a:hover { opacity: 0.6; }

.site-nav__logo { display: flex; align-items: center; }
.site-logo-img { height: var(--logo-height, 64px) !important; width: var(--logo-height, 64px) !important; object-fit: cover; border-radius: 50%; display: block; }
.site-logo-text { font-family: var(--font-display); font-size: 1.25rem; line-height: var(--logo-height, 64px); display: block; }

.site-nav__mobile-toggle {
	position: absolute;
	left: 0;
	padding: 0.5rem;
	display: block;
	color: var(--color-foreground);
}
.site-header:not(.is-solid) .site-nav__mobile-toggle { color: #fff; }
@media (min-width: 768px) { .site-nav__mobile-toggle { display: none; } }

.site-nav__cart {
	position: relative;
	padding: 0.25rem;
	color: var(--color-foreground);
}
.site-header:not(.is-solid) .site-nav__cart { color: #fff; }
.theme-cart-count {
	position: absolute;
	top: -0.25rem;
	right: -0.25rem;
	width: 1rem;
	height: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.5625rem;
	font-weight: 500;
	background-color: var(--color-accent);
	color: var(--color-accent-foreground);
	border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

.site-nav__mobile-panel {
	border-top: 1px solid var(--color-border);
	padding: 1.5rem 0;
}
.theme-nav-list--mobile { flex-direction: column; align-items: flex-start; gap: 1rem; }
.theme-nav-list--mobile a { padding: 0.25rem 0; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
body:not(.theme-no-hero) .theme-page-main { padding-top: 0; }
.theme-page-main { padding-top: var(--header-height); padding-bottom: 4rem; }

.hero-section__bg-wrap { position: absolute; inset: 0; }
.hero-section__bg { animation: theme-zoom-slow 12s ease-in-out infinite; }
.hero-section__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
		color-mix(in srgb, var(--color-foreground) 50%, transparent),
		color-mix(in srgb, var(--color-foreground) 45%, transparent) 45%,
		color-mix(in srgb, var(--color-foreground) 70%, transparent));
}

.hero-section__content { position: relative; z-index: 10; text-align: center; padding: 0 1.5rem; }
.hero-section__heading-wrap { overflow: hidden; }
.hero-section__heading {
	font-family: var(--font-display);
	font-size: 2.25rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
}
@media (min-width: 768px) { .hero-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-section__heading { font-size: 4.5rem; } }

.hero-section__subtitle {
	color: rgba(255,255,255,0.75);
	margin-top: 1.25rem;
	font-size: 0.875rem;
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1rem; } }

.hero-section__actions {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0 1rem;
}
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; padding: 0; } }

/* --------------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------------- */

.services-section { border-top: 1px solid var(--color-border); background-color: #f5f5f0; }
.services-section__inner { padding: 5rem 0; }
@media (min-width: 768px) { .services-section__inner { padding: 8rem 0; } }

.services-section__intro { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
@media (min-width: 768px) { .services-section__intro { margin-bottom: 5rem; } }

.services-section .section-heading {
	font-size: 1.875rem;
	margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .services-section .section-heading { font-size: 3rem; } }

.services-section__description { color: var(--color-muted-foreground); line-height: 1.6; }

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

.service-card { display: block; text-align: left; width: 100%; }
.service-card__image-wrap {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background-color: var(--color-secondary);
	margin-bottom: 1.5rem;
}
.service-card__image { transition: transform 0.9s ease-out; }
.service-card:hover .service-card__image { transform: scale(1.05); }
.service-card__number { font-size: 0.625rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.service-card__title { font-size: 1.5rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .service-card__title { font-size: 1.875rem; } }
.service-card__description { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; max-width: 24rem; }

.services-section__browse { text-align: center; margin-top: 3.5rem; }
@media (min-width: 768px) { .services-section__browse { margin-top: 5rem; } }

/* --------------------------------------------------------------------------
   SHOP
   -------------------------------------------------------------------------- */

.shop-section { padding: 5rem 0; }
@media (min-width: 768px) { .shop-section { padding: 7rem 0; } }

.shop-section__intro { text-align: center; margin-bottom: 4rem; }
.shop-heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }

.shop-search { position: relative; max-width: 24rem; margin: 0 auto 2rem; }
.shop-search__icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-search__input {
	width: 100%;
	padding: 0.5rem 0 0.5rem 1.75rem;
	border: none;
	border-bottom: 1px solid var(--color-border);
	background: transparent;
	font-size: 0.875rem;
	color: var(--color-foreground);
	transition: border-color 0.2s ease;
}
.shop-search__input:focus { outline: none; border-color: var(--color-foreground); }

.shop-categories {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 1.5rem;
	margin-bottom: 1.5rem;
}
.shop-category-sep { color: var(--color-border); display: none; }
@media (min-width: 640px) { .shop-category-sep { display: inline; } }
.shop-category-btn {
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	letter-spacing: 0.02em;
	transition: color 0.3s ease;
}
.shop-category-btn.is-active, .shop-category-btn:hover { color: var(--color-foreground); }

.shop-price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-filter__toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: var(--color-muted-foreground);
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
}
.shop-price-filter__toggle:hover { color: var(--color-foreground); }
.shop-price-filter__chevron { transition: transform 0.3s ease; }
.shop-price-filter.is-open .shop-price-filter__chevron { transform: rotate(180deg); }
.shop-price-filter__panel {
	width: 100%;
	max-width: 24rem;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.3s cubic-bezier(0.25,0.4,0.25,1), opacity 0.3s cubic-bezier(0.25,0.4,0.25,1);
}
.shop-price-filter.is-open .shop-price-filter__panel { max-height: 6rem; opacity: 1; }

.price-range-wrapper { position: relative; height: 1.5rem; padding: 0.5rem 0; }
.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-color: var(--color-border); }
.range-track-fill { background-color: var(--color-foreground); }
.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.125rem;
	height: 1.125rem;
	border-radius: 50%;
	background: var(--color-background);
	border: 2px solid var(--color-foreground);
	cursor: pointer;
	margin-top: -0.5625rem;
	position: relative;
}
.range-input::-moz-range-thumb {
	pointer-events: auto;
	width: 1.125rem;
	height: 1.125rem;
	border-radius: 50%;
	background: var(--color-background);
	border: 2px solid var(--color-foreground);
	cursor: pointer;
}
.range-input::-webkit-slider-runnable-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--color-muted-foreground); }

/* Product grid — Section 31.9 equal-height, 31.9.1 fixed cardinality n/a here (dynamic count) */
.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: stretch;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem; } }

.related-products-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; } }

.theme-product-card-wrap, .theme-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.theme-product-card__image-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: var(--color-secondary);
	margin-bottom: 0.75rem;
}
.theme-product-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 1.5rem;
	display: block;
}
.theme-product-card__image.is-sold-out { opacity: 0.6; }
.theme-product-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.375rem 0.75rem;
	font-size: 0.625rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	background-color: var(--color-foreground);
	color: var(--color-background);
}
.theme-product-card__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; min-width: 0; }
.theme-product-card__title {
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-weight: 400;
	min-width: 0;
}
.theme-product-card__price-col { text-align: right; flex-shrink: 0; }
.theme-product-card__price { font-size: 0.75rem; }
.theme-product-card__price .amount { font-size: inherit; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.35em; }

.theme-product-card[hidden] { display: none; }

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

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */

.about-section { border-top: 1px solid var(--color-border); }
.about-section__inner { padding: 5rem 0; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-section__inner { padding: 8rem 0; } }
@media (min-width: 1024px) { .about-section__inner { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }

.about-section__image-wrap { grid-column: 1 / span 12; }
@media (min-width: 1024px) { .about-section__image-wrap { grid-column: 1 / span 5; } }
.about-section__image-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; max-width: 28rem; margin: 0 auto; }
@media (min-width: 1024px) { .about-section__image-frame { margin: 0; } }

.about-section__copy { grid-column: 1 / span 12; text-align: center; }
@media (min-width: 1024px) { .about-section__copy { grid-column: 7 / span 6; text-align: left; } }

.about-section__heading { font-size: 1.875rem; line-height: 1.15; margin-bottom: 2rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3rem; } }
.about-heading-break { display: none; }
@media (min-width: 1024px) { .about-heading-break { display: block; } }

.about-section__paragraph { color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1rem; }
.about-section__paragraph:last-of-type { margin-bottom: 2.5rem; }

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */

.contact-section {
	position: relative;
	overflow: hidden;
	min-height: 90vh;
	display: flex;
	align-items: center;
}
.contact-section__bg { animation: theme-zoom-slow-lg 14s ease-in-out infinite; will-change: transform; }
.contact-section__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
		color-mix(in srgb, var(--color-foreground) 60%, transparent),
		color-mix(in srgb, var(--color-foreground) 70%, transparent) 50%,
		color-mix(in srgb, var(--color-foreground) 85%, transparent));
}

.contact-section__inner { position: relative; z-index: 10; padding: 6rem 0; text-align: center; }
@media (min-width: 768px) { .contact-section__inner { padding: 8rem 0; } }

.contact-section__eyebrow { font-size: 0.6875rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-section__heading {
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 1.05;
	color: #fff;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .contact-section__heading { font-size: 4.5rem; margin-bottom: 3.5rem; } }
@media (min-width: 1024px) { .contact-section__heading { font-size: 6rem; } }

.contact-section__subtitle { color: rgba(255,255,255,0.7); max-width: 28rem; margin: 0 auto 2.5rem; line-height: 1.6; }

.contact-section__links { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.contact-section__link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.02em;
	text-decoration: underline;
	text-underline-offset: 8px;
	text-decoration-color: rgba(255,255,255,0.4);
	transition: text-decoration-color 0.2s ease;
	word-break: break-all;
}
@media (min-width: 768px) { .contact-section__link { font-size: 1.25rem; } }
.contact-section__link:hover { text-decoration-color: #fff; }

.contact-section__cta-wrap { display: flex; justify-content: center; margin-bottom: 2.5rem; }

.contact-section__social { display: flex; align-items: center; justify-content: center; gap: 2rem; }
.contact-section__social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.6875rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.6);
	transition: color 0.2s ease;
}
.contact-section__social-link:hover { color: #fff; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.site-footer { border-top: 1px solid var(--color-border); }
.site-footer__inner { padding: 4rem 0 5rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 5rem; } }

.site-footer__brand { text-align: center; }
@media (min-width: 768px) { .site-footer__brand { text-align: left; } }
.site-footer__tagline { margin-top: 0.75rem; font-size: 0.75rem; color: var(--color-muted-foreground); letter-spacing: 0.02em; }
.site-footer__description { margin-top: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); max-width: 24rem; line-height: 1.6; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .site-footer__description { margin-left: 0; margin-right: 0; } }

.site-footer__col-heading { font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.25rem; color: var(--color-muted-foreground); }
.site-footer__nav-list, .site-footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__nav-list a, .site-footer__contact-list a { font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.site-footer__nav-list a:hover, .site-footer__contact-list a:hover { color: var(--color-foreground); }
.site-footer__contact-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.site-footer__contact-list a { word-break: break-all; }

.site-footer__bottom {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copyright { font-size: 0.75rem; color: color-mix(in srgb, var(--color-muted-foreground) 60%, transparent); }
.site-footer__credit { font-size: 0.75rem; }
.site-footer__credit span { color: color-mix(in srgb, var(--color-muted-foreground) 50%, transparent); }
.site-footer__credit a { font-weight: 500; color: color-mix(in srgb, var(--color-muted-foreground) 80%, transparent); }
.site-footer__credit a:hover { color: var(--color-foreground); }

/* --------------------------------------------------------------------------
   CART DRAWER (Section 12 / 31.6)
   -------------------------------------------------------------------------- */

#theme-cart-overlay {
	position: fixed;
	inset: 0;
	background-color: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	z-index: 60;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	max-width: 32rem;
	background-color: var(--color-background);
	z-index: 61;
	box-shadow: var(--shadow-elevated, 0 8px 40px -8px rgba(0,0,0,0.15));
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.25,0.4,0.25,1);
}
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 2rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.theme-cart-drawer__close { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; transition: opacity 0.2s ease; }
.theme-cart-drawer__close:hover { opacity: 0.6; }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; font-size: 0.875rem; }
.theme-cart-drawer__continue { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: underline; }

.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 0 2rem; }
.theme-cart-item { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--color-border); }
.theme-cart-item__image {
	position: relative;
	width: 8.75rem;
	height: 8.75rem;
	flex-shrink: 0;
	background-color: var(--color-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.theme-cart-item__image img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 0.75rem; }
.theme-cart-item__body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.theme-cart-item__name { font-size: 0.875rem; display: block; transition: opacity 0.2s ease; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__price { font-size: 0.875rem; margin-top: 0.25rem; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item__controls { margin-top: 0.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.theme-cart-item__qty-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.02em; }
.theme-cart-item__qty-btn { width: 1.75rem; height: 1.75rem; border: 1px solid var(--color-border); font-size: 0.875rem; }
.theme-cart-item__qty-value { min-width: 1.5rem; text-align: center; font-size: 0.875rem; }
.theme-cart-item__remove { font-size: 0.75rem; color: var(--color-muted-foreground); text-decoration: underline; margin-left: auto; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }

.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 1rem; }
.theme-cart-drawer__checkout-btn {
	display: block;
	width: 100%;
	text-align: center;
	background-color: var(--color-foreground);
	color: var(--color-background);
	padding: 1rem;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: opacity 0.2s ease;
}
.theme-cart-drawer__checkout-btn:hover { opacity: 0.9; }

/* Hide WooCommerce's injected "View cart" link (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; }

/* --------------------------------------------------------------------------
   CONTACT MODAL
   -------------------------------------------------------------------------- */

.theme-modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.theme-modal.is-open { display: flex; }
.theme-modal__overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.6); }
.theme-modal__panel {
	position: relative;
	z-index: 1;
	background-color: var(--color-background);
	max-width: 32rem;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 8px 40px -8px rgba(0,0,0,0.2);
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.theme-modal.is-open .theme-modal__panel { opacity: 1; transform: scale(1); }
.theme-modal__close { position: absolute; right: 1rem; top: 1rem; opacity: 0.7; transition: opacity 0.2s ease; }
.theme-modal__close:hover { opacity: 1; }
.theme-modal__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal__description { font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-modal__contact-links { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-modal__contact-links a { display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s ease; word-break: break-all; }
.theme-modal__contact-links a:hover { color: var(--color-foreground); }

.theme-modal__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-modal__form-row { grid-template-columns: 1fr 1fr; } }
.theme-modal__field { margin-bottom: 1rem; }
.theme-modal__field label { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; display: block; }
.theme-modal__field input, .theme-modal__field textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	font-size: 0.875rem;
	border-radius: 6px;
	transition: box-shadow 0.3s ease;
	resize: none;
}
.theme-modal__field input:focus, .theme-modal__field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-modal__form-actions { display: flex; justify-content: flex-end; }
.theme-modal__success { text-align: center; padding: 2rem 0; }
.theme-modal__success-icon {
	width: 3.5rem;
	height: 3.5rem;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.theme-modal__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal__success p { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* --------------------------------------------------------------------------
   SINGLE PRODUCT (Section 11.13)
   -------------------------------------------------------------------------- */

.single-product-top { padding-top: 1rem; }
.back-to-home-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.back-to-home-link:hover { color: var(--color-foreground); }

.single-product-breadcrumb { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 0; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted-foreground); }
.single-product-breadcrumb a:hover { color: var(--color-foreground); }
.single-product-breadcrumb .is-current { color: var(--color-foreground); }

.theme-product-layout {
	padding-bottom: 5rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	min-width: 0;
}
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 420px; gap: 4rem; } }

.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery { display: flex; gap: 0.75rem; }

.theme-product-thumbnails--desktop { display: none; flex-direction: column; gap: 0.5rem; width: 4rem; flex-shrink: 0; flex-wrap: wrap; max-width: 100%; }
@media (min-width: 768px) { .theme-product-thumbnails--desktop { display: flex; } }
.theme-product-thumbnails--mobile { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; max-width: 100%; }
@media (min-width: 768px) { .theme-product-thumbnails--mobile { display: none; } }

.theme-product-thumb { position: relative; aspect-ratio: 1/1; width: 100%; overflow: hidden; border: 1px solid transparent; opacity: 0.5; transition: opacity 0.2s ease, border-color 0.2s ease; }
.theme-product-thumb--sm { width: 3.5rem; height: 3.5rem; }
.theme-product-thumb.is-active { opacity: 1; border-color: var(--color-foreground); }
.theme-product-thumb:hover { opacity: 0.8; }

.theme-product-gallery__main-col { flex: 1; min-width: 0; }
.theme-product-gallery__main-frame { position: relative; background-color: var(--color-secondary); overflow: hidden; aspect-ratio: 4/5; max-height: calc(100vh - 10rem); }
.theme-product-gallery__main-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.theme-product-info__title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; letter-spacing: 0.01em; }
@media (min-width: 768px) { .theme-product-info__title { font-size: 1.875rem; } }
.theme-product-info__price { font-size: 1.125rem; margin: 0.75rem 0 1.5rem; }
.theme-product-info__stock.is-out { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-product-info__description { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p { margin-bottom: 0.75rem; }

.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 0.5rem; }
.theme-attr-pill { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); padding-bottom: 0.125rem; border-bottom: 1px solid transparent; transition: all 0.2s ease; }
.theme-attr-pill.is-active { color: var(--color-foreground); border-bottom-color: var(--color-foreground); }
.theme-attr-pill__swatch { width: 0.75rem; height: 0.75rem; border-radius: 50%; border: 1px solid var(--color-border); display: inline-block; }
.theme-attr-select-hidden { display: none !important; }

.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.5rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1.5rem; }
.single-product .variations { margin-bottom: 0; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { padding: 0.75rem 1rem; font-size: 0.875rem; transition: background-color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: var(--color-secondary); }
.theme-qty-input { width: 3.5rem; text-align: center; border: none; background: transparent; font-size: 0.875rem; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

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

.theme-product-accordion { margin-top: 2rem; border-top: 1px solid var(--color-border); }
.theme-product-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
.theme-product-accordion__chevron { transition: transform 0.2s ease; }
.theme-product-accordion.is-open .theme-product-accordion__chevron { transform: rotate(180deg); }
.theme-product-accordion__panel { padding: 1rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; overflow-wrap: break-word; word-break: break-word; }
.theme-product-accordion__panel ul { list-style: disc; padding-left: 1.25rem; }
.theme-product-accordion__panel li { margin-bottom: 0.5rem; }
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-products-section__heading { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; letter-spacing: 0.01em; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 1.5rem; } }

/* --------------------------------------------------------------------------
   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-foreground) !important;
	color: var(--color-background) !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-foreground) !important;
	color: var(--color-background) !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-foreground) !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; }

/* --------------------------------------------------------------------------
   WOOCOMMERCE NOTICES (Section 14.1)
   -------------------------------------------------------------------------- */

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	font-family: var(--font-body);
	font-size: 0.875rem;
	border-radius: 6px;
	border: 1px solid var(--color-border);
	padding: 1rem 1.5rem;
	list-style: none;
	background-color: var(--color-secondary);
	color: var(--color-foreground);
	margin: 0 auto 1.5rem;
	max-width: 60rem;
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.theme-404-main { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem; }
.theme-404-main__inner { text-align: center; }
.theme-404-main__heading { font-size: 3.5rem; margin-bottom: 1rem; }
.theme-404-main__text { font-size: 1.125rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-404-main__link { color: var(--color-primary); text-decoration: underline; }
.theme-404-main__link:hover { opacity: 0.8; }

/* --------------------------------------------------------------------------
   PAGE TITLE / GENERIC PAGE
   -------------------------------------------------------------------------- */

.page-title { font-size: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .page-title { font-size: 2.75rem; } }

/* --------------------------------------------------------------------------
   WOOCOMMERCE CHECKOUT BLOCK (Section 13)
   -------------------------------------------------------------------------- */

body.woocommerce-checkout .site-main,
body.woocommerce-checkout .theme-page-main {
	padding-top: calc(var(--header-height) + 1rem);
	padding-bottom: 4rem;
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	grid-column: 1 / -1;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: 2rem;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .form-row .input-text,
body.woocommerce-checkout .form-row select {
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background-color: var(--color-background);
	width: 100% !important;
	max-width: none !important;
}
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-textarea textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	font-size: var(--btn-font-size);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

/* --------------------------------------------------------------------------
   CART / ACCOUNT / THANK-YOU PAGE WIDTH PARITY (Section 13.7)
   -------------------------------------------------------------------------- */

body.woocommerce-cart .theme-page-main,
body.woocommerce-account .theme-page-main {
	padding-top: calc(var(--header-height) + 1rem);
}

/* --------------------------------------------------------------------------
   THANK-YOU PAGE (Section 22.8)
   -------------------------------------------------------------------------- */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
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 {
	font-family: var(--font-body);
	margin-top: 1.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	list-style: none;
	padding: 0;
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 1.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
}
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; }

/* --------------------------------------------------------------------------
   MISC HELPERS
   -------------------------------------------------------------------------- */

.theme-card-link-btn { text-align: left; width: 100%; }

@media (max-width: 767px) {
	.hero-section__heading { font-size: 2.5rem; }
}
