/*
Theme Name: Bagscabinet LITA
Theme URI: https://bagscabinet.com
Author: OpenAI Codex
Description: LITA-style storefront theme adapted from the reference UI.
Version: 1.0.0
Text Domain: bag-lita
*/

:root {
	--site-header-h: 4rem;
	--background: #fff;
	--foreground: #2f3034;
	--muted: #8c8780;
	--soft: #faf7f2;
	--soft-2: #f3f1ec;
	--line: #ece5da;
	--line-dark: #ded6c9;
	--ink: #3a342e;
	--brown: #a9876a;
	--gold: #e7cfae;
	--dark: #1a1a1a;
	--font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
	--font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--site-header-h);
}

body.bag-lita-theme {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body.bag-lita-theme a {
	color: inherit;
	text-decoration: none;
}

body.bag-lita-theme img {
	display: block;
	max-width: 100%;
}

body.bag-lita-theme button,
body.bag-lita-theme input,
body.bag-lita-theme textarea,
body.bag-lita-theme select {
	font: inherit;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	color: var(--foreground);
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid rgba(236, 229, 218, 0.9);
	backdrop-filter: blur(16px);
	transition: background 280ms ease, border-color 280ms ease, color 280ms ease;
}

.site-header.is-overlay:not(.is-scrolled) {
	color: #fff;
	background: transparent;
	border-color: transparent;
	backdrop-filter: none;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1400px;
	height: var(--site-header-h);
	margin: 0 auto;
	padding: 0 2rem;
}

.brand-mark {
	width: 8rem;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	transition: opacity 200ms ease;
}

.brand-mark:hover {
	opacity: 0.74;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.desktop-nav a {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.015em;
	color: color-mix(in srgb, currentColor 70%, transparent);
	transition: color 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
	color: currentColor;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
	width: 14rem;
}

.language-switcher {
	position: relative;
}

.language-switcher > button,
.icon-link,
.account-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	border: 0;
	background: transparent;
	color: color-mix(in srgb, currentColor 72%, transparent);
	transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.language-switcher > button {
	gap: 0.35rem;
	padding: 0 0.65rem;
	border: 1px solid rgba(128, 128, 128, 0.22);
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.75rem;
	letter-spacing: 0.015em;
}

.site-header.is-overlay:not(.is-scrolled) .language-switcher > button {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
}

.language-switcher > button:hover,
.icon-link:hover,
.account-link:hover {
	color: currentColor;
}

.language-switcher ul {
	position: absolute;
	top: calc(100% + 0.4rem);
	right: 0;
	display: none;
	min-width: 9.5rem;
	margin: 0;
	padding: 0.25rem;
	list-style: none;
	border: 1px solid var(--line);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	color: var(--foreground);
}

.language-switcher.is-open ul {
	display: block;
}

.language-switcher li button {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 0;
	border-radius: 0.5rem;
	background: transparent;
	text-align: left;
	font-size: 0.78rem;
	color: var(--muted);
	cursor: pointer;
}

.language-switcher li button:hover {
	background: rgba(58, 52, 46, 0.06);
	color: var(--ink);
}

.account-link {
	gap: 0.35rem;
	max-width: 9rem;
	padding: 0 0.45rem;
}

.account-link b {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.75rem;
	font-weight: 400;
}

.mobile-nav {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 1.4rem;
	padding: 0.45rem 1rem 0.6rem;
	border-top: 1px solid rgba(236, 229, 218, 0.4);
	background: rgba(255, 255, 255, 0.95);
	color: var(--foreground);
}

.mobile-nav a {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--muted);
}

.mobile-nav a.is-active {
	color: var(--ink);
}

.main-standard {
	padding-top: var(--site-header-h);
}

.main-overlay {
	padding-top: 0;
}

.hero-slider {
	position: relative;
	height: 100dvh;
	min-height: 560px;
	overflow: hidden;
	background: #2c2620;
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade,
.hero-gradient {
	position: absolute;
	inset: 0;
}

.hero-slide {
	opacity: 0;
	transition: opacity 1400ms ease;
}

.hero-slide.is-active {
	opacity: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 6200ms ease-out;
}

.hero-slide.is-active img {
	transform: scale(1.08);
}

.hero-shade {
	background: rgba(31, 26, 21, 0.35);
}

.hero-gradient {
	background: linear-gradient(to bottom, rgba(31, 26, 21, 0.55), transparent 45%, rgba(31, 26, 21, 0.72));
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(920px, calc(100% - 2.5rem));
	height: 100%;
	margin: 0 auto;
	padding-top: var(--site-header-h);
	text-align: center;
}

.hero-copy {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 700ms ease, transform 700ms ease;
	pointer-events: none;
}

.hero-copy.is-active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.hero-eyebrow,
.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	color: var(--brown);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.hero-eyebrow {
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: var(--gold);
	letter-spacing: 0.5em;
}

.hero-eyebrow span,
.section-eyebrow span {
	display: block;
	width: 3rem;
	height: 1px;
	background: currentColor;
	opacity: 0.8;
}

.section-eyebrow span {
	width: 2rem;
}

.section-eyebrow.centered {
	justify-content: center;
}

.hero-copy h1 {
	max-width: 780px;
	margin: 0;
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(2.6rem, 6.5vw, 5.4rem);
	font-weight: 300;
	line-height: 1.05;
	letter-spacing: 0;
}

.hero-description {
	max-width: 34rem;
	margin: 1.75rem 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	line-height: 2;
	letter-spacing: 0.015em;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	height: 3.25rem;
	margin-top: 2.75rem;
	padding: 0 3rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: #fff;
	backdrop-filter: blur(2px);
	font-size: 0.68rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	transition: background 360ms ease, color 360ms ease, border-color 360ms ease;
}

.hero-cta:hover {
	border-color: #fff;
	background: #fff;
	color: #2c2620;
}

.hero-cta span,
.text-arrow span {
	transition: transform 240ms ease;
}

.hero-cta:hover span,
.text-arrow:hover span {
	transform: translateX(0.3rem);
}

.hero-controls {
	position: absolute;
	inset: auto 0 0;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	width: min(1280px, calc(100% - 2.5rem));
	height: 5rem;
	margin: 0 auto;
}

.hero-dots {
	display: flex;
	gap: 0.6rem;
}

.hero-dots button {
	position: relative;
	width: 3.5rem;
	height: 2rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.hero-dots button::before {
	content: "";
	position: absolute;
	inset: 50% 0 auto;
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
	transition: height 200ms ease, background 200ms ease;
}

.hero-dots button.is-active::before {
	height: 2px;
	background: var(--gold);
}

.hero-scroll {
	justify-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.56rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	transition: color 200ms ease;
}

.hero-scroll:hover {
	color: #fff;
}

.hero-scroll span {
	position: relative;
	display: block;
	width: 1px;
	height: 2.25rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.25);
}

.hero-scroll i {
	position: absolute;
	inset: 0 0 auto;
	display: block;
	height: 50%;
	background: #fff;
	animation: hero-scroll 1.8s ease-in-out infinite;
}

@keyframes hero-scroll {
	0% { transform: translateY(-100%); }
	100% { transform: translateY(200%); }
}

.hero-count {
	justify-self: end;
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-family: var(--font-serif);
	font-size: 0.9rem;
	letter-spacing: 0.25em;
}

.hero-count em {
	margin: 0 0.35rem;
	color: rgba(255, 255, 255, 0.35);
	font-style: normal;
}

.section-wrap {
	width: min(1280px, calc(100% - 2.5rem));
	margin: 0 auto;
}

.category-section {
	position: relative;
	z-index: 1;
	padding: 6rem 0 4rem;
	background: #fff;
}

.split-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.split-header h2,
.center-header h2,
.news-header h1,
.contact-header h1,
.product-summary h1,
.placeholder-page h1 {
	margin: 0;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 2.65rem);
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: 0;
}

.split-header h2 {
	margin-top: 0.75rem;
}

.split-header p:not(.section-eyebrow),
.center-header p:not(.section-eyebrow) {
	margin: 0.75rem 0 0;
	color: #9a9389;
	font-size: 0.9rem;
	line-height: 1.7;
}

.text-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding-bottom: 0.25rem;
	color: var(--ink);
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	transition: color 200ms ease;
}

.text-arrow:hover {
	color: var(--brown);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.category-card {
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.category-card.is-featured {
	grid-column: span 2;
	aspect-ratio: 16 / 9;
}

.category-card a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #efe9e0;
}

.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1100ms ease;
}

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

.category-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(40, 34, 28, 0.76), rgba(40, 34, 28, 0.16), transparent);
	transition: background 400ms ease;
}

.category-card:hover .category-overlay {
	background: linear-gradient(to top, rgba(40, 34, 28, 0.84), rgba(40, 34, 28, 0.18), transparent);
}

.category-copy {
	position: absolute;
	inset: auto 0 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.6rem;
	color: #fff;
}

.category-copy span {
	margin-bottom: 0.5rem;
	color: rgba(231, 207, 174, 0.92);
	font-size: 0.62rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.category-copy strong {
	font-family: var(--font-serif);
	font-size: clamp(1.3rem, 2.5vw, 1.65rem);
	font-weight: 300;
	line-height: 1.2;
}

.category-copy em {
	display: inline-flex;
	max-width: 0;
	margin-top: 0.8rem;
	overflow: hidden;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.68rem;
	font-style: normal;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0;
	transition: max-width 420ms ease, opacity 420ms ease;
}

.category-card:hover .category-copy em {
	max-width: 9rem;
	opacity: 1;
}

.product-band {
	background: var(--soft);
}

.product-band .section-wrap {
	padding: 5rem 0;
}

.center-header {
	margin-bottom: 3rem;
	text-align: center;
}

.center-header .section-eyebrow {
	justify-content: center;
}

.center-header h2 {
	margin-top: 0.75rem;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-tile {
	min-width: 0;
}

.product-link {
	display: flex;
	height: 100%;
	flex-direction: column;
}

.product-media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--soft-2);
}

.product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1100ms ease;
}

.product-link:hover .product-media img {
	transform: scale(1.06);
}

.product-line {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: var(--ink);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 500ms ease;
}

.product-link:hover .product-line {
	transform: scaleX(1);
}

.product-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 1rem;
}

.product-category {
	color: #b0a99c;
	font-size: 0.62rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.product-title {
	display: -webkit-box;
	min-height: 2.7rem;
	margin-top: 0.4rem;
	overflow: hidden;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color 240ms ease;
}

.product-link:hover .product-title {
	color: var(--brown);
}

.product-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.8rem;
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 300;
	letter-spacing: 0.02em;
}

.shop-now {
	color: #b0a99c;
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: color 200ms ease;
}

.product-link:hover .shop-now {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.center-action {
	margin-top: 3.5rem;
	text-align: center;
}

.outline-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0 2.5rem;
	border: 1px solid rgba(58, 52, 46, 0.3);
	background: transparent;
	color: var(--ink);
	font-size: 0.68rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.outline-button:hover {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.page-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 420px;
	overflow: hidden;
	background: #2c2620;
	text-align: center;
}

.page-hero img,
.page-hero-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.page-hero img {
	object-fit: cover;
	opacity: 0.7;
}

.page-hero-shade {
	background: linear-gradient(to top, rgba(44, 38, 32, 0.85), rgba(44, 38, 32, 0.4), rgba(44, 38, 32, 0.45));
}

.page-hero div {
	position: relative;
	z-index: 1;
	width: min(760px, calc(100% - 2rem));
	padding-top: var(--site-header-h);
	color: #fff;
}

.page-hero h1 {
	margin: 1rem 0 0;
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(2.1rem, 4.8vw, 3.6rem);
	font-weight: 300;
	letter-spacing: 0;
}

.page-hero p:not(.hero-eyebrow) {
	max-width: 28rem;
	margin: 1rem auto 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	line-height: 1.9;
}

.shop-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 2rem;
	width: min(1280px, calc(100% - 2.5rem));
	margin: 0 auto;
	padding: 3.5rem 0;
}

.shop-sidebar {
	position: sticky;
	top: calc(var(--site-header-h) + 1.5rem);
	align-self: start;
}

.filter-block {
	margin-bottom: 2.5rem;
}

.filter-block p {
	margin: 0 0 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--line);
	color: var(--brown);
	font-size: 0.62rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.filter-block a,
.filter-block span {
	display: block;
	padding: 0.4rem 0;
	color: #9a9389;
	font-size: 0.9rem;
	transition: color 200ms ease;
}

.filter-block a:hover,
.filter-block a.is-active {
	color: var(--ink);
	font-weight: 500;
}

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
	color: #9a9389;
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.shop-toolbar label {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.shop-toolbar select {
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	outline: none;
}

.shop-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem 1.5rem;
}

.empty-state {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	color: #9a9389;
	font-size: 0.9rem;
}

.news-page,
.contact-page,
.product-detail,
.placeholder-page {
	width: min(1000px, calc(100% - 2rem));
	margin: 0 auto;
	padding: 4rem 0;
}

.news-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}

.news-header h1 {
	margin-top: 0.75rem;
	font-size: clamp(2.4rem, 5vw, 3.2rem);
}

.news-header > p {
	max-width: 26rem;
	margin: 0;
	color: #7c7468;
	font-size: 0.9rem;
	line-height: 1.9;
}

.news-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 0;
}

.news-list li {
	border-bottom: 1px solid var(--line);
}

.news-list a {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
	padding: 2rem 0;
}

.news-image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--soft-2);
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1100ms ease;
}

.news-list a:hover .news-image img {
	transform: scale(1.06);
}

.news-copy span {
	display: block;
	margin-bottom: 0.65rem;
	color: var(--brown);
	font-size: 0.62rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.news-copy strong {
	display: block;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 3vw, 1.55rem);
	font-weight: 300;
	line-height: 1.25;
	transition: color 240ms ease;
}

.news-copy em {
	display: -webkit-box;
	margin-top: 0.7rem;
	overflow: hidden;
	color: #7c7468;
	font-size: 0.9rem;
	font-style: normal;
	line-height: 1.8;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-list a:hover .news-copy strong {
	color: var(--brown);
}

.news-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--line-dark);
	border-radius: 50%;
	color: var(--ink);
	transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.news-list a:hover .news-arrow {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.contact-page {
	width: min(1200px, calc(100% - 2rem));
}

.contact-header {
	max-width: 42rem;
	margin-bottom: 2.5rem;
}

.contact-header p,
.panel-heading p {
	margin: 0;
	color: var(--muted);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.contact-header h1 {
	margin-top: 0.75rem;
	font-size: clamp(2rem, 5vw, 3.2rem);
}

.contact-header span {
	display: block;
	max-width: 36rem;
	margin-top: 1rem;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.75;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 3.5rem;
}

.panel-heading {
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
}

.panel-heading h2 {
	margin: 0.5rem 0 0;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 400;
}

.channel-list {
	display: grid;
	gap: 0.8rem;
}

.channel-list a {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 0.75rem;
	background: #fff;
	transition: border-color 200ms ease;
}

.channel-list a:hover {
	border-color: rgba(58, 52, 46, 0.35);
}

.channel-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	flex: 0 0 auto;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-weight: 600;
}

.channel-icon.dark {
	background: #111;
}

.channel-list span span,
.channel-list strong,
.channel-list em {
	display: block;
}

.channel-list strong {
	color: var(--foreground);
	font-size: 0.95rem;
	font-weight: 500;
}

.channel-list em {
	max-width: 28rem;
	overflow: hidden;
	color: var(--muted);
	font-size: 0.75rem;
	font-style: normal;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.channel-list b {
	margin-left: auto;
	color: var(--muted);
	font-size: 1.2rem;
	font-weight: 400;
}

.contact-form {
	display: grid;
	gap: 1rem;
	padding: 1.25rem;
	border: 1px solid var(--line);
	border-radius: 0.75rem;
	background: #fff;
}

.contact-form label {
	display: grid;
	gap: 0.4rem;
	color: var(--foreground);
	font-size: 0.9rem;
	font-weight: 500;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 0.55rem;
	background: #fff;
	padding: 0.75rem;
	color: var(--foreground);
	outline: none;
	transition: border-color 200ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--ink);
}

.contact-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.9rem;
	border: 1px solid var(--ink);
	border-radius: 999px;
	background: var(--ink);
	color: #fff;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	transition: opacity 200ms ease;
}

.contact-form button:hover {
	opacity: 0.86;
}

.product-detail {
	width: min(1000px, calc(100% - 2rem));
}

.back-link {
	display: inline-flex;
	margin-bottom: 2rem;
	color: var(--muted);
	font-size: 0.9rem;
	transition: color 200ms ease;
}

.back-link:hover {
	color: var(--ink);
}

.product-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 3.5rem;
}

.product-gallery {
	display: grid;
	gap: 0.75rem;
}

.main-product-image,
.thumb-grid button {
	overflow: hidden;
	background: var(--soft-2);
}

.main-product-image {
	aspect-ratio: 1 / 1;
}

.main-product-image img,
.thumb-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumb-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
}

.thumb-grid button {
	aspect-ratio: 1 / 1;
	padding: 0;
	border: 0;
	cursor: pointer;
	opacity: 0.78;
	transition: opacity 200ms ease, outline-color 200ms ease;
}

.thumb-grid button.is-active {
	opacity: 1;
	outline: 2px solid var(--ink);
	outline-offset: 0;
}

.product-summary {
	padding: 0.5rem 0;
}

.product-summary h1 {
	margin-top: 1rem;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.product-detail-price {
	margin: 1.5rem 0 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 300;
}

.product-actions {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.qty-control {
	display: inline-flex;
	height: 3rem;
	border: 1px solid var(--line-dark);
}

.qty-control button,
.qty-control span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	border: 0;
	background: transparent;
	color: var(--ink);
}

.qty-control button {
	cursor: pointer;
	color: var(--muted);
}

.add-button,
.buy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 3rem;
	border: 1px solid var(--ink);
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: background 240ms ease, color 240ms ease;
}

.add-button:hover,
.buy-button {
	background: var(--ink);
	color: #fff;
}

.buy-button {
	width: 100%;
	margin-top: 0.75rem;
}

.buy-button:hover {
	background: #564d43;
}

.payment-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1rem;
	color: #9a9389;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
}

.payment-row span {
	padding: 0.35rem 0.55rem;
	border: 1px solid var(--line);
	border-radius: 0.25rem;
	background: #fff;
}

.product-info-tabs {
	width: min(760px, 100%);
	margin: 5rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
	color: #6b6055;
	font-size: 0.92rem;
	line-height: 1.8;
}

.product-info-tabs h2 {
	margin: 1.5rem 0 0.6rem;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: 1.65rem;
	font-weight: 300;
}

.placeholder-page {
	display: flex;
	min-height: calc(100dvh - var(--site-header-h) - 10rem);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.placeholder-page h1 {
	margin-top: 1rem;
	font-size: clamp(2rem, 5vw, 3rem);
}

.placeholder-page p {
	max-width: 32rem;
	margin: 1rem 0 2rem;
	color: var(--muted);
	line-height: 1.8;
}

.contact-balls {
	position: fixed;
	right: 1.5rem;
	bottom: 1.75rem;
	z-index: 55;
	display: grid;
	gap: 0.75rem;
	justify-items: end;
}

.contact-balls a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	transition: transform 200ms ease;
}

.contact-balls a:nth-child(2) {
	background: #111;
}

.contact-balls a:hover {
	transform: scale(1.03);
}

.contact-balls span {
	position: absolute;
	right: calc(100% + 0.75rem);
	white-space: nowrap;
	color: #9a9389;
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.contact-balls a:hover span {
	opacity: 1;
}

.site-footer {
	background: var(--dark);
	color: #fff;
}

.site-footer > div {
	width: min(1280px, calc(100% - 2.5rem));
	margin: 0 auto;
	padding: 3rem 0;
}

.site-footer section {
	margin: 0;
}

.site-footer p {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 1.25rem;
	letter-spacing: 0.2em;
}

.site-footer section span {
	display: block;
	max-width: 20rem;
	margin-top: 0.5rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.88rem;
	line-height: 1.7;
}

.site-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.75rem;
	justify-content: flex-end;
	margin-top: -3.1rem;
}

.site-footer nav a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: color 200ms ease;
}

.site-footer nav a:hover {
	color: #fff;
}

.site-footer small {
	display: block;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.62rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.category-card.is-featured {
		grid-row: span 2;
		aspect-ratio: auto;
		min-height: 420px;
	}

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

@media (min-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

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

@media (max-width: 900px) {
	.header-inner {
		padding: 0 1rem;
	}

	.desktop-nav {
		display: none;
	}

	.brand-mark {
		width: auto;
	}

	.header-actions {
		width: auto;
	}

	.account-link b {
		display: none;
	}

	.mobile-nav {
		display: flex;
	}

	.main-standard {
		padding-top: calc(var(--site-header-h) + 2.1rem);
	}

	.hero-controls {
		width: calc(100% - 2rem);
	}

	.hero-count {
		display: none;
	}

	.hero-dots button {
		width: 2.5rem;
	}

	.shop-layout,
	.contact-grid,
	.product-detail-grid,
	.news-list a {
		grid-template-columns: 1fr;
	}

	.shop-sidebar {
		position: static;
	}

	.news-arrow {
		display: none;
	}

	.site-footer nav {
		justify-content: flex-start;
		margin-top: 2rem;
	}
}

@media (max-width: 640px) {
	.hero-slider {
		min-height: 620px;
	}

	.hero-content {
		width: calc(100% - 2rem);
	}

	.hero-eyebrow {
		letter-spacing: 0.32em;
	}

	.hero-eyebrow span {
		width: 1.75rem;
	}

	.hero-copy h1 {
		font-size: clamp(2.25rem, 14vw, 3.6rem);
	}

	.hero-description {
		font-size: 0.88rem;
	}

	.hero-cta {
		width: min(100%, 20rem);
		justify-content: center;
		padding: 0 1.5rem;
	}

	.hero-controls {
		grid-template-columns: 1fr auto;
		height: 4.25rem;
	}

	.hero-scroll {
		display: none;
	}

	.split-header,
	.news-header {
		display: block;
	}

	.text-arrow {
		margin-top: 1.25rem;
	}

	.category-section {
		padding: 4rem 0 3rem;
	}

	.category-grid,
	.product-grid,
	.shop-grid {
		grid-template-columns: 1fr;
	}

	.category-card.is-featured {
		grid-column: auto;
		aspect-ratio: 4 / 3;
	}

	.product-band .section-wrap {
		padding: 3.5rem 0;
	}

	.page-hero {
		height: 360px;
	}

	.shop-layout,
	.section-wrap,
	.site-footer > div {
		width: calc(100% - 2rem);
	}

	.shop-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.news-page,
	.contact-page,
	.product-detail,
	.placeholder-page {
		padding: 3rem 0;
	}

	.news-list a {
		gap: 1rem;
		padding: 1.5rem 0;
	}

	.product-actions {
		grid-template-columns: 1fr;
	}

	.contact-balls {
		right: 1rem;
		bottom: 1rem;
	}
}

/* Storefront refinements */
.ui-svg {
	width: 1.05rem;
	height: 1.05rem;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-actions {
	gap: 0.55rem;
	width: auto;
	min-width: 19rem;
}

.language-switcher > button,
.icon-link,
.account-link {
	height: 2.5rem;
	border: 1px solid rgba(128, 128, 128, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: currentColor;
}

.site-header.is-overlay:not(.is-scrolled) .language-switcher > button,
.site-header.is-overlay:not(.is-scrolled) .icon-link,
.site-header.is-overlay:not(.is-scrolled) .account-link {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.language-switcher > button {
	gap: 0.45rem;
	min-width: 5.25rem;
	padding: 0 0.8rem;
}

.language-code {
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.icon-link {
	position: relative;
	width: 2.5rem;
	min-width: 2.5rem;
}

.cart-count {
	position: absolute;
	top: -0.3rem;
	right: -0.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 1.05rem;
	height: 1.05rem;
	padding: 0 0.22rem;
	border-radius: 999px;
	background: var(--brown);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1;
}

.account-link {
	gap: 0.48rem;
	max-width: none;
	padding: 0 0.85rem;
}

.account-link b {
	font-size: 0.76rem;
	font-weight: 500;
}

.category-section {
	padding: 6.5rem 0 5.25rem;
}

.split-header {
	align-items: center;
	margin-bottom: 2.5rem;
}

.split-header h2 {
	font-size: clamp(2.25rem, 4vw, 3.25rem);
}

.text-arrow {
	min-height: 3rem;
	padding: 0 1.35rem;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: #fff !important;
	font-size: 0.68rem;
	letter-spacing: 0.22em;
}

.text-arrow:hover {
	background: var(--brown);
	border-color: var(--brown);
	color: #fff !important;
}

.category-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 245px;
	gap: 1.15rem;
}

.category-card,
.category-card.is-featured {
	aspect-ratio: auto;
	min-height: 0;
}

.category-card.is-featured {
	grid-column: span 2;
	grid-row: span 2;
}

.category-card:nth-child(4) {
	grid-column: span 2;
}

.category-card a {
	border: 1px solid rgba(255, 255, 255, 0.02);
}

.category-copy {
	padding: 1.35rem;
}

.category-card.is-featured .category-copy {
	padding: 2rem;
}

.category-card.is-featured .category-copy strong {
	font-size: clamp(2rem, 3vw, 2.7rem);
}

.shop-hero {
	height: 360px;
}

.shop-layout {
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 2.5rem;
	width: min(1360px, calc(100% - 3rem));
	padding: 3rem 0 5rem;
}

.shop-sidebar {
	padding: 1.25rem;
	border: 1px solid var(--line);
	background: #fff;
}

.filter-block {
	margin-bottom: 2rem;
}

.filter-block:last-child {
	margin-bottom: 0;
}

.filter-block a,
.filter-block span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.58rem 0;
	border-bottom: 1px solid rgba(236, 229, 218, 0.65);
}

.filter-block a.is-active::after {
	content: "";
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 50%;
	background: var(--brown);
}

.shop-category-strip {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.85rem;
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
}

.shop-category-strip a {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--soft-2);
}

.shop-category-strip img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 800ms ease;
}

.shop-category-strip span {
	position: absolute;
	inset: auto 0 0;
	padding: 0.75rem;
	background: linear-gradient(to top, rgba(26, 26, 26, 0.72), transparent);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
}

.shop-category-strip li.is-active a {
	outline: 2px solid var(--brown);
	outline-offset: -2px;
}

.shop-category-strip a:hover img {
	transform: scale(1.06);
}

.shop-toolbar {
	min-height: 3.75rem;
	padding: 0 1.1rem;
	border: 1px solid var(--line);
	background: #fff;
}

.shop-toolbar form {
	margin: 0;
}

.shop-toolbar select {
	height: 2.4rem;
	padding: 0 2rem 0 0.75rem;
	border: 1px solid var(--line);
	background: #fff;
}

.shop-grid {
	gap: 2.25rem 1.15rem;
}

.product-detail {
	width: min(1240px, calc(100% - 3rem));
	padding-top: 3rem;
}

.product-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1.5rem;
	color: var(--muted);
	font-size: 0.78rem;
}

.product-breadcrumb a {
	color: var(--muted);
}

.product-breadcrumb a:hover,
.product-breadcrumb strong {
	color: var(--ink);
	font-weight: 500;
}

.product-detail-grid {
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
	gap: 3rem;
	align-items: start;
}

.main-product-image {
	aspect-ratio: 4 / 5;
	border: 1px solid var(--line);
	background: #f5f1ea;
}

.main-product-image img {
	object-fit: contain;
	padding: 1.4rem;
}

.thumb-grid button {
	border: 1px solid var(--line);
	background: #f5f1ea;
}

.thumb-grid img {
	object-fit: contain;
	padding: 0.45rem;
}

.product-summary {
	position: sticky;
	top: calc(var(--site-header-h) + 1.5rem);
	padding: 1.5rem;
	border: 1px solid var(--line);
	background: #fff;
}

.product-summary h1 {
	margin-top: 0.85rem;
	font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.product-detail-price {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
}

.product-short-description {
	margin-top: 1rem;
	color: #6f675d;
	font-size: 0.92rem;
	line-height: 1.8;
}

.product-short-description p {
	margin: 0 0 0.7rem;
}

.product-meta-list {
	display: grid;
	gap: 0;
	margin: 1.35rem 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--line);
}

.product-meta-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.82rem;
}

.product-meta-list strong {
	color: var(--ink);
	font-weight: 500;
	text-align: right;
}

.product-actions {
	margin-top: 1.35rem;
}

.qty-control,
.add-button,
.buy-button {
	height: 3.25rem;
}

.product-detail-content {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.product-description-panel,
.product-service-grid article {
	border: 1px solid var(--line);
	background: #fff;
}

.product-description-panel {
	padding: 1.75rem;
}

.product-description-panel h2,
.product-service-grid h2 {
	margin: 0.75rem 0 0.6rem;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: 1.55rem;
	font-weight: 400;
}

.product-description-panel p,
.product-service-grid p {
	color: #6f675d;
	font-size: 0.92rem;
	line-height: 1.8;
}

.product-description-panel p:last-child,
.product-service-grid p:last-child {
	margin-bottom: 0;
}

.product-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.product-service-grid article {
	padding: 1.35rem;
}

.product-service-grid .ui-svg {
	width: 1.4rem;
	height: 1.4rem;
	color: var(--brown);
}

.news-page,
.contact-page {
	width: min(1180px, calc(100% - 3rem));
}

.news-header,
.contact-header {
	padding: 2rem;
	border: 1px solid var(--line);
	background: var(--soft);
}

.news-list {
	display: grid;
	gap: 1rem;
	border: 0;
}

.news-list li {
	border: 1px solid var(--line);
	background: #fff;
}

.news-list a {
	padding: 1rem;
}

.news-arrow {
	font-size: 0;
}

.news-arrow::before {
	content: "->";
	font-size: 0.8rem;
}

.contact-grid {
	gap: 1.25rem;
}

.contact-grid > section {
	padding: 1.5rem;
	border: 1px solid var(--line);
	background: #fff;
}

.channel-list a {
	border-radius: 0;
}

.channel-icon {
	border-radius: 0;
	background: var(--ink);
}

.channel-icon .ui-svg {
	width: 1.2rem;
	height: 1.2rem;
}

.channel-icon.whatsapp {
	background: #2c7a4b;
}

.channel-icon.telegram {
	background: #2f6f9f;
}

.contact-info-card {
	display: grid;
	gap: 1rem;
}

.contact-info-card p {
	margin: 0;
	padding: 1rem;
	border: 1px solid var(--line);
	background: var(--soft);
}

.contact-info-card strong,
.contact-info-card span {
	display: block;
}

.contact-info-card strong {
	margin-bottom: 0.35rem;
	color: var(--ink);
	font-size: 0.88rem;
}

.contact-info-card span {
	color: #6f675d;
	font-size: 0.9rem;
	line-height: 1.7;
}

.floating-contact {
	position: fixed;
	right: 1.25rem;
	top: 50%;
	z-index: 55;
	display: grid;
	gap: 0.55rem;
	transform: translateY(-50%);
}

.floating-contact-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 50%;
	background: #202020;
	color: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	transition: transform 180ms ease, background 180ms ease;
}

.floating-contact-item.whatsapp {
	background: #2c7a4b;
}

.floating-contact-item.telegram {
	background: #2f6f9f;
}

.floating-contact-item.album {
	background: #1f1f1f;
}

.floating-contact-item:hover {
	transform: translateX(-0.2rem);
}

.floating-contact-item span {
	position: absolute;
	right: calc(100% + 0.65rem);
	padding: 0.42rem 0.6rem;
	white-space: nowrap;
	background: #202020;
	color: #fff;
	font-size: 0.72rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.floating-contact-item:hover span {
	opacity: 1;
}

.site-footer {
	background: #171717;
}

.site-footer > .footer-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: 2rem;
	width: min(1320px, calc(100% - 3rem));
	padding: 3.5rem 0 2rem;
}

.site-footer h2 {
	margin: 0 0 1rem;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.site-footer .footer-brand p {
	font-size: 1.8rem;
}

.site-footer nav {
	display: grid;
	gap: 0.65rem;
	justify-content: start;
	margin: 0;
}

.site-footer ul {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer nav a,
.site-footer li a,
.footer-album,
.site-footer section span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.86rem;
	letter-spacing: 0;
	line-height: 1.7;
	text-transform: none;
}

.footer-album {
	display: inline-flex;
	margin-top: 0.85rem;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.site-footer small {
	grid-column: 1 / -1;
}

@media (max-width: 1100px) {
	.category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 240px;
	}

	.category-card.is-featured,
	.category-card:nth-child(4) {
		grid-column: span 2;
	}

	.shop-category-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-detail-content,
	.product-service-grid {
		grid-template-columns: 1fr;
	}

	.site-footer > .footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.header-actions {
		min-width: 0;
	}

	.language-switcher > button {
		min-width: 0;
	}

	.shop-layout,
	.product-detail-grid {
		grid-template-columns: 1fr;
	}

	.shop-sidebar,
	.product-summary {
		position: static;
	}
}

@media (max-width: 640px) {
	.header-inner {
		gap: 0.75rem;
	}

	.language-code,
	.account-link b {
		display: none;
	}

	.account-link,
	.icon-link,
	.language-switcher > button {
		width: 2.35rem;
		min-width: 2.35rem;
		height: 2.35rem;
		padding: 0;
	}

	.category-grid,
	.shop-category-strip {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	.category-card,
	.category-card.is-featured,
	.category-card:nth-child(4) {
		grid-column: auto;
		grid-row: auto;
		aspect-ratio: 4 / 3;
	}

	.shop-layout,
	.product-detail,
	.news-page,
	.contact-page {
		width: calc(100% - 2rem);
	}

	.shop-category-strip a {
		aspect-ratio: 16 / 9;
	}

	.news-header,
	.contact-header,
	.contact-grid > section,
	.product-summary,
	.product-description-panel,
	.product-service-grid article {
		padding: 1.1rem;
	}

	.news-list a {
		grid-template-columns: 1fr;
	}

	.floating-contact {
		right: 0.8rem;
		top: auto;
		bottom: 1rem;
		transform: none;
	}

	.floating-contact-item {
		width: 2.7rem;
		height: 2.7rem;
	}

	.floating-contact-item span {
		display: none;
	}

	.site-footer > .footer-grid {
		grid-template-columns: 1fr;
		width: calc(100% - 2rem);
	}
}

/* Reference UI alignment */
:root {
	--background: #fff;
	--foreground: #2f3034;
	--card: #fff;
	--secondary: #fbfaf8;
	--muted-foreground: #7c7468;
	--accent: #f3f1ec;
	--border: #ece5da;
	--brand: #a9876a;
	--ink: #3a342e;
	--brown: #a9876a;
	--soft: #faf7f2;
	--soft-2: #f3f1ec;
	--line: #ece5da;
	--radius: 0.75rem;
}

body.bag-lita-theme {
	background: var(--background);
	color: var(--foreground);
}

.site-header {
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid rgba(236, 229, 218, 0.4);
	backdrop-filter: blur(12px);
}

.header-inner {
	max-width: 1400px;
	height: 4rem;
	padding: 0 2rem;
}

.brand-mark {
	width: 8rem;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.18em;
}

.desktop-nav {
	gap: 1.5rem;
}

.desktop-nav a {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.025em;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
	color: var(--foreground);
}

.header-actions {
	gap: 0.75rem;
	min-width: 8rem;
	width: auto;
}

.language-switcher > button {
	height: 2.25rem;
	min-width: 0;
	gap: 0.375rem;
	padding: 0 0.625rem;
	border: 1px solid rgba(236, 229, 218, 0.8);
	border-radius: 999px;
	background: var(--background);
	color: var(--muted-foreground);
	font-size: 0.75rem;
	letter-spacing: 0.02em;
}

.language-switcher ul {
	min-width: 9.5rem;
	padding: 0.25rem;
	border: 1px solid rgba(236, 229, 218, 0.8);
	border-radius: 0.75rem;
	box-shadow: 0 18px 42px rgba(30, 38, 68, 0.12);
}

.language-switcher li button {
	border-radius: 0.5rem;
	font-size: 0.75rem;
}

.icon-link,
.account-link {
	height: auto;
	min-width: 0;
	padding: 0.5rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--muted-foreground);
}

.account-link {
	gap: 0.375rem;
	max-width: 9rem;
}

.account-link b {
	font-size: 0.75rem;
	font-weight: 400;
}

.icon-link:hover,
.account-link:hover,
.language-switcher > button:hover {
	color: var(--foreground);
}

.cart-count {
	top: 0;
	right: 0;
	min-width: 1.125rem;
	height: 1.125rem;
	background: var(--foreground);
	color: var(--background);
	font-size: 0.625rem;
	line-height: 1.125rem;
}

.site-header.is-overlay:not(.is-scrolled) {
	background: transparent;
	border-color: transparent;
	color: #fff;
	backdrop-filter: none;
}

.site-header.is-overlay:not(.is-scrolled) .language-switcher > button {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.site-header.is-overlay:not(.is-scrolled) .icon-link,
.site-header.is-overlay:not(.is-scrolled) .account-link {
	color: #fff;
	background: transparent;
	border: 0;
}

.hero-slider {
	min-height: 560px;
	background: #2c2620;
}

.hero-shade {
	background: rgba(31, 26, 21, 0.35);
}

.hero-gradient {
	background: linear-gradient(to bottom, rgba(31, 26, 21, 0.55), transparent 45%, rgba(31, 26, 21, 0.7));
}

.hero-copy h1 {
	max-width: 780px;
	font-size: clamp(2.6rem, 6.5vw, 5.4rem);
	font-weight: 300;
	line-height: 1.05;
}

.hero-description {
	max-width: 34rem;
	margin-top: 1.75rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	line-height: 2;
}

.hero-cta {
	height: 3.25rem;
	margin-top: 2.75rem;
	padding: 0 3rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	color: #fff;
	font-size: 0.68rem;
	letter-spacing: 0.3em;
}

.hero-cta:hover {
	background: #fff;
	color: #2c2620;
}

.section-wrap {
	width: min(1280px, calc(100% - 2.5rem));
}

.category-section {
	padding: 6rem 0 4rem;
	background: #fff;
}

.split-header {
	align-items: flex-end;
	margin-bottom: 3rem;
}

.split-header h2,
.center-header h2,
.news-header h1,
.contact-header h1,
.product-summary h1,
.placeholder-page h1,
.article-header h1 {
	color: var(--ink);
	font-family: var(--font-serif);
	font-weight: 300;
	letter-spacing: 0;
}

.split-header h2,
.center-header h2 {
	font-size: clamp(2rem, 4vw, 2.65rem);
}

.text-arrow {
	min-height: 0;
	padding: 0 0 0.25rem;
	border: 0;
	background: transparent;
	color: var(--ink) !important;
	font-size: 0.68rem;
	letter-spacing: 0.22em;
}

.text-arrow:hover {
	background: transparent;
	border-color: transparent;
	color: var(--brand) !important;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: auto;
	gap: 1rem;
}

.category-card,
.category-card.is-featured {
	aspect-ratio: 4 / 3;
	min-height: 0;
	grid-column: auto;
	grid-row: auto;
}

.category-card.is-featured {
	grid-column: span 2;
	aspect-ratio: 16 / 9;
}

.category-card:nth-child(4) {
	grid-column: auto;
}

.category-card a {
	border: 0;
	background: #efe9e0;
}

.category-overlay {
	background: linear-gradient(to top, rgba(40, 34, 28, 0.75), rgba(40, 34, 28, 0.15), transparent);
}

.category-copy {
	padding: 1.5rem;
}

.category-card.is-featured .category-copy {
	padding: 2rem;
}

.category-copy span {
	color: rgba(231, 207, 174, 0.9);
	font-size: 0.625rem;
	letter-spacing: 0.26em;
}

.category-copy strong,
.category-card.is-featured .category-copy strong {
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 300;
	letter-spacing: 0.02em;
}

.product-band {
	background: var(--soft);
}

.product-band .section-wrap {
	padding: 5rem 0;
}

.product-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem 1.25rem;
}

.product-media {
	aspect-ratio: 1 / 1;
	background: var(--soft-2);
}

.product-media img {
	object-fit: cover;
	padding: 0;
}

.product-body {
	padding-top: 1rem;
}

.product-category {
	color: #b0a99c;
	font-size: 0.625rem;
	letter-spacing: 0.22em;
}

.product-title {
	margin-top: 0.375rem;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: 0.94rem;
	font-weight: 400;
	line-height: 1.45;
}

.product-link:hover .product-title {
	color: var(--brand);
}

.product-meta {
	margin-top: 0.75rem;
	color: var(--ink);
}

.product-meta > span:first-child {
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.02em;
}

.shop-now {
	color: #b0a99c;
	font-size: 0.625rem;
	letter-spacing: 0.18em;
}

.product-link:hover .shop-now {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.outline-button {
	height: 3rem;
	border: 1px solid rgba(58, 52, 46, 0.3);
	background: transparent;
	color: var(--ink);
	font-size: 0.68rem;
	letter-spacing: 0.26em;
}

.outline-button:hover {
	background: var(--ink);
	color: #fff;
}

.shop-hero {
	height: 420px;
	background: #2c2620;
}

.shop-hero img {
	opacity: 0.7;
}

.page-hero-shade {
	background: linear-gradient(to top, rgba(44, 38, 32, 0.85), rgba(44, 38, 32, 0.4), rgba(44, 38, 32, 0.45));
}

.shop-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 2rem;
	width: min(1280px, calc(100% - 2.5rem));
	padding: 3.5rem 0;
}

.shop-sidebar {
	position: sticky;
	top: calc(var(--site-header-h) + 1.5rem);
	align-self: start;
	padding: 0;
	border: 0;
	background: transparent;
}

.filter-block {
	margin-bottom: 2.5rem;
}

.filter-block p {
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--line);
	color: var(--brand);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.filter-block a,
.filter-block span {
	display: block;
	padding: 0.35rem 0;
	border-bottom: 0;
	color: #9a9389;
	font-size: 0.875rem;
	line-height: 1.45;
}

.filter-block a:hover,
.filter-block a.is-active {
	color: var(--ink);
	font-weight: 500;
}

.filter-block a.is-active::after {
	display: none;
}

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 0;
	margin-bottom: 2rem;
	padding: 0 0 1rem;
	border: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
}

.shop-toolbar > span,
.shop-toolbar label {
	color: #9a9389;
	font-size: 0.69rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.shop-toolbar select {
	height: auto;
	padding: 0.25rem 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 0.75rem;
	text-transform: uppercase;
}

.shop-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem 1.25rem;
}

.news-page,
.contact-page {
	width: min(1000px, calc(100% - 2rem));
	padding: 4rem 0;
}

.news-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
	padding: 0 0 2rem;
	border: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
}

.news-header h1 {
	font-size: clamp(2.25rem, 5vw, 3rem);
	line-height: 1;
}

.news-header > p {
	max-width: 26rem;
	color: #7c7468;
	font-size: 0.875rem;
	line-height: 1.9;
}

.news-list {
	display: block;
	border: 0;
}

.news-list li {
	border: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
}

.news-list a {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
	padding: 2rem 0;
}

.news-image {
	aspect-ratio: 4 / 3;
	background: var(--soft-2);
}

.news-copy span {
	color: var(--brand);
	font-size: 0.625rem;
	letter-spacing: 0.24em;
}

.news-copy strong {
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 300;
	line-height: 1.25;
}

.news-copy em {
	color: #7c7468;
	font-size: 0.875rem;
	line-height: 1.8;
}

.news-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid #e0d8cb;
	border-radius: 999px;
	color: var(--ink);
	font-size: 0;
	transition: background 240ms ease, border-color 240ms ease, color 240ms ease;
}

.news-arrow::before {
	content: "\2197";
	font-size: 1rem;
	line-height: 1;
}

.news-list a:hover .news-arrow {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.article-detail {
	background: var(--background);
	padding: 2rem 0 4rem;
}

.article-inner {
	width: min(800px, calc(100% - 2rem));
	margin: 0 auto;
}

.article-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	color: var(--brand);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.article-header {
	margin-bottom: 2.5rem;
}

.article-header p {
	margin: 0 0 1rem;
	color: var(--brand);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.article-header h1 {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 1.2;
}

.article-excerpt {
	max-width: 42rem;
	margin-top: 1.5rem;
	color: #7c7468;
	font-size: 1.05rem;
	line-height: 1.8;
}

.article-cover {
	width: min(840px, calc(100% - 2rem));
	margin: 0 auto 3rem;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--soft-2);
}

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

.article-content {
	color: rgba(47, 48, 52, 0.9);
	font-size: 1rem;
	line-height: 2;
}

.article-content p {
	margin: 0 0 1.5rem;
}

.article-content h2,
.article-content h3 {
	margin: 2rem 0 1rem;
	color: var(--ink);
	font-family: var(--font-serif);
	line-height: 1.25;
}

.article-content img {
	height: auto;
	margin: 2rem auto;
}

.contact-header {
	margin-bottom: 2rem;
	padding: 0 0 2rem;
	border: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
}

.contact-header p {
	margin: 0 0 0.75rem;
	color: var(--brand);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.contact-header h1 {
	font-size: clamp(2.25rem, 5vw, 3rem);
}

.contact-header span {
	display: block;
	max-width: 36rem;
	margin-top: 1rem;
	color: #7c7468;
	font-size: 0.9rem;
	line-height: 1.9;
}

.contact-grid {
	grid-template-columns: 1.1fr 0.9fr;
	gap: 1.5rem;
}

.contact-grid > section {
	padding: 1.5rem;
	border: 1px solid var(--line);
	background: #fff;
}

.channel-list a {
	border-radius: 0;
}

.channel-icon {
	border-radius: 999px;
}

.product-detail {
	width: min(1200px, calc(100% - 2.5rem));
	padding: 3rem 0 4rem;
}

.product-detail-grid {
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
	gap: 3rem;
}

.main-product-image {
	aspect-ratio: 4 / 5;
	border: 0;
	background: var(--soft-2);
}

.main-product-image img {
	object-fit: cover;
	padding: 0;
}

.thumb-grid button {
	border: 1px solid var(--line);
	background: var(--soft-2);
}

.thumb-grid img {
	object-fit: cover;
	padding: 0;
}

.product-summary {
	position: sticky;
	top: calc(var(--site-header-h) + 1.5rem);
	padding: 0;
	border: 0;
	background: transparent;
}

.product-summary h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
}

.product-detail-price {
	margin: 1.25rem 0 0;
	padding: 1.25rem 0 0;
	border-top: 1px solid var(--line);
	color: var(--ink);
	font-size: 1.35rem;
	font-weight: 300;
}

.product-meta-list {
	border-top: 1px solid var(--line);
}

.add-button,
.buy-button {
	border-radius: 999px;
}

.product-detail-content {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.product-description-panel,
.product-service-grid article {
	border: 1px solid var(--line);
	background: #fff;
}

.product-service-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.floating-contact {
	right: 1rem;
	top: auto;
	bottom: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.75rem;
	transform: none;
}

.floating-contact-item {
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	transition: transform 180ms ease;
}

.floating-contact-item:hover {
	transform: scale(1.03);
}

.floating-contact-item span {
	right: 100%;
	margin-right: 0.75rem;
	padding: 0;
	background: transparent;
	color: #9a9389;
	font-size: 0.625rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-footer {
	background: #1a1a1a;
	color: #fff;
}

.site-footer > .footer-grid {
	display: block;
	width: min(1280px, calc(100% - 2.5rem));
	padding: 3rem 0;
}

.footer-main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
}

.site-footer .footer-brand p {
	margin: 0;
	color: #fff;
	font-family: var(--font-serif);
	font-size: 1.25rem;
	letter-spacing: 0.2em;
}

.site-footer .footer-brand span {
	display: block;
	max-width: 20rem;
	margin-top: 0.5rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.875rem;
	line-height: 1.7;
}

.site-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.75rem;
	justify-content: flex-end;
	margin: 0;
}

.site-footer nav a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.69rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.site-footer nav a:hover {
	color: #fff;
}

.site-footer small {
	display: block;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.625rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.category-card.is-featured {
		grid-row: span 2;
		aspect-ratio: auto;
		min-height: 420px;
	}

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

@media (min-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.header-inner {
		padding: 0 1rem;
	}

	.header-actions {
		min-width: 0;
	}

	.shop-layout,
	.contact-grid,
	.product-detail-grid,
	.news-list a {
		grid-template-columns: 1fr;
	}

	.shop-sidebar,
	.product-summary {
		position: static;
	}

	.news-arrow {
		display: none;
	}

	.footer-main {
		flex-direction: column;
	}

	.site-footer nav {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.account-link,
	.icon-link,
	.language-switcher > button {
		width: auto;
		min-width: 2.25rem;
		height: 2.25rem;
	}

	.hero-slider {
		min-height: 620px;
	}

	.hero-cta {
		width: min(100%, 20rem);
		justify-content: center;
		padding: 0 1.5rem;
	}

	.split-header,
	.news-header {
		display: block;
	}

	.category-card.is-featured,
	.category-card:nth-child(4) {
		grid-column: auto;
		aspect-ratio: 4 / 3;
		min-height: 0;
	}

	.category-grid,
	.product-grid,
	.shop-grid {
		grid-template-columns: 1fr;
	}

	.shop-hero {
		height: 360px;
	}

	.shop-layout,
	.product-detail,
	.news-page,
	.contact-page,
	.article-inner,
	.article-cover {
		width: calc(100% - 2rem);
	}

	.shop-toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.75rem;
	}

	.product-service-grid {
		grid-template-columns: 1fr;
	}

	.floating-contact {
		right: 1rem;
		bottom: 1rem;
	}

	.floating-contact-item span {
		display: none;
	}

	.site-footer > .footer-grid {
		width: calc(100% - 2rem);
	}
}

/* Interactive storefront controls */
.language-switcher li button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.language-code {
	display: inline-block;
	max-width: 4.8rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.language-switcher li button span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.language-switcher li button .ui-svg {
	width: 0.875rem;
	height: 0.875rem;
	color: var(--brand);
}

.language-switcher li button.is-active {
	background: rgba(58, 52, 46, 0.06);
	color: var(--foreground);
}

.commerce-page {
	width: min(1180px, calc(100% - 2.5rem));
	margin: 0 auto;
	padding: 3.5rem 0 5rem;
}

.commerce-header {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
}

.commerce-header h1 {
	margin: 0.6rem 0 0;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	letter-spacing: 0;
}

.commerce-header > p:last-child {
	max-width: 34rem;
	margin: 0.75rem 0 0;
	color: var(--muted-foreground);
	font-size: 0.9rem;
	line-height: 1.8;
}

.commerce-shell {
	padding: 0;
}

.commerce-shell .woocommerce {
	color: var(--foreground);
	font-size: 0.92rem;
}

.commerce-shell .woocommerce a {
	color: var(--ink);
}

.commerce-shell .woocommerce table.shop_table,
.commerce-shell .woocommerce form.login,
.commerce-shell .woocommerce form.register,
.commerce-shell .woocommerce form.checkout_coupon {
	border: 1px solid var(--line);
	border-radius: 0;
	background: #fff;
}

.commerce-shell .woocommerce table.shop_table th,
.commerce-shell .woocommerce table.shop_table td {
	border-color: var(--line);
}

.commerce-shell .woocommerce input.input-text,
.commerce-shell .woocommerce textarea,
.commerce-shell .woocommerce select {
	min-height: 2.75rem;
	border: 1px solid var(--line-dark);
	border-radius: 0;
	background: #fff;
	color: var(--foreground);
}

.commerce-shell .woocommerce button.button,
.commerce-shell .woocommerce a.button,
.commerce-shell .woocommerce input.button,
.commerce-shell .woocommerce #respond input#submit,
.commerce-shell .woocommerce .checkout-button {
	border: 1px solid var(--ink);
	border-radius: 0;
	background: var(--ink);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.commerce-shell .woocommerce button.button:hover,
.commerce-shell .woocommerce a.button:hover,
.commerce-shell .woocommerce input.button:hover,
.commerce-shell .woocommerce #respond input#submit:hover,
.commerce-shell .woocommerce .checkout-button:hover {
	border-color: #564d43;
	background: #564d43;
	color: #fff;
}

.commerce-shell .woocommerce .woocommerce-info,
.commerce-shell .woocommerce .woocommerce-message,
.commerce-shell .woocommerce .woocommerce-error {
	border-top-color: var(--brand);
	background: var(--soft);
	color: var(--foreground);
}

.product-detail-content {
	display: block;
	width: min(820px, 100%);
	margin: 5rem auto 0;
}

.product-tabs {
	width: 100%;
}

.product-tab-list {
	display: flex;
	justify-content: center;
	gap: clamp(1.5rem, 5vw, 3rem);
	border-bottom: 1px solid var(--line);
	overflow-x: auto;
}

.product-tab-list button {
	margin-bottom: -1px;
	padding: 0 0 0.9rem;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: #9a9389;
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 400;
	white-space: nowrap;
	transition: color 180ms ease, border-color 180ms ease;
}

.product-tab-list button:hover,
.product-tab-list button.is-active {
	border-color: var(--ink);
	color: var(--ink);
}

.product-tab-panel {
	padding-top: 2rem;
	color: #6b6055;
	font-size: 0.94rem;
	line-height: 1.85;
}

.product-tab-panel p {
	margin: 0 0 1rem;
}

.product-faq {
	margin-top: 5rem;
}

.product-faq header {
	margin-bottom: 2rem;
	text-align: center;
}

.product-faq h2 {
	margin: 0.75rem 0 0;
	color: var(--ink);
	font-family: var(--font-serif);
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 300;
	letter-spacing: 0;
}

.faq-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.faq-list li {
	border-bottom: 1px solid var(--line);
}

.faq-list button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 1.5rem;
	padding: 1.25rem 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	text-align: left;
}

.faq-list button span {
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.5;
}

.faq-list button .ui-svg {
	width: 1rem;
	height: 1rem;
	color: #b0a99c;
	transition: transform 180ms ease;
}

.faq-list button[aria-expanded="true"] .ui-svg {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 2.5rem 1.35rem 0;
	color: #8c8780;
	font-size: 0.9rem;
	line-height: 1.8;
}

.faq-answer p {
	margin: 0;
}

@media (max-width: 900px) {
	.commerce-page {
		width: calc(100% - 2rem);
		padding: 3rem 0 4rem;
	}

	.product-detail-content {
		margin-top: 3.5rem;
	}
}

@media (max-width: 640px) {
	.product-tab-list {
		justify-content: flex-start;
		gap: 1.25rem;
	}

	.faq-list button {
		padding: 1rem 0;
	}

	.faq-answer {
		padding-right: 0;
	}
}
