:root {
	--ink: #151111;
	--soft-ink: #504447;
	--muted: #776b6e;
	--paper: #fff9f8;
	--white: #ffffff;
	--line: #eadfdd;
	--rose: #b9465d;
	--pink: #f8dce1;
	--plum: #402333;
	--gold: #c18b43;
	--green: #223c35;
	--shadow: 0 18px 45px rgba(64, 35, 51, .14);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}

body.cart-open {
	overflow: hidden;
}

body.viewer-open {
	overflow: hidden;
}

.offline-shell {
	width: min(720px, calc(100% - 32px));
	min-height: 100vh;
	margin: 0 auto;
	display: grid;
	align-content: center;
	gap: 18px;
}

.offline-shell h1 {
	margin: 0;
	font-size: clamp(2rem, 8vw, 4.4rem);
	line-height: .95;
}

.offline-shell p {
	max-width: 56ch;
	color: var(--soft-ink);
}

.pwa-install {
	position: fixed;
	left: 14px;
	bottom: max(14px, env(safe-area-inset-bottom));
	z-index: 120;
	border: 0;
	border-radius: 999px;
	min-height: 0;
	height: auto;
	padding: 7px 10px;
	background: var(--ink);
	color: var(--white);
	box-shadow: 0 12px 28px rgba(21, 17, 17, .18);
	font-size: .72rem;
	font-weight: 900;
	line-height: 1.05;
	max-width: calc(100vw - 28px);
	white-space: nowrap;
	cursor: pointer;
}

.pwa-install.is-hinting {
	background: var(--rose);
}

.pwa-install[hidden] {
	display: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

.top-strip {
	display: flex;
	justify-content: center;
	gap: clamp(18px, 5vw, 72px);
	padding: 10px 16px;
	background: var(--ink);
	color: rgba(255, 255, 255, .82);
	font-size: .82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 249, 248, .95);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
}

.nav-shell,
.section,
.hero,
.feature-banner,
.site-footer {
	width: min(1220px, calc(100% - 32px));
	margin-inline: auto;
}

.nav-shell {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand,
.site-footer div {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 900;
}

.brand img,
.site-footer img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.brand span {
	font-size: clamp(1rem, 2vw, 1.35rem);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	color: var(--muted);
	font-weight: 800;
	font-size: .94rem;
}

.main-nav a:hover {
	color: var(--rose);
}

.cart-button,
.menu-toggle {
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
	border-radius: var(--radius);
	min-height: 44px;
	font-weight: 900;
	cursor: pointer;
}

.cart-button {
	padding: 0 16px;
}

.cart-button span {
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	margin-left: 8px;
	border-radius: 999px;
	background: var(--rose);
	color: var(--white);
	font-size: .8rem;
}

.menu-toggle {
	display: none;
	width: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
}

.menu-toggle span {
	width: 20px;
	height: 2px;
	background: var(--ink);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--white);
	border: 1px solid var(--ink);
	font-weight: 900;
	box-shadow: 0 12px 30px rgba(21, 17, 17, .15);
}

.button.ghost {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .5);
	box-shadow: none;
}

.button.ghost-dark {
	background: transparent;
	color: var(--ink);
	border-color: rgba(21, 17, 17, .22);
	box-shadow: none;
}

.button.light {
	background: var(--white);
	color: var(--ink);
	border-color: var(--white);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
	gap: clamp(24px, 4vw, 58px);
	align-items: center;
	min-height: auto;
	padding: clamp(36px, 5vw, 62px) 0 clamp(34px, 5vw, 58px);
}

.hero-copy {
	max-width: 620px;
	animation: CJs-fade-up .75s ease both;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--pink);
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.eyebrow.dark {
	color: var(--rose);
}

.hero h1,
.section-heading h2,
.feature-banner h2,
.trust-copy h2,
.contact-card h2,
.cart-head h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: 0;
	line-height: .98;
}

.hero h1 {
	max-width: 720px;
	font-size: clamp(2.8rem, 5.8vw, 5.7rem);
}

.hero p:not(.eyebrow) {
	max-width: 610px;
	margin: 18px 0 24px;
	color: var(--soft-ink);
	font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero-media {
	position: relative;
	min-height: 500px;
	height: min(58vw, 590px);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--pink);
	box-shadow: var(--shadow);
	animation: CJs-fade-in .9s ease .12s both;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	animation: CJs-soft-zoom 5.5s ease both;
}

@keyframes CJs-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes CJs-fade-up {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes CJs-soft-zoom {
	from {
		transform: scale(1.035);
	}
	to {
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-copy,
	.hero-media,
	.hero-media img {
		animation: none;
	}
}

.hero-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 28px;
	max-width: 720px;
}

.hero-mini-grid a {
	display: grid;
	gap: 4px;
	min-height: 88px;
	padding: 15px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 10px 28px rgba(64, 35, 51, .08);
}

.hero-mini-grid strong {
	font-size: .98rem;
}

.hero-mini-grid span {
	color: var(--muted);
	font-size: .82rem;
	font-weight: 750;
}

.section {
	padding: clamp(64px, 8vw, 110px) 0;
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 28px;
	margin-bottom: 32px;
}

.section-heading h2,
.feature-banner h2,
.trust-copy h2,
.contact-card h2 {
	font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.collection-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.collection-card {
	position: relative;
	min-height: 320px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: #ddd;
}

.collection-card img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	transition: transform .4s ease;
}

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

.collection-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(21, 17, 17, .82));
}

.collection-card span {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	color: var(--white);
	font-size: 1.45rem;
	font-weight: 950;
}

.shop-section {
	border-top: 1px solid var(--line);
}

.shop-heading {
	align-items: center;
}

.search-box {
	display: grid;
	gap: 7px;
	color: var(--muted);
	font-weight: 800;
	font-size: .83rem;
}

.search-box input {
	width: min(360px, 78vw);
	min-height: 48px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	padding: 0 14px;
	color: var(--ink);
}

.filter-row {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 16px;
	margin-bottom: 14px;
}

.filter {
	flex: 0 0 auto;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--soft-ink);
	padding: 10px 16px;
	font-weight: 900;
	cursor: pointer;
}

.filter.is-active {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(64, 35, 51, .08);
}

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

.product-media {
	position: relative;
	aspect-ratio: 1 / 1.18;
	background: #eee;
	overflow: hidden;
}

.product-media-button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	text-align: left;
}

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

.product-card:hover .product-media img {
	transform: scale(1.04);
}

.view-cue {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 1;
	border-radius: 999px;
	background: rgb(24 19 20 / 78%);
	color: #fff;
	padding: 6px 10px;
	font-size: .74rem;
	font-weight: 950;
	line-height: 1;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .18s ease, transform .18s ease;
}

.product-media-button:hover .view-cue,
.product-media-button:focus-visible .view-cue {
	opacity: 1;
	transform: translateY(0);
}

.badge {
	position: absolute;
	top: 12px;
	left: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	color: var(--ink);
	padding: 6px 10px;
	font-size: .76rem;
	font-weight: 950;
}

.product-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px;
}

.product-body h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	line-height: 1.25;
}

.product-body p {
	margin: 0 0 14px;
	color: var(--muted);
	font-size: .9rem;
}

.product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: auto;
}

.product-meta span {
	padding: 5px 8px;
	border-radius: 999px;
	background: var(--paper);
	color: var(--soft-ink);
	font-size: .75rem;
	font-weight: 800;
}

.product-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
}

.product-actions strong {
	font-size: .92rem;
}

.product-actions button {
	border: 0;
	border-radius: var(--radius);
	background: var(--rose);
	color: var(--white);
	padding: 10px 12px;
	font-size: .82rem;
	font-weight: 950;
	cursor: pointer;
}

.home-shop-link {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.empty-state {
	margin: 30px 0 0;
	padding: 24px;
	border: 1px dashed var(--line);
	text-align: center;
	color: var(--muted);
}

.feature-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-block: 28px;
	padding: clamp(30px, 5vw, 54px);
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--plum), var(--rose));
	color: var(--white);
}

.CJs-sale-banner {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(36, 18, 28, .9) 0%, rgba(92, 28, 48, .74) 42%, rgba(180, 52, 92, .16) 100%),
		url("../../images/cj-hero-pink.jpg") center right / cover no-repeat;
}

.CJs-sale-banner h2,
.CJs-sale-banner .eyebrow {
	color: #fff;
	text-shadow: 0 2px 14px rgba(21, 17, 17, .24);
}

.feature-banner h2 {
	max-width: 820px;
}

.trust-section {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(28px, 5vw, 70px);
	align-items: center;
}

.trust-copy p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.06rem;
}

.trust-cards {
	display: grid;
	gap: 14px;
}

.trust-cards img {
	width: 100%;
	border-radius: var(--radius);
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.contact-section {
	padding-top: 24px;
}

.contact-card {
	padding: clamp(30px, 6vw, 70px);
	border-radius: var(--radius);
	background:
		linear-gradient(90deg, rgba(21, 17, 17, .82) 0%, rgba(75, 34, 43, .64) 42%, rgba(21, 17, 17, .1) 100%),
		url("../../images/order-desk-bg.jpg") center right / cover no-repeat;
	box-shadow: var(--shadow);
}

.contact-card p:not(.eyebrow) {
	max-width: 620px;
	color: rgba(255, 255, 255, .9);
}

.contact-card h2 {
	color: #fff;
}

.contact-card .eyebrow {
	color: #ffd2dc;
}

.cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	background: rgba(21, 17, 17, .58);
}

.image-viewer {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
	place-items: center;
	padding: clamp(14px, 3vw, 34px);
	background: rgb(24 19 20 / 82%);
}

.image-viewer.is-open {
	display: grid;
}

.image-viewer__panel {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(10px, 2vw, 18px);
	width: min(1120px, 100%);
	height: min(760px, calc(100vh - 36px));
}

.image-viewer__figure {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	gap: 14px;
	min-width: 0;
	height: 100%;
	margin: 0;
}

.image-viewer__figure img {
	width: 100%;
	height: 100%;
	max-height: calc(100vh - 150px);
	object-fit: contain;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 22px 70px rgb(0 0 0 / 30%);
	touch-action: pan-y;
}

.image-viewer__figure figcaption {
	display: grid;
	gap: 3px;
	color: #fff;
	text-align: center;
	line-height: 1.25;
}

.image-viewer__figure strong {
	font-size: clamp(1rem, .95rem + .35vw, 1.22rem);
	text-wrap: balance;
}

.image-viewer__figure span {
	color: #f7ddd8;
	font-weight: 800;
	font-size: .88rem;
}

.image-viewer__close,
.image-viewer__nav {
	border: 1px solid rgb(255 255 255 / 26%);
	border-radius: var(--radius);
	background: rgb(255 255 255 / 94%);
	color: var(--ink);
	min-height: 44px;
	padding: 0 14px;
	font-weight: 950;
	cursor: pointer;
}

.image-viewer__close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.image-viewer__nav {
	width: clamp(48px, 7vw, 64px);
	height: clamp(48px, 7vw, 64px);
	padding: 0;
	border-radius: 999px;
}

.cart-drawer.is-open {
	display: block;
}

.cart-panel {
	width: min(440px, calc(100% - 28px));
	height: 100%;
	margin-left: auto;
	background: var(--white);
	padding: 24px;
	overflow-y: auto;
	box-shadow: -18px 0 60px rgba(0, 0, 0, .22);
}

.cart-head {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: start;
	border-bottom: 1px solid var(--line);
	padding-bottom: 18px;
	margin-bottom: 18px;
}

.cart-head h2 {
	font-size: 1.8rem;
}

.cart-head button,
.clear-cart {
	border: 1px solid var(--line);
	background: var(--paper);
	border-radius: var(--radius);
	min-height: 38px;
	padding: 0 12px;
	font-weight: 900;
	cursor: pointer;
}

.cart-item {
	display: grid;
	gap: 5px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.cart-item strong {
	line-height: 1.25;
}

.cart-item span {
	color: var(--muted);
	font-size: .86rem;
}

.cart-empty {
	color: var(--muted);
}

.cart-send {
	width: 100%;
	margin-top: 18px;
}

.cart-actions {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.cart-actions .button {
	width: 100%;
	box-shadow: none;
}

.cart-checkout {
	background: var(--rose-dark);
	border-color: var(--rose-dark);
}

.button:disabled {
	cursor: not-allowed;
	opacity: .55;
	transform: none;
}

.checkout-shell {
	width: min(1180px, calc(100% - clamp(28px, 5vw, 72px)));
	margin-inline: auto;
	padding-block: clamp(34px, 6vw, 78px);
}

.checkout-head {
	max-width: 760px;
	margin-bottom: 28px;
}

.checkout-head h1,
.checkout-summary h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.04;
	text-wrap: balance;
}

.checkout-head h1 {
	font-size: clamp(2.4rem, 5.4vw, 5.2rem);
}

.checkout-head p:not(.eyebrow) {
	color: var(--soft-ink);
	font-size: clamp(1rem, .96rem + .28vw, 1.18rem);
}

.checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
	gap: clamp(18px, 4vw, 42px);
	align-items: start;
}

.checkout-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.checkout-form {
	display: grid;
	gap: 14px;
	padding: clamp(18px, 3vw, 28px);
}

.checkout-form label {
	display: grid;
	gap: 7px;
	color: var(--soft-ink);
	font-weight: 850;
}

.checkout-form input,
.checkout-form textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	padding: 0 12px;
}

.checkout-form textarea {
	padding-block: 11px;
	resize: vertical;
}

.checkout-alert {
	padding: 13px 14px;
	border: 1px solid #eed4a5;
	border-radius: var(--radius);
	background: #fff8e7;
	color: #705115;
	font-weight: 750;
}

.checkout-alert--success {
	border-color: #bfe6cf;
	background: #e7f8ef;
	color: #0d6c46;
}

.checkout-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 6px;
}

.checkout-mail {
	color: var(--rose-dark);
	font-weight: 900;
	text-align: center;
}

.checkout-summary {
	padding: clamp(18px, 3vw, 26px);
}

.checkout-summary-head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: start;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.checkout-summary h2 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.checkout-summary-head button {
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	color: var(--ink);
	font-weight: 900;
	cursor: pointer;
}

.checkout-items {
	display: grid;
	gap: 12px;
}

.checkout-item {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
}

.checkout-item strong,
.checkout-item span {
	display: block;
}

.checkout-item strong {
	line-height: 1.25;
}

.checkout-item span,
.checkout-note {
	color: var(--muted);
	font-size: .9rem;
}

.checkout-item b {
	white-space: nowrap;
}

.checkout-total {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 2px solid var(--ink);
	font-weight: 950;
}

.checkout-total strong {
	color: var(--rose-dark);
}

.checkout-note {
	margin: 14px 0 0;
}

.clear-cart {
	width: 100%;
	margin-top: 10px;
	background: transparent;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px 0;
	border-top: 1px solid var(--line);
	color: var(--muted);
}

.scroll-top {
	position: fixed;
	right: clamp(16px, 3vw, 28px);
	bottom: clamp(16px, 3vw, 28px);
	z-index: 80;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 54px;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid rgb(255 255 255 / 40%);
	border-radius: var(--radius);
	background: var(--ink);
	color: #fff;
	box-shadow: var(--shadow);
	font-weight: 950;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity .18s ease, transform .18s ease;
}

.scroll-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@media (max-width: 1020px) {
	.hero,
	.trust-section {
		grid-template-columns: 1fr;
	}

	.hero-media,
	.hero-media img {
		min-height: 520px;
	}

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

@media (max-width: 720px) {
	.top-strip {
		display: none;
	}

	.nav-shell {
		min-height: 72px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.main-nav {
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 16px 18px;
		background: var(--paper);
		border-bottom: 1px solid var(--line);
	}

	.main-nav.is-open {
		display: flex;
	}

	.main-nav a {
		padding: 14px 0;
		border-top: 1px solid var(--line);
	}

	.hero {
		min-height: auto;
		padding-top: 44px;
	}

	.hero h1 {
		font-size: clamp(2.6rem, 12vw, 4.4rem);
	}

	.hero-media {
		min-height: 390px;
		height: 420px;
	}

	.hero-mini-grid {
		grid-template-columns: 1fr;
		margin-top: 22px;
	}

	.section-heading,
	.shop-heading,
	.feature-banner,
	.site-footer {
		display: block;
	}

	.search-box input {
		width: 100%;
	}

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

	.feature-banner .button {
		margin-top: 22px;
	}
}

/* Site polish layer */
:root {
	--ink: #181314;
	--soft-ink: #3f3638;
	--muted: #63585b;
	--paper: #fff8f6;
	--white: #ffffff;
	--line: #e6d7d4;
	--rose: #a9364d;
	--rose-dark: #7d2638;
	--pink: #f4cdd4;
	--plum: #2d1b27;
	--gold: #a36e25;
	--shadow: 0 18px 42px rgb(45 27 39 / 12%);
	--shadow-soft: 0 10px 26px rgb(45 27 39 / 8%);
	--radius: 8px;
}

html {
	font-size: 16px;
	text-size-adjust: 100%;
}

body {
	color: var(--ink);
	font-size: clamp(1rem, .95rem + .18vw, 1.075rem);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

p {
	margin-top: 0;
}

.top-strip {
	background: var(--plum);
	color: #fff7f2;
	font-size: .76rem;
	line-height: 1.35;
	letter-spacing: .06em;
}

.site-header {
	background: rgb(255 248 246 / 96%);
}

.nav-shell,
.section,
.hero,
.feature-banner,
.site-footer {
	width: min(1240px, calc(100% - clamp(28px, 5vw, 72px)));
}

.nav-shell {
	min-height: 78px;
	gap: clamp(12px, 2vw, 28px);
}

.brand {
	min-width: 0;
}

.brand span {
	overflow-wrap: anywhere;
	font-size: clamp(1.05rem, .96rem + .65vw, 1.45rem);
	line-height: 1.1;
}

.brand img,
.site-footer img {
	flex: 0 0 auto;
	width: clamp(38px, 4.5vw, 48px);
	height: clamp(38px, 4.5vw, 48px);
}

.main-nav {
	gap: clamp(16px, 2.5vw, 34px);
	color: var(--soft-ink);
	font-size: .98rem;
	line-height: 1.2;
}

.main-nav a {
	position: relative;
	padding-block: 8px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
	color: var(--rose-dark);
}

.cart-button,
.menu-toggle,
.filter,
.product-actions button,
.cart-head button,
.clear-cart,
.button {
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.button,
.cart-button,
.product-actions button {
	min-height: 46px;
}

.button:hover,
.cart-button:hover,
.product-actions button:hover,
.filter:hover {
	transform: translateY(-1px);
}

.button {
	background: var(--ink);
	border-color: var(--ink);
	box-shadow: var(--shadow-soft);
}

.button.ghost {
	background: #fffaf8;
	border-color: #fffaf8;
	color: var(--ink);
}

.button.ghost-dark {
	background: #fff;
	border-color: var(--line);
	color: var(--ink);
}

.hero {
	grid-template-columns: minmax(0, 1.04fr) minmax(340px, .86fr);
	gap: clamp(28px, 5vw, 68px);
	padding-block: clamp(42px, 7vw, 86px);
}

.hero h1,
.section-heading h2,
.feature-banner h2,
.trust-copy h2,
.contact-card h2,
.cart-head h2 {
	color: var(--ink);
	line-height: 1.02;
	text-wrap: balance;
}

.hero h1 {
	max-width: 760px;
	font-size: clamp(3rem, 7vw, 6rem);
}

.hero p:not(.eyebrow),
.trust-copy p:not(.eyebrow),
.contact-card p:not(.eyebrow) {
	color: var(--soft-ink);
	font-size: clamp(1.02rem, .98rem + .32vw, 1.22rem);
	line-height: 1.75;
}

.eyebrow {
	color: var(--rose-dark);
	font-size: .78rem;
	letter-spacing: .1em;
	line-height: 1.2;
}

.hero-media {
	min-height: 420px;
	height: clamp(420px, 52vw, 620px);
}

.hero-media img,
.collection-card img,
.product-media img {
	background: #f2ecea;
}

.hero-mini-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.hero-mini-grid a {
	min-height: 96px;
	background: #fff;
	border-color: var(--line);
	box-shadow: var(--shadow-soft);
}

.hero-mini-grid strong,
.collection-card span,
.product-body h3 {
	color: var(--ink);
	line-height: 1.2;
	text-wrap: balance;
}

.hero-mini-grid span,
.product-body p,
.sku-line,
.cart-item span,
.cart-empty,
.site-footer {
	color: var(--muted);
}

.section {
	padding-block: clamp(56px, 8vw, 108px);
}

.section-heading {
	align-items: flex-end;
}

.section-heading h2,
.feature-banner h2,
.trust-copy h2,
.contact-card h2 {
	font-size: clamp(2.35rem, 5.2vw, 5rem);
}

.contact-card h2 {
	color: #fff;
	max-width: 700px;
}

.contact-card p:not(.eyebrow) {
	color: rgba(255, 255, 255, .9);
}

.contact-card .eyebrow {
	color: #ffd2dc;
}

.collection-grid {
	gap: clamp(14px, 2vw, 22px);
}

.collection-card {
	min-height: clamp(260px, 34vw, 390px);
	box-shadow: var(--shadow-soft);
}

.collection-card img {
	min-height: clamp(260px, 34vw, 390px);
}

.collection-card::after {
	background: linear-gradient(180deg, rgb(24 19 20 / 0%) 32%, rgb(24 19 20 / 76%) 100%);
}

.collection-card span {
	color: #fff;
	font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}

.search-box {
	color: var(--soft-ink);
	line-height: 1.25;
}

.search-box input,
.catalog-toolbar select {
	font-size: 1rem;
	color: var(--ink);
}

.filter {
	color: var(--soft-ink);
	background: #fff;
}

.filter.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.product-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.product-card {
	box-shadow: var(--shadow-soft);
}

.product-body {
	padding: clamp(16px, 2vw, 20px);
}

.product-body h3 {
	font-size: clamp(1rem, .96rem + .26vw, 1.14rem);
	overflow-wrap: anywhere;
}

.product-body p {
	display: -webkit-box;
	font-size: .94rem;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.product-meta span {
	background: #fff2ef;
	color: var(--soft-ink);
	line-height: 1.15;
}

.product-actions {
	align-items: stretch;
}

.product-actions button {
	white-space: nowrap;
}

.product-actions button {
	background: var(--rose-dark);
}

.product-detail-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 12px;
	border-radius: var(--radius);
	background: var(--rose-dark);
	color: #fff;
	font-size: .84rem;
	font-weight: 950;
	white-space: nowrap;
}

.product-detail-shell {
	width: min(1240px, calc(100% - clamp(28px, 5vw, 72px)));
	margin-inline: auto;
	padding-block: clamp(32px, 6vw, 78px);
}

.product-detail {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
	gap: clamp(24px, 5vw, 70px);
	align-items: start;
}

.product-gallery {
	display: grid;
	gap: 14px;
	min-width: 0;
}

.gallery-main {
	width: 100%;
	aspect-ratio: 1 / 1.08;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	overflow: hidden;
	cursor: pointer;
}

.gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
	gap: 10px;
}

.gallery-thumbs button {
	aspect-ratio: 1;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--radius);
	background: #fff;
	overflow: hidden;
	cursor: pointer;
}

.gallery-thumbs button.is-active {
	border-color: var(--rose-dark);
}

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

.product-purchase-card {
	display: grid;
	gap: 18px;
	padding: clamp(20px, 4vw, 34px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.product-purchase-card h1,
.product-not-found h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1.05;
	text-wrap: balance;
}

.product-price {
	color: var(--rose-dark);
	font-size: clamp(1.45rem, 2vw, 2rem);
	font-weight: 950;
}

.product-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
}

.product-facts div {
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
}

.product-facts dt {
	color: var(--muted);
	font-size: .76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.product-facts dd {
	margin: 2px 0 0;
	color: var(--ink);
	font-weight: 850;
	overflow-wrap: anywhere;
}

.product-choice-form {
	display: grid;
	grid-template-columns: 1fr 120px;
	gap: 12px;
}

.product-choice-form label {
	display: grid;
	gap: 6px;
	color: var(--soft-ink);
	font-weight: 850;
}

.product-choice-form select,
.product-choice-form input {
	min-height: 46px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 0 12px;
	color: var(--ink);
}

.product-choice-form .button {
	grid-column: 1 / -1;
	width: 100%;
}

.back-link {
	color: var(--rose-dark);
	font-weight: 950;
}

.product-not-found {
	display: grid;
	gap: 18px;
	max-width: 680px;
	min-height: 44vh;
	align-content: center;
}

.feature-banner {
	background: linear-gradient(135deg, var(--plum), var(--rose-dark));
}

.feature-banner.CJs-sale-banner {
	background:
		linear-gradient(90deg, rgba(36, 18, 28, .9) 0%, rgba(92, 28, 48, .74) 42%, rgba(180, 52, 92, .16) 100%),
		url("../../images/cj-hero-pink.jpg") center right / cover no-repeat;
}

.feature-banner h2 {
	color: #fff;
}

.cart-drawer {
	background: rgb(24 19 20 / 64%);
}

@media (max-width: 1120px) {
	.product-grid {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
	}
}

@media (max-width: 1020px) {
	.hero {
		grid-template-columns: 1fr;
		padding-top: clamp(34px, 6vw, 58px);
	}

	.hero-copy {
		max-width: 780px;
	}

	.hero-media,
	.hero-media img {
		min-height: 0;
	}

	.hero-media {
		height: clamp(360px, 64vw, 560px);
	}

}

@media (max-width: 900px) {
	.product-detail {
		grid-template-columns: 1fr;
	}

	.checkout-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.nav-shell,
	.section,
	.hero,
	.feature-banner,
	.site-footer {
		width: min(100% - 28px, 1240px);
	}

	.nav-shell {
		min-height: 70px;
	}

	.cart-button {
		padding-inline: 12px;
	}

	.main-nav {
		top: 70px;
		background: #fff8f6;
	}

	.hero h1 {
		font-size: clamp(2.65rem, 14vw, 4.65rem);
	}

	.hero-mini-grid {
		grid-template-columns: 1fr;
	}

	.section-heading,
	.shop-heading,
	.feature-banner,
	.site-footer {
		display: grid;
		gap: 18px;
	}

	.product-actions {
		display: grid;
	}

	.product-actions button {
		width: 100%;
	}

	.view-cue {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 560px) {
	body {
		font-size: 1rem;
		line-height: 1.6;
	}

	.brand span {
		font-size: 1.02rem;
	}

	.brand img {
		width: 36px;
		height: 36px;
	}

	.hero {
		padding-top: 30px;
	}

	.hero h1 {
		font-size: clamp(2.35rem, 13vw, 3.7rem);
	}

	.hero-media {
		height: min(108vw, 430px);
	}

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

	.product-card {
		border-color: rgba(230, 215, 212, .9);
	}

	.product-media {
		aspect-ratio: 4 / 3;
		max-height: 240px;
	}

	.product-body {
		padding: 14px;
	}

	.product-body h3 {
		font-size: 1.02rem;
		line-height: 1.22;
	}

	.product-body p {
		font-size: .9rem;
		line-height: 1.45;
		-webkit-line-clamp: 2;
	}

	.product-actions {
		gap: 9px;
	}

	.product-actions strong {
		font-size: .98rem;
	}

	.product-detail-link,
	.product-actions button {
		width: 100%;
		min-width: 0;
	}

	.cart-panel {
		width: 100%;
		padding: 20px;
	}

	.product-detail-shell {
		width: min(100% - 28px, 1240px);
	}

	.product-facts,
	.product-choice-form {
		grid-template-columns: 1fr;
	}

	.checkout-shell {
		width: min(100% - 28px, 1180px);
	}

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

	.checkout-item,
	.checkout-total {
		display: grid;
	}

	.image-viewer {
		padding: 12px;
	}

	.image-viewer__panel {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto minmax(0, 1fr) auto;
		height: calc(100vh - 24px);
		gap: 10px;
	}

	.image-viewer__close {
		top: 0;
		right: 0;
	}

	.image-viewer__figure {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.image-viewer__figure img {
		max-height: calc(100vh - 150px);
	}

	.image-viewer__nav {
		grid-row: 3;
		width: 100%;
		border-radius: var(--radius);
	}

	.image-viewer__nav--prev {
		grid-column: 1;
	}

	.image-viewer__nav--next {
		grid-column: 2;
	}
}

/* Global compact product fit */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

.product-grid,
.shop-product-grid {
	width: 100%;
	min-width: 0;
}

.product-card,
.shop-product-card {
	width: 100%;
	min-width: 0;
}

.product-media {
	height: clamp(210px, 28vw, 340px);
	max-height: 340px;
	aspect-ratio: auto;
}

.product-media img {
	object-fit: cover;
	object-position: center top;
}

.product-body p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.product-detail-shell {
	width: min(1180px, calc(100% - clamp(24px, 5vw, 64px)));
}

.product-detail {
	grid-template-columns: minmax(0, .82fr) minmax(300px, .7fr);
}

.gallery-main {
	height: clamp(360px, 54vw, 620px);
	max-height: 620px;
	aspect-ratio: auto;
}

.gallery-main img {
	object-fit: contain;
	object-position: center;
}

.gallery-thumbs {
	grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
}

@media (max-width: 900px) {
	.product-detail {
		grid-template-columns: 1fr;
	}

	.product-gallery {
		max-width: 620px;
		width: 100%;
		margin-inline: auto;
	}

	.gallery-main {
		height: clamp(300px, 86vw, 500px);
		max-height: 500px;
	}
}

@media (max-width: 560px) {
	.nav-shell,
	.section,
	.hero,
	.feature-banner,
	.site-footer,
	.product-detail-shell {
		width: min(100% - 22px, 1240px);
	}

	.product-grid {
		gap: 14px;
	}

	.product-media {
		height: clamp(190px, 58vw, 235px);
		max-height: 235px;
	}

	.product-body {
		padding: 12px;
	}

	.product-body h3 {
		font-size: .98rem;
	}

	.product-actions {
		margin-top: 12px;
		padding-top: 12px;
	}

	.product-detail-shell {
		padding-block: 14px 54px;
	}

	.product-gallery {
		gap: 10px;
	}

	.gallery-main {
		height: clamp(260px, 78vw, 350px);
		max-height: 350px;
	}

	.gallery-thumbs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.gallery-thumbs button {
		aspect-ratio: 4 / 3;
	}

	.product-purchase-card {
		gap: 14px;
		padding: 18px;
	}

	.product-purchase-card h1,
	.product-not-found h1 {
		font-size: clamp(1.8rem, 9vw, 2.45rem);
	}
}

@media (max-width: 420px) {
	.nav-shell,
	.section,
	.hero,
	.feature-banner,
	.site-footer,
	.product-detail-shell {
		width: min(100% - 18px, 1240px);
	}

	.product-media {
		height: clamp(180px, 56vw, 220px);
		max-height: 220px;
	}

	.gallery-main {
		height: clamp(240px, 76vw, 320px);
		max-height: 320px;
	}
}
