:root {
	--cvp-shell-width: 1280px;
	--cvp-space-2xs: 0.4rem;
	--cvp-space-xs: 0.75rem;
	--cvp-space-sm: 1rem;
	--cvp-space-md: 1.5rem;
	--cvp-space-lg: 2rem;
	--cvp-space-xl: 3rem;
	--cvp-space-2xl: 4.5rem;
	--cvp-radius-sm: 14px;
	--cvp-radius-md: 20px;
	--cvp-radius-lg: 28px;
	--cvp-radius-xl: 38px;
	--cvp-background: #111317;
	--cvp-background-soft: #181b20;
	--cvp-surface: #1f2329;
	--cvp-surface-strong: #252a31;
	--cvp-surface-bright: #2f353d;
	--cvp-line: rgba(255, 255, 255, 0.1);
	--cvp-line-strong: rgba(255, 255, 255, 0.18);
	--cvp-text: #f5efe7;
	--cvp-text-muted: #b9b0a6;
	--cvp-text-soft: #8e877f;
	--cvp-accent: #d8b37d;
	--cvp-accent-strong: #f6cf98;
	--cvp-highlight: #b5ff61;
	--cvp-danger: #ff7e76;
	--cvp-button-accent-start: #e9c883;
	--cvp-button-accent-end: #b9ff57;
	--cvp-button-accent-text: #13161b;
	--cvp-button-accent-shadow: 0 16px 36px rgba(185, 255, 87, 0.18);
	--cvp-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	background:
		radial-gradient(circle at top left, rgba(216, 179, 125, 0.12), transparent 28%),
		radial-gradient(circle at top right, rgba(181, 255, 97, 0.06), transparent 18%),
		linear-gradient(180deg, #101215 0%, #13161b 45%, #0f1114 100%);
	color: var(--cvp-text);
	font-family: "Manrope", "Segoe UI", sans-serif;
	line-height: 1.65;
	overflow-x: clip;
}

body.is-vault-mode {
	--cvp-accent: #ff8a63;
	--cvp-accent-strong: #ffb087;
	--cvp-highlight: #ff824f;
	--cvp-button-accent-start: #ff6b4a;
	--cvp-button-accent-end: #ffb347;
	--cvp-button-accent-shadow: 0 16px 36px rgba(255, 123, 79, 0.22);
	background:
		radial-gradient(circle at top left, rgba(255, 104, 74, 0.24), transparent 32%),
		radial-gradient(circle at top right, rgba(255, 173, 69, 0.18), transparent 22%),
		radial-gradient(circle at 50% 100%, rgba(161, 28, 42, 0.12), transparent 34%),
		linear-gradient(180deg, #1a0d11 0%, #231015 42%, #15090e 100%);
}

::selection {
	background: rgba(216, 179, 125, 0.35);
	color: var(--cvp-text);
}

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

button,
input,
select,
textarea {
	font: inherit;
}

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

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

.screen-reader-text:focus {
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	clip: auto;
	background: var(--cvp-surface-strong);
	color: var(--cvp-text);
	z-index: 1000;
	border-radius: 999px;
}

.site-shell {
	min-height: 100vh;
}

.site-header,
.site-footer,
.site-main {
	padding-inline: var(--cvp-space-md);
}

.site-header__inner,
.site-footer__inner {
	width: min(100%, var(--cvp-shell-width));
	margin: 0 auto;
}

.site-notice-bar {
	position: relative;
	padding-top: 0;
	padding-inline: 0;
	overflow: hidden;
}

.site-notice-bar::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 0% 50%, rgba(216, 179, 125, 0.12), transparent 18%),
		radial-gradient(circle at 100% 50%, rgba(181, 255, 97, 0.1), transparent 22%),
		linear-gradient(90deg, rgba(27, 23, 21, 0.98) 0%, rgba(26, 24, 22, 0.96) 45%, rgba(20, 28, 22, 0.96) 100%);
	pointer-events: none;
}

body.is-vault-mode .site-notice-bar::before {
	background:
		radial-gradient(circle at 0% 50%, rgba(255, 113, 78, 0.22), transparent 18%),
		radial-gradient(circle at 100% 50%, rgba(255, 177, 67, 0.16), transparent 22%),
		linear-gradient(90deg, rgba(39, 18, 19, 0.98) 0%, rgba(45, 20, 18, 0.96) 45%, rgba(54, 29, 14, 0.96) 100%);
}

.site-notice-bar__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--cvp-space-sm);
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0.95rem clamp(1.2rem, 3vw, 2.5rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
	color: var(--cvp-text-muted);
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-notice-bar__copy {
	margin: 0;
}

.site-notice-bar__link {
	color: var(--cvp-text);
	font-weight: 800;
}

.menu-item--vault > a,
.site-nav__menu .menu-item--vault > a {
	color: #ff7c58;
}

.menu-item--vault > a:hover,
.site-nav__menu .menu-item--vault.is-active > a {
	color: #ffb087;
}

.site-header {
	position: sticky;
	top: 0.75rem;
	z-index: 30;
	padding-top: 0.75rem;
	padding-bottom: 0;
	transition:
		top 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		padding 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header--scrolled {
	top: 0.5rem;
	padding-top: 0.35rem;
}

.site-header__inner {
	--cvp-header-radius: 30px;
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--cvp-space-md);
	width: min(100%, var(--cvp-shell-width));
	padding: 0.85rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--cvp-header-radius);
	background:
		linear-gradient(180deg, rgba(31, 35, 41, 0.9), rgba(17, 20, 24, 0.82)),
		rgba(17, 19, 23, 0.78);
	backdrop-filter: blur(18px) saturate(120%);
	box-shadow:
		0 28px 60px rgba(0, 0, 0, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
	transition:
		gap 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.38s ease,
		border-radius 0.38s ease,
		box-shadow 0.38s ease,
		transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.38s ease;
}

.site-header__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(circle at 8% 12%, rgba(216, 179, 125, 0.14), transparent 22%),
		radial-gradient(circle at 92% 88%, rgba(181, 255, 97, 0.1), transparent 24%),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
	opacity: 0.95;
	pointer-events: none;
	z-index: 0;
}

.site-header__inner::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: calc(var(--cvp-header-radius) - 1px);
	border: 1px solid rgba(255, 255, 255, 0.04);
	pointer-events: none;
	z-index: 0;
}

body.is-vault-mode .site-header__inner::before {
	background:
		radial-gradient(circle at 8% 12%, rgba(255, 125, 86, 0.22), transparent 24%),
		radial-gradient(circle at 92% 88%, rgba(255, 176, 68, 0.16), transparent 26%),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
}

.site-header__inner > * {
	position: relative;
	z-index: 1;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-branding__logo-link,
.custom-logo-link {
	display: flex;
	align-items: center;
}

.site-branding .site-branding__logo-fallback,
.site-branding .custom-logo {
	width: clamp(55px, 13vw, 72px);
	height: auto;
	transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav {
	display: flex;
	justify-content: center;
}

.site-nav__menu,
.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.35rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav__menu {
	justify-content: center;
	transition: gap 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav__menu a,
.site-footer__menu a {
	color: var(--cvp-text-muted);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	transition:
		color 0.2s ease,
		font-size 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.site-nav__menu a:hover,
.site-footer__menu a:hover,
.site-nav__menu .current-menu-item > a,
.site-footer__menu .current-menu-item > a {
	color: var(--cvp-text);
}

.site-nav__menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.65rem;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
}

.site-nav__menu a:hover,
.site-nav__menu .current-menu-item > a,
.site-nav__menu .menu-item--vault.is-active > a {
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1rem;
	border: 1px solid var(--cvp-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--cvp-text);
	cursor: pointer;
}

.site-nav-toggle__label {
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-header__meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
}

.site-header__shop-link,
.site-cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.15rem;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		font-size 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.38s ease;
}

.site-header__shop-link {
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(90deg, var(--cvp-button-accent-start) 0%, var(--cvp-button-accent-end) 100%);
	box-shadow: var(--cvp-button-accent-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
	color: var(--cvp-button-accent-text);
}

.site-header__shop-link--public-return,
.button--public {
	border-color: rgba(255, 255, 255, 0.14);
	background: linear-gradient(90deg, #e9c883 0%, #b9ff57 100%);
	box-shadow: 0 16px 36px rgba(185, 255, 87, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
	color: #13161b;
}

.site-cart-link {
	gap: 0.55rem;
	border: 1px solid var(--cvp-line);
	background: rgba(255, 255, 255, 0.03);
}

.site-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.8rem;
	height: 1.8rem;
	padding-inline: 0.45rem;
	border-radius: 999px;
	background: var(--cvp-highlight);
	color: #111317;
	font-size: 0.78rem;
	font-weight: 900;
	transition:
		min-width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		font-size 0.38s cubic-bezier(0.22, 1, 0.36, 1),
		padding-inline 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header--scrolled .site-header__inner {
	--cvp-header-radius: 24px;
	gap: 1rem;
	width: min(100%, var(--cvp-shell-width));
	padding: 0.58rem 0.8rem;
	border-color: rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(180deg, rgba(27, 31, 36, 0.92), rgba(15, 17, 21, 0.88)),
		rgba(17, 19, 23, 0.84);
	box-shadow:
		0 20px 44px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transform: translateY(-1px);
}

.site-header--scrolled .site-branding .site-branding__logo-fallback,
.site-header--scrolled .site-branding .custom-logo {
	width: clamp(38px, 9vw, 50px);
}

.site-header--scrolled .site-nav__menu {
	gap: 1rem;
}

.site-header--scrolled .site-nav__menu a {
	font-size: 0.85rem;
}

.site-header--scrolled .site-nav__menu a {
	min-height: 2.4rem;
	padding-inline: 0.72rem;
}

.site-header--scrolled .site-header__shop-link,
.site-header--scrolled .site-cart-link {
	padding: 0.72rem 1rem;
	font-size: 0.8rem;
}

.site-header--scrolled .site-cart-count {
	min-width: 1.55rem;
	height: 1.55rem;
	padding-inline: 0.35rem;
	font-size: 0.72rem;
}

.site-header__shop-link:hover,
.site-cart-link:hover,
.button:hover,
.collection-card:hover,
.product-card:hover,
.launch-card:hover,
.experience-card:hover,
.store-empty__collection:hover {
	transform: translateY(-2px);
}

.site-header__shop-link--public-return:hover,
.button--public:hover {
	filter: brightness(1.02);
	box-shadow: 0 20px 40px rgba(185, 255, 87, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.site-main {
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding-top: var(--cvp-space-lg);
	padding-bottom: var(--cvp-space-2xl);
}

.site-main > * {
	width: min(100%, var(--cvp-shell-width));
	margin-inline: auto;
}

.site-main > * + * {
	margin-top: var(--cvp-space-2xl);
}

.site-main--shop > .woocommerce-notices-wrapper {
	width: min(100%, var(--cvp-shell-width));
	margin-inline: auto;
}

.site-main--shop > .woocommerce-notices-wrapper:empty {
	display: none;
}

.site-main--shop > .woocommerce-notices-wrapper + * {
	margin-top: clamp(0.9rem, 1.8vw, 1.25rem);
}

.site-main--shop > .woocommerce-notices-wrapper:empty + * {
	margin-top: 0;
}

.single-product .site-main {
	padding-top: clamp(0.55rem, 1.4vw, 0.9rem);
}

.content-card {
	display: grid;
	gap: var(--cvp-space-md);
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-xl);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	box-shadow: var(--cvp-shadow);
}

.content-card--page {
	width: min(100%, var(--cvp-shell-width));
	max-width: none;
	margin-inline: auto;
}

.content-card--single {
	max-width: min(100%, 960px);
	margin-inline: auto;
}

.content-card--commerce-page {
	width: min(100%, var(--cvp-shell-width));
	max-width: none;
}

.cart-page-extras {
	display: grid;
	gap: var(--cvp-space-md);
	width: min(100%, var(--cvp-shell-width));
	margin: var(--cvp-space-md) auto 0;
}

.cart-checkout-notice {
	position: relative;
	display: grid;
	gap: 0.7rem;
	padding: clamp(1.15rem, 2.2vw, 1.5rem);
	border: 1px solid rgba(255, 139, 102, 0.24);
	border-radius: var(--cvp-radius-xl);
	background:
		linear-gradient(165deg, rgba(255, 156, 116, 0.12), transparent 52%),
		linear-gradient(180deg, rgba(58, 18, 25, 0.98), rgba(24, 8, 12, 0.99));
	box-shadow: var(--cvp-shadow);
	overflow: hidden;
}

.cart-checkout-notice::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(255, 128, 87, 0.3), transparent 34%),
		radial-gradient(circle at bottom right, rgba(255, 179, 71, 0.18), transparent 30%),
		linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
}

.cart-checkout-notice > * {
	position: relative;
	z-index: 1;
}

.cart-checkout-notice .section-kicker {
	margin: 0;
}

.cart-checkout-notice__title,
.cart-checkout-notice__copy {
	margin: 0;
}

.cart-checkout-notice__title {
	font-size: clamp(2rem, 3vw, 2.8rem);
}

.cart-checkout-notice__copy {
	max-width: 32ch;
	color: var(--cvp-text-soft);
	font-size: 1rem;
	line-height: 1.5;
}

.cart-page-extras__actions {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-page-extras__featured {
	width: 100%;
	max-width: none;
}

.cart-page-extras__featured .section-title {
	max-width: 18ch;
}

.cart-page-extras__featured .products,
.cart-page-extras__featured ul.products,
.cart-page-extras__featured .storefront-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--cvp-space-md);
	align-items: stretch;
	width: 100%;
	padding: 0;
	margin: 0;
}

.cart-page-extras__featured .products > li.product,
.cart-page-extras__featured ul.products > li.product,
.cart-page-extras__featured .storefront-product-grid > li.product,
.cart-page-extras__featured .product-card {
	float: none !important;
	width: auto !important;
	min-width: 0;
	margin: 0 !important;
}

.cart-page-extras__featured .product-card {
	height: 100%;
}

.cart-page-extras__featured .product-card__title {
	font-size: clamp(1.85rem, 2.5vw, 2.4rem);
}

.cart-page-extras__featured .product-card__copy {
	max-width: 26ch;
}

.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:not(.is-link),
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button {
	min-height: 3.35rem;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.content-card--cart-page .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:not(.is-link),
.content-card--cart-page .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button,
.content-card--cart-page .wc-block-components-button.wp-element-button.wc-block-cart__submit-button,
.content-card--cart-page .cvp-checkout-disabled {
	border-color: rgba(255, 255, 255, 0.08) !important;
	background: linear-gradient(180deg, rgba(88, 93, 103, 0.78), rgba(50, 54, 61, 0.92)) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
	color: rgba(255, 255, 255, 0.74) !important;
	filter: none !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
	transform: none !important;
}

.content-card__header {
	display: grid;
	gap: 0.85rem;
}

.content-card__title {
	margin: 0;
	font-size: clamp(2.75rem, 5vw, 4.4rem);
}

.content-card__lede {
	margin: 0;
	max-width: 60ch;
	color: var(--cvp-text-muted);
	font-size: 1.02rem;
}

.content-card__body {
	color: var(--cvp-text-muted);
}

.content-card__body > * {
	max-width: 72ch;
}

.content-card--commerce-page .content-card__body > * {
	max-width: none;
}

.content-card__body > :first-child {
	margin-top: 0;
}

.content-card__body > :last-child {
	margin-bottom: 0;
}

.content-card__body p,
.content-card__body ul,
.content-card__body ol,
.content-card__body blockquote {
	margin: 0 0 1rem;
}

.content-card__body ul,
.content-card__body ol {
	padding-left: 1.25rem;
}

.content-card__body li + li {
	margin-top: 0.5rem;
}

.content-card__body h2,
.content-card__body h3,
.content-card__body h4 {
	margin: 2rem 0 0.75rem;
	color: var(--cvp-text);
	font-family: "Bebas Neue", "Arial Narrow", sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 0.95;
	text-transform: uppercase;
}

.content-card__body h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

.content-card__body h3,
.content-card__body h4 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.content-card__body strong {
	color: var(--cvp-text);
}

.content-card__body a {
	color: var(--cvp-accent-strong);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.content-card__body blockquote {
	padding: 1.1rem 1.2rem;
	border-left: 3px solid var(--cvp-accent);
	border-radius: var(--cvp-radius-md);
	background: rgba(255, 255, 255, 0.03);
}

.content-card__body blockquote p:last-child {
	margin-bottom: 0;
}

.content-card__body hr {
	max-width: none;
	margin: 1.75rem 0;
	border: 0;
	border-top: 1px solid var(--cvp-line);
}

.content-card__body table {
	width: 100%;
	max-width: 72ch;
	border-collapse: collapse;
}

.content-card__body th,
.content-card__body td {
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--cvp-line);
	text-align: left;
}

.is-policy-page .content-card__header {
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--cvp-line);
}

.section-kicker {
	margin: 0 0 0.6rem;
	color: var(--cvp-accent-strong);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.display-title,
.section-title,
.content-card__title,
.product-card__title,
.collection-card__title,
.launch-card__title,
.experience-card h3,
.site-footer__eyebrow {
	font-family: "Bebas Neue", "Arial Narrow", sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 0.95;
	text-transform: uppercase;
}

.display-title {
	margin: 0;
	font-size: clamp(3.4rem, 8vw, 6.5rem);
	max-width: 11ch;
}

.display-title--hero {
	font-size: clamp(2.9rem, 5.7vw, 4.95rem);
	max-width: 8.5ch;
	line-height: 0.92;
}

.display-title--hero span {
	display: block;
}

.display-title--compact {
	font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.section-title {
	margin: 0;
	font-size: clamp(2rem, 4.2vw, 3.4rem);
	max-width: 12ch;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: var(--cvp-space-md);
	margin-bottom: var(--cvp-space-lg);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.35rem;
	padding: 0.95rem 1.5rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button--compact {
	min-height: 2.65rem;
	padding: 0.72rem 1.05rem;
	font-size: 0.78rem;
	letter-spacing: 0.05em;
}

.button--accent,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.single-product-summary__purchase .single_add_to_cart_button.button.alt,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:not(.is-link),
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button {
	border-color: rgba(255, 255, 255, 0.14);
	background: linear-gradient(90deg, var(--cvp-button-accent-start) 0%, var(--cvp-button-accent-end) 100%);
	box-shadow: var(--cvp-button-accent-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
	color: var(--cvp-button-accent-text);
}

.site-header__shop-link:hover,
.button--accent:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.single-product-summary__purchase .single_add_to_cart_button.button.alt:hover,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:not(.is-link):hover,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button:hover {
	filter: brightness(1.02);
	box-shadow: 0 20px 40px rgba(185, 255, 87, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button--ghost,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	border-color: var(--cvp-line);
	background: rgba(255, 255, 255, 0.03);
	color: var(--cvp-text);
}

.woocommerce a.button.button,
.woocommerce-page a.button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.35rem;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
}

.woocommerce a.button.button.button--compact,
.woocommerce-page a.button.button.button--compact {
	min-height: 2.65rem;
	padding: 0.72rem 1.05rem;
	font-size: 0.78rem;
	letter-spacing: 0.05em;
}

.woocommerce a.button.button.button--accent,
.woocommerce-page a.button.button.button--accent {
	border-color: rgba(255, 255, 255, 0.14);
	background: linear-gradient(90deg, var(--cvp-button-accent-start) 0%, var(--cvp-button-accent-end) 100%);
	box-shadow: var(--cvp-button-accent-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
	color: var(--cvp-button-accent-text);
}

.woocommerce a.button.button.button--ghost,
.woocommerce-page a.button.button.button--ghost {
	border-color: var(--cvp-line);
	background: rgba(255, 255, 255, 0.03);
	color: var(--cvp-text);
}

.woocommerce a.button.button.button--public,
.woocommerce-page a.button.button.button--public {
	border-color: rgba(255, 255, 255, 0.14);
	background: linear-gradient(90deg, #e9c883 0%, #b9ff57 100%);
	box-shadow: 0 16px 36px rgba(185, 255, 87, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
	color: #13161b;
}

.woocommerce a.button.button.button--accent:hover,
.woocommerce-page a.button.button.button--accent:hover {
	filter: brightness(1.02);
	box-shadow: 0 20px 40px rgba(185, 255, 87, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.woocommerce a.button.button.button--public:hover,
.woocommerce-page a.button.button.button--public:hover {
	filter: brightness(1.02);
	box-shadow: 0 20px 40px rgba(185, 255, 87, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.metric-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--cvp-space-sm);
	margin-top: var(--cvp-space-lg);
}

.metric-card,
.single-stat {
	padding: 1.05rem 1.15rem;
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-md);
	background: rgba(255, 255, 255, 0.03);
}

.metric-card__value,
.single-stat__value {
	display: block;
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.metric-card__label,
.single-stat__label {
	display: block;
	margin-top: 0.25rem;
	color: var(--cvp-text-muted);
	font-size: 0.82rem;
}

.home-hero,
.shop-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: stretch;
}

.home-hero--collections-only {
	display: block;
}

.home-hero__collection-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.8rem, 1.8vw, 1rem);
	align-items: stretch;
}

.home-hero__collection-columns .collection-card--full-row {
	grid-column: 1 / -1;
}

.home-hero__content,
.shop-hero__content {
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-xl);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	box-shadow: var(--cvp-shadow);
}

.home-hero__intro {
	display: grid;
	gap: 0.55rem;
}

.home-story {
	position: relative;
	min-height: clamp(520px, 52vw, 680px);
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-xl);
	background: #15181d;
	overflow: hidden;
	box-shadow: var(--cvp-shadow);
}

.home-story::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(185, 255, 87, 0.12), transparent 20%),
		radial-gradient(circle at bottom left, rgba(233, 200, 131, 0.1), transparent 26%);
	pointer-events: none;
	z-index: 0;
}

.home-hero__lede,
.shop-hero__copy,
.home-story__content p,
.experience-card p,
.launch-card__copy,
.single-product-summary__copy,
.store-empty__copy {
	color: var(--cvp-text-muted);
}

.vault-hero__content {
	display: grid;
	align-content: start;
}

.vault-hero__hint {
	margin: 0.2rem 0 0;
	color: var(--cvp-text-soft);
	font-size: 0.92rem;
}

.home-hero__lede {
	max-width: 58ch;
	font-size: 1.03rem;
}

.shop-hero__collections {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--cvp-space-md);
}

.home-hero__collections {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(0.8rem, 1.8vw, 1rem);
	align-content: start;
}

.home-hero--collections-only .home-hero__collections {
	height: 100%;
}

.home-hero__collections .collection-card {
	min-height: 220px;
}

.home-hero__collections .collection-card:first-child {
	min-height: 300px;
}

.home-hero--collections-only .home-hero__collection-columns .collection-card {
	min-height: clamp(190px, 18vw, 238px);
	padding: clamp(1rem, 2vw, 1.15rem);
	gap: 0.65rem;
	height: 100%;
}

.home-hero--collections-only .collection-card__title {
	max-width: 7ch;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.home-hero--collections-only .collection-card__description {
	max-width: 24ch;
	font-size: 0.88rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.home-hero--collections-only .collection-card--full-row .collection-card__title {
	max-width: 12ch;
}

.home-hero--collections-only .collection-card--full-row .collection-card__description {
	max-width: 42ch;
}

.home-hero--collections-only .collection-card__meta {
	padding: 0.38rem 0.68rem;
	font-size: 0.76rem;
}

.home-story__media {
	position: absolute;
	inset: 0;
}

.home-story__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(13, 15, 18, 0.98) 0%, rgba(13, 15, 18, 0.92) 22%, rgba(13, 15, 18, 0.66) 44%, rgba(13, 15, 18, 0.26) 70%, rgba(13, 15, 18, 0.08) 100%),
		linear-gradient(180deg, rgba(13, 15, 18, 0.16) 0%, rgba(13, 15, 18, 0.08) 100%);
}

.home-story__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: min(100%, 45%);
	min-height: 100%;
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: calc(var(--cvp-radius-xl) - 8px);
	background: linear-gradient(180deg, rgba(20, 23, 28, 0.68), rgba(18, 20, 25, 0.9));
	backdrop-filter: blur(10px);
}

.home-story__content .section-title {
	max-width: 8ch;
}

.home-story__content p,
.home-story__content .story-quote {
	max-width: 34ch;
}

.collection-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.8rem;
	min-height: 240px;
	padding: 1.25rem;
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-lg);
	background:
		linear-gradient(155deg, rgba(255, 255, 255, 0.08), transparent 55%),
		linear-gradient(180deg, rgba(25, 28, 33, 0.96), rgba(16, 17, 20, 0.98));
	overflow: hidden;
	box-shadow: var(--cvp-shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.collection-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(216, 179, 125, 0.18), transparent 30%),
		radial-gradient(circle at bottom right, rgba(181, 255, 97, 0.12), transparent 25%);
	opacity: 1;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.collection-card--vault {
	background:
		linear-gradient(165deg, rgba(255, 156, 116, 0.12), transparent 52%),
		linear-gradient(180deg, rgba(58, 18, 25, 0.98), rgba(24, 8, 12, 0.99));
	border-color: rgba(255, 139, 102, 0.24);
}

.collection-card--vault::before {
	background:
		radial-gradient(circle at top left, rgba(255, 128, 87, 0.3), transparent 34%),
		radial-gradient(circle at bottom right, rgba(255, 179, 71, 0.18), transparent 30%),
		linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
}

.is-vault-mode .collection-card::before {
	background:
		radial-gradient(circle at top left, rgba(255, 127, 87, 0.2), transparent 30%),
		radial-gradient(circle at bottom right, rgba(255, 179, 71, 0.16), transparent 26%);
}

.collection-card--with-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(17, 19, 23, 0.15) 0%, rgba(17, 19, 23, 0.9) 100%),
		var(--collection-image) center/cover no-repeat;
	opacity: 0.82;
	transform: scale(1) translate3d(0, 0, 0);
	transform-origin: center center;
	filter: saturate(1) brightness(1);
	transition:
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease,
		filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-card > * {
	position: relative;
	z-index: 1;
}

.collection-card--vault > .collection-card__vault-icon {
	z-index: 0;
}

.collection-card:hover {
	border-color: var(--cvp-line-strong);
}

@media (hover: hover) and (pointer: fine) {
	.home-hero__collection-columns .collection-card--with-image:hover::after,
	.home-hero__collection-columns .collection-card--with-image:focus-visible::after {
		transform: scale(1.06) translate3d(1.5%, -1.5%, 0);
		opacity: 0.9;
		filter: saturate(1.08) brightness(1.05);
	}

	.home-hero__collection-columns .collection-card:hover::before,
	.home-hero__collection-columns .collection-card:focus-visible::before {
		transform: scale(1.03);
		opacity: 0.92;
	}
}

@media (prefers-reduced-motion: reduce) {
	.collection-card::before,
	.collection-card--with-image::after {
		transition: none;
	}
}

.collection-card__index {
	position: absolute;
	top: 1rem;
	right: 1rem;
	color: rgba(255, 255, 255, 0.08);
	font-family: "Bebas Neue", "Arial Narrow", sans-serif;
	font-size: clamp(3rem, 6vw, 4.8rem);
	line-height: 0.8;
}

.collection-card__eyebrow,
.launch-card__eyebrow,
.product-card__eyebrow,
.single-product-summary__eyebrow {
	color: var(--cvp-accent-strong);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.collection-card__title {
	margin: 0;
	font-size: clamp(2.15rem, 4vw, 3.1rem);
	max-width: 8ch;
}

.collection-card__description {
	max-width: 30ch;
	margin: 0;
	color: var(--cvp-text-muted);
	font-size: 0.95rem;
}

.collection-card__vault-icon {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	pointer-events: none;
	color: rgba(255, 255, 255, 0.11);
	font-size: clamp(4.8rem, 10vw, 7.8rem);
	transform: translate3d(0, -3%, 0);
}

.collection-card__vault-icon i {
	filter: drop-shadow(0 12px 28px rgba(255, 106, 62, 0.16));
}

.collection-card__meta {
	display: inline-flex;
	width: fit-content;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--cvp-text);
	font-size: 0.8rem;
	font-weight: 700;
}

.collection-card--compact {
	min-height: 210px;
}

.collection-card--compact .collection-card__title {
	max-width: 10ch;
	font-size: clamp(1.95rem, 3vw, 2.65rem);
}

.products,
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--cvp-space-md);
	padding: 0;
	margin: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
	content: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
}

.product-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	overflow: hidden;
	box-shadow: var(--cvp-shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
	border-color: var(--cvp-line-strong);
}

.product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	background: #15181d;
}

.product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card__badge,
.single-product-summary__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	background: var(--cvp-highlight);
	color: #111317;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.7rem;
	padding: 1.15rem;
}

.product-card__title {
	margin: 0;
	font-size: 2rem;
}

.product-card__copy {
	margin: 0;
	color: var(--cvp-text-muted);
	font-size: 0.92rem;
}

.product-card__footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
}

.product-card__footer--button-only {
	justify-content: flex-end;
}

.product-card__price,
.single-product-summary__price-wrap .price {
	color: var(--cvp-text);
	font-size: 1.15rem;
	font-weight: 800;
}

.product-card__price del,
.single-product-summary__price-wrap del {
	color: var(--cvp-text-soft);
	opacity: 0.7;
}

.product-card__price ins,
.single-product-summary__price-wrap ins {
	background: none;
	color: var(--cvp-accent-strong);
	text-decoration: none;
}

.product-card__link,
.launch-card__link {
	flex-shrink: 0;
}

.launch-grid,
.experience-grid,
.store-empty__collections {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--cvp-space-md);
}

.store-404 {
	display: grid;
	gap: var(--cvp-space-md);
	width: min(100%, var(--cvp-shell-width));
	margin-inline: auto;
}

.store-404__hero {
	position: relative;
	grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
	gap: 0;
	padding: 0;
	overflow: hidden;
}

.store-404__hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(242, 214, 127, 0.18), transparent 32%),
		radial-gradient(circle at bottom right, rgba(181, 255, 75, 0.14), transparent 30%),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
	pointer-events: none;
}

.store-404__hero > * {
	position: relative;
	z-index: 1;
}

.store-404__brand,
.store-404__panel {
	display: grid;
	align-content: center;
	gap: 1rem;
	padding: clamp(1.5rem, 3vw, 2.4rem);
}

.store-404__brand {
	border-right: 1px solid var(--cvp-line);
}

.store-404__logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 0.35rem;
}

.store-404__logo .custom-logo,
.store-404__logo .site-branding__logo-fallback {
	width: clamp(88px, 14vw, 124px);
	height: auto;
}

.store-404__brand .display-title {
	max-width: 5ch;
}

.store-404__copy {
	margin: 0;
	max-width: 28ch;
	color: var(--cvp-text-muted);
	font-size: 1rem;
	line-height: 1.55;
}

.store-404__panel .section-title {
	max-width: 8ch;
}

.store-404__panel .content-card__lede {
	max-width: 34ch;
}

.store-404__collections {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--cvp-space-md);
}

.store-404__collection {
	position: relative;
	align-content: start;
	min-height: 100%;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.store-404__collection:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.14);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.store-404__collection .section-kicker {
	margin-bottom: 0.15rem;
}

.store-404__collection-title {
	margin: 0;
	color: var(--cvp-text);
	font-family: "Bebas Neue", "Arial Narrow", sans-serif;
	font-size: clamp(2rem, 3vw, 2.7rem);
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 0.95;
	text-transform: uppercase;
}

.store-404__collection-copy {
	margin: 0;
	color: var(--cvp-text-muted);
	line-height: 1.55;
}

.store-404__collection .button {
	margin-top: auto;
	justify-self: start;
}

.launch-card,
.experience-card {
	padding: 1.35rem;
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	box-shadow: var(--cvp-shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.launch-card__title,
.experience-card h3 {
	margin: 0;
	font-size: 2rem;
}

.launch-card__link {
	width: fit-content;
	margin-top: auto;
}

.home-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 34%;
	filter: saturate(0.94) contrast(1.04) brightness(0.88);
}

.story-quote {
	margin: auto 0 0;
	padding: 1.1rem 1.2rem;
	border-left: 3px solid var(--cvp-accent);
	border-radius: var(--cvp-radius-md);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.story-quote p {
	margin: 0;
	color: var(--cvp-text);
	font-weight: 700;
}

.shop-hero__status {
	margin: 1rem 0 0;
	color: var(--cvp-text-soft);
	font-size: 0.92rem;
}

.shop-results__toolbar {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	margin-bottom: var(--cvp-space-md);
	padding: 1rem 1.1rem;
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-md);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
		rgba(18, 21, 25, 0.88);
	box-shadow:
		0 18px 42px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	overflow: hidden;
}

.shop-results__toolbar::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 0% 50%, rgba(216, 179, 125, 0.1), transparent 22%),
		radial-gradient(circle at 100% 50%, rgba(181, 255, 97, 0.08), transparent 24%),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 3px);
	pointer-events: none;
	opacity: 0.9;
}

.shop-results__toolbar .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
	width: 100%;
}

.shop-results__toolbar .woocommerce-notices-wrapper:empty {
	display: none;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering,
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
	float: none;
	margin: 0;
}

.shop-results__toolbar .woocommerce-result-count,
.shop-results__toolbar .woocommerce-ordering {
	position: relative;
	z-index: 1;
}

.shop-results__toolbar .woocommerce-result-count {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.95rem 1.05rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--cvp-text);
	font-size: 0.98rem;
	font-weight: 700;
}

.shop-results__toolbar .woocommerce-result-count::before {
	content: "";
	flex-shrink: 0;
	width: 0.62rem;
	height: 0.62rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--cvp-button-accent-start), var(--cvp-button-accent-end));
	box-shadow: 0 0 16px rgba(185, 255, 87, 0.28);
}

.shop-results__toolbar .woocommerce-ordering {
	position: relative;
	display: grid;
	gap: 0.38rem;
	min-width: min(100%, 270px);
	padding: 0.7rem 0.85rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.shop-results__toolbar .woocommerce-ordering::before {
	content: "Sort";
	color: var(--cvp-accent-strong);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
}

.shop-results__toolbar .woocommerce-ordering::after {
	content: "\f078";
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	color: var(--cvp-text-soft);
	font-family: "Font Awesome 6 Free";
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
}

.woocommerce .woocommerce-ordering select {
	min-width: 200px;
	padding: 0 2rem 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--cvp-text);
	font-size: 1rem;
	font-weight: 700;
	appearance: none;
	-webkit-appearance: none;
}

.woocommerce-pagination {
	margin-top: var(--cvp-space-lg);
}

.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0;
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.8rem;
	height: 2.8rem;
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--cvp-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--cvp-text);
}

.woocommerce nav.woocommerce-pagination ul li .current {
	border-color: rgba(216, 179, 125, 0.35);
	background: rgba(216, 179, 125, 0.16);
	color: var(--cvp-accent-strong);
}

.store-empty {
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	box-shadow: var(--cvp-shadow);
}

.store-empty__collection {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 1rem;
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-md);
	background: rgba(255, 255, 255, 0.03);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.store-empty__collection span {
	font-weight: 800;
}

.store-empty__collection small {
	color: var(--cvp-text-muted);
}

.breadcrumb-row {
	margin-bottom: 1rem;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-breadcrumb a {
	color: var(--cvp-text-soft);
	font-size: 0.84rem;
}

.single-product-shell {
	display: grid;
	gap: var(--cvp-space-xl);
}

.single-product-hero {
	display: grid;
	gap: var(--cvp-space-lg);
}

.single-product-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: clamp(1.25rem, 3vw, 2.25rem);
	align-items: start;
}

.single-product-gallery .woocommerce-product-gallery {
	float: none !important;
	width: auto !important;
	padding: 1.15rem;
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-xl);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
		#171a1f;
	box-shadow: var(--cvp-shadow);
}

.single-product-gallery .woocommerce-product-gallery__image a,
.single-product-gallery .woocommerce-product-gallery__image img {
	border-radius: calc(var(--cvp-radius-lg) - 4px);
}

.single-product-gallery .woocommerce-product-gallery__trigger {
	display: none !important;
}

.single-product-gallery .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0.9rem 0 0;
	padding: 0;
	list-style: none;
}

.single-product-gallery .flex-control-thumbs li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-product-gallery .flex-control-thumbs img {
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-sm);
	opacity: 0.72;
}

.single-product-summary {
	position: sticky;
	top: 6.75rem;
	display: grid;
	gap: 1rem;
	padding: clamp(1.4rem, 3vw, 2rem);
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-xl);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	box-shadow: var(--cvp-shadow);
}

.single-product-summary__breadcrumbs {
	margin: 0 0 0.15rem;
}

.single-product-summary__breadcrumbs .woocommerce-breadcrumb,
.single-product-summary__breadcrumbs .woocommerce-breadcrumb a {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.single-product-summary__breadcrumbs .woocommerce-breadcrumb {
	margin: 0;
	color: var(--cvp-text-soft);
}

.single-product-summary__breadcrumbs .woocommerce-breadcrumb a {
	color: var(--cvp-text-soft);
}

.single-product-summary__breadcrumbs .woocommerce-breadcrumb a:hover {
	color: var(--cvp-text);
}

.single-product-summary__price-wrap .price {
	margin: 0;
}

.single-product-summary__availability {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--cvp-text);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.single-product-summary__availability i {
	font-size: 1rem;
}

.single-product-summary__availability.is-available i {
	color: #86ee6a;
}

.single-product-summary__availability.is-coming-soon i {
	color: #ffb15d;
}

.single-product-summary__availability.is-unavailable i {
	color: #f08a8a;
}

.single-product-summary__availability-note {
	margin: -0.35rem 0 0.15rem 1.65rem;
	color: var(--cvp-text-soft);
	font-size: 0.92rem;
	line-height: 1.45;
}

.single-product-summary__fulfillment-note {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin: -0.15rem 0 0.15rem;
	padding: 0.7rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--cvp-text-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.single-product-summary__fulfillment-note i {
	margin-top: 0.1rem;
	color: var(--cvp-accent-strong);
	font-size: 0.82rem;
}

.single-product-summary__purchase form.cart {
	display: grid;
	gap: 1rem;
	margin-bottom: 0;
}

.single-product-summary__purchase .variations {
	margin: 0;
	width: 100%;
}

.single-product-summary__purchase .variations tbody,
.single-product-summary__purchase .variations tr {
	display: block;
	width: 100%;
}

.single-product-summary__purchase .variations th,
.single-product-summary__purchase .variations td {
	display: block;
	width: 100%;
	padding: 0 0 0.75rem;
	border: 0;
}

.single-product-summary__purchase .variations td.value {
	position: relative;
	padding-bottom: 0;
}

.single-product-summary__purchase .variations label {
	display: block;
	margin-bottom: 0.55rem;
	color: var(--cvp-text-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.single-product-summary__purchase .variations select {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid var(--cvp-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--cvp-text);
}

.js .single-product-summary__purchase .variations select.cvp-variation-select--enhanced {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	border: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
}

.cvp-variation-picker {
	display: grid;
	gap: 0;
	width: 100%;
}

.cvp-variation-option {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	width: 100%;
	padding: 0.95rem 1rem;
	margin-top: -1px;
	border: 0;
	border-top: 1px solid var(--cvp-line);
	border-bottom: 1px solid var(--cvp-line);
	border-radius: 0;
	background: transparent;
	color: var(--cvp-text);
	text-align: left;
	cursor: pointer;
	transition:
		background 0.22s ease,
		color 0.22s ease,
		border-color 0.22s ease,
		transform 0.22s ease;
}

.cvp-variation-option:first-child {
	margin-top: 0;
}

.cvp-variation-option:hover {
	background: rgba(255, 255, 255, 0.03);
}

.cvp-variation-option:focus-visible {
	outline: 2px solid var(--cvp-accent-strong);
	outline-offset: 2px;
}

.cvp-variation-option.is-selected {
	border-color: rgba(255, 255, 255, 0.16);
	background: linear-gradient(90deg, var(--cvp-button-accent-start), var(--cvp-button-accent-end));
	color: var(--cvp-button-accent-text);
}

.cvp-variation-option:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.cvp-variation-option__label,
.cvp-variation-option__price {
	position: relative;
	z-index: 1;
}

.cvp-variation-option__label {
	font-weight: 800;
	letter-spacing: 0.01em;
}

.cvp-variation-option__price {
	color: var(--cvp-text-muted);
	font-size: 0.95rem;
	font-weight: 700;
}

.cvp-variation-option.is-selected .cvp-variation-option__price {
	color: var(--cvp-button-accent-text);
}

.single-product-summary__purchase .reset_variations {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 0.45rem;
	color: var(--cvp-text-soft);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-product-summary__purchase .reset_variations:hover {
	color: var(--cvp-text-muted);
}

.single-product-summary__purchase .woocommerce-variation {
	display: grid;
	gap: 0;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	min-height: 0 !important;
}

.single-product-summary__purchase .woocommerce-variation:empty {
	display: none;
}

.single-product-summary__purchase .woocommerce-variation:has(> .woocommerce-variation-description:empty):has(> .woocommerce-variation-price:empty):has(> .woocommerce-variation-availability:empty) {
	display: none;
}

.single-product-summary__purchase .woocommerce-variation.is-empty {
	display: none;
}

.single-product-summary__purchase .woocommerce-variation-price,
.single-product-summary__purchase .woocommerce-variation-availability {
	margin: 0;
}

.single-product-summary__purchase .woocommerce-variation-price .price {
	margin: 0 0 0.35rem;
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1.1;
}

.single-product-summary__purchase .woocommerce-variation-description p {
	margin: 0;
	color: var(--cvp-text-muted);
}

.single-product-summary__purchase .single_variation_wrap {
	display: grid;
	gap: 0.8rem;
}

.single-product-summary__purchase .woocommerce-variation-add-to-cart.variations_button,
.single-product-summary__purchase form.cart:not(.variations_form) {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.single-product-summary__purchase .quantity {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--cvp-line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.single-product-summary__purchase .quantity .qty {
	width: 2.8rem;
	min-width: 2.8rem;
	padding: 0.85rem 0.2rem;
	border: 0;
	border-left: 1px solid var(--cvp-line);
	border-right: 1px solid var(--cvp-line);
	border-radius: 0;
	background: transparent;
	color: var(--cvp-text);
	text-align: center;
	-moz-appearance: textfield;
}

.single-product-summary__purchase .quantity .qty::-webkit-outer-spin-button,
.single-product-summary__purchase .quantity .qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.cvp-qty-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	min-width: 2.5rem;
	height: 3rem;
	border: 0;
	background: transparent;
	color: var(--cvp-text);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.cvp-qty-button:hover {
	background: rgba(255, 255, 255, 0.05);
}

.cvp-qty-button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.cvp-qty-button span {
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
}

.single-product-summary__purchase .single_add_to_cart_button.button.alt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3.45rem;
	padding-inline: 1.4rem;
	border-radius: 20px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-product-summary__purchase .single_add_to_cart_button.button.alt::after {
	content: "\f217";
	font-family: "Font Awesome 6 Free";
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1;
}

.single-product-summary__coming-soon.button.alt,
.single-product-summary__coming-soon.button.alt:hover {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3.45rem;
	padding-inline: 1.4rem;
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(88, 93, 103, 0.78), rgba(50, 54, 61, 0.92));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.74);
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	filter: none;
	cursor: not-allowed;
}

.single-product-summary__coming-soon.button.alt::after {
	content: "\f254";
	font-family: "Font Awesome 6 Free";
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1;
}

body.cvp-modal-open {
	overflow: hidden;
}

.cvp-calendar-notice--suppressed {
	display: none !important;
}

.cvp-modal {
	position: fixed;
	inset: 0;
	z-index: 5000;
	display: grid;
	place-items: center;
	padding: 1.5rem;
}

.cvp-modal[hidden] {
	display: none;
}

.cvp-modal__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 16%, rgba(185, 255, 87, 0.16), transparent 18%),
		radial-gradient(circle at 18% 22%, rgba(233, 200, 131, 0.12), transparent 26%),
		linear-gradient(rgba(13, 15, 18, 0.82), rgba(13, 15, 18, 0.82));
	backdrop-filter: blur(18px);
}

.cvp-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 34rem);
	padding: clamp(2rem, 4vw, 2.6rem);
	border: 1px solid var(--cvp-line-strong);
	border-radius: 2rem;
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
		rgba(24, 27, 32, 0.9);
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.cvp-modal__dialog::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(circle at 74% 18%, rgba(185, 255, 87, 0.12), transparent 22%),
		radial-gradient(circle at 20% 24%, rgba(233, 200, 131, 0.08), transparent 26%),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
	pointer-events: none;
}

.cvp-modal__dialog::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: calc(2rem - 1px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 26%, rgba(255, 255, 255, 0.01) 100%);
	pointer-events: none;
}

.cvp-modal__dialog > * {
	position: relative;
	z-index: 1;
}

.cvp-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--color-text);
	cursor: pointer;
}

.cvp-modal__close:hover {
	background: rgba(255, 255, 255, 0.08);
}

.cvp-modal__kicker {
	margin-bottom: 0.65rem;
}

.cvp-modal__title {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 5vw, 3.75rem);
	line-height: 0.92;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.cvp-modal__title--small {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	line-height: 0.95;
}

.cvp-modal__message {
	margin: 0;
	color: var(--color-muted);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 34ch;
}

.cvp-modal__message--wide {
	max-width: 44ch;
}

.cvp-modal__button {
	margin-top: 1.35rem;
}

.cvp-modal__button--wide {
	width: 100%;
}

.cvp-modal__field {
	display: block;
	margin-top: 1.4rem;
}

.cvp-modal__input {
	width: 100%;
	min-height: 3.75rem;
	padding: 0 1.15rem;
	border: 1px solid var(--cvp-line-strong);
	border-radius: 1.25rem;
	background: rgba(12, 14, 18, 0.55);
	color: var(--cvp-text);
	font: inherit;
	font-size: 1rem;
}

.cvp-modal__input::placeholder {
	color: rgba(239, 233, 226, 0.46);
}

.cvp-modal__input:focus {
	outline: none;
	border-color: rgba(185, 255, 87, 0.55);
	box-shadow: 0 0 0 3px rgba(185, 255, 87, 0.14);
}

.cvp-modal__error {
	margin: 0.75rem 0 0;
	color: #ffb4a4;
	font-size: 0.92rem;
	font-weight: 700;
}

.cvp-modal__actions {
	margin-top: 1.1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.cvp-modal__actions .cvp-modal__button {
	flex: 1 1 12rem;
	margin-top: 0;
}

.wp-block-woocommerce-cart .cvp-restricted-cart-quantity-row .wc-block-components-quantity-selector {
	display: none !important;
}

.wp-block-woocommerce-cart .cvp-cart-quantity-static {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 5rem;
	min-height: 2.75rem;
	padding: 0.7rem 1rem;
	border: 1px solid var(--cvp-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--cvp-text);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.wp-block-woocommerce-cart .cvp-restricted-cart-quantity-row .wc-block-cart-item__remove-link {
	margin-top: 0.75rem;
}

.single-product-summary__meta {
	padding-top: 0.5rem;
	border-top: 1px solid var(--cvp-line);
	color: var(--cvp-text-muted);
}

.single-product-summary__meta .posted_in,
.single-product-summary__meta .tagged_as {
	display: block;
	margin-top: 0.35rem;
}

.single-product-summary__meta .sku_wrapper {
	display: none;
}

.store-panel-group {
	display: grid;
	gap: 0.85rem;
}

.store-panel {
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-lg);
	background: rgba(255, 255, 255, 0.03);
	overflow: hidden;
}

.store-panel summary {
	position: relative;
	padding: 1.1rem 1.2rem;
	cursor: pointer;
	list-style: none;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.store-panel summary::-webkit-details-marker {
	display: none;
}

.store-panel summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 1.2rem;
	transform: translateY(-50%);
	color: var(--cvp-accent-strong);
	font-size: 1.2rem;
}

.store-panel[open] summary::after {
	content: "-";
}

.store-panel__content {
	padding: 0 1.2rem 1.2rem;
	color: var(--cvp-text-muted);
}

.store-panel__content > :first-child {
	margin-top: 0;
}

.store-panel__content > :last-child {
	margin-bottom: 0;
}

.single-product-related > .related.products {
	display: block;
	width: 100%;
}

.single-product-related > .related.products > h2 {
	display: none;
}

.single-product-related > .related.products > .products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
}

.single-product-related > .related.products > .products > li.product {
	width: auto;
	margin: 0;
}

.woocommerce table.shop_attributes {
	border: 0;
	margin: 0;
}

.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes th {
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--cvp-line);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: 1rem 1rem 1rem 3rem;
	margin: 0 0 1rem;
	border: 1px solid var(--cvp-line);
	border-radius: var(--cvp-radius-md);
	background: rgba(255, 255, 255, 0.04);
	color: var(--cvp-text);
}

.woocommerce-error {
	border-color: rgba(255, 126, 118, 0.26);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	top: 1rem;
	left: 1rem;
}

.site-footer {
	padding-top: var(--cvp-space-md);
	padding-bottom: var(--cvp-space-xl);
}

.site-footer__inner {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: var(--cvp-space-lg);
	padding: clamp(1.4rem, 3vw, 2rem);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--cvp-radius-xl);
	background: linear-gradient(180deg, rgba(29, 32, 38, 0.96), rgba(12, 14, 18, 0.98));
	box-shadow:
		0 34px 90px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	overflow: hidden;
}

.site-footer__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 100% 100%, rgba(181, 255, 97, 0.22) 0%, rgba(181, 255, 97, 0.14) 12%, transparent 34%),
		radial-gradient(circle at 0% 0%, rgba(233, 200, 131, 0.08) 0%, transparent 24%),
		linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 38%),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
	pointer-events: none;
	z-index: 0;
}

.is-vault-mode .site-footer__inner::before {
	background:
		radial-gradient(circle at 100% 100%, rgba(255, 122, 72, 0.28) 0%, rgba(255, 122, 72, 0.16) 12%, transparent 36%),
		radial-gradient(circle at 0% 0%, rgba(255, 183, 102, 0.12) 0%, transparent 24%),
		linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 38%),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
}

.site-footer__inner::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: calc(var(--cvp-radius-xl) - 1px);
	border: 1px solid rgba(255, 255, 255, 0.04);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 26%, rgba(255, 255, 255, 0.01) 100%);
	pointer-events: none;
	z-index: 0;
}

.site-footer__inner > * {
	position: relative;
	z-index: 1;
}

.site-footer__brand {
	display: grid;
	gap: 1rem;
}

.site-footer__group {
	display: grid;
	gap: 0.85rem;
	align-content: start;
}

.site-footer__accordion {
	border: 0;
}

.site-footer__accordion-summary {
	position: relative;
	list-style: none;
	cursor: default;
}

.site-footer__accordion-summary::-webkit-details-marker {
	display: none;
}

.site-footer__accordion-panel {
	display: grid;
	gap: 0.85rem;
}

.site-footer__logo .custom-logo,
.site-footer__logo .site-branding__logo-fallback {
	width: min(120px, 28vw);
}

.site-footer__description,
.site-footer__support-note,
.site-footer__credit,
.site-footer__detail,
.site-footer__legal {
	margin: 0;
	color: var(--cvp-text-muted);
}

.site-footer__support-note {
	max-width: 32ch;
}

.site-footer__heading {
	margin: 0;
	color: var(--cvp-text);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-footer__menu--stacked {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.site-footer__menu--stacked .menu-item {
	width: 100%;
}

.site-footer__group--details {
	gap: 0.75rem;
}

.site-footer__detail strong {
	color: var(--cvp-text);
	font-weight: 800;
}

.site-footer__cta {
	display: inline-flex;
	width: fit-content;
	margin-top: 0.25rem;
	color: var(--cvp-accent-strong);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-footer__bottom {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.js .home-hero__content,
.js .home-hero__collection-columns .collection-card,
.js .home-story__media,
.js .home-story__content {
	animation: rise-in 0.75s ease both;
}

.js .home-hero__collection-columns .collection-card:nth-child(2) {
	animation-delay: 0.08s;
}

.js .home-hero__collection-columns .collection-card:nth-child(3),
.js .home-hero__collection-columns .collection-card:nth-child(4) {
	animation-delay: 0.16s;
}

.js .home-hero__collection-columns .collection-card:nth-child(5),
.js .home-hero__collection-columns .collection-card:nth-child(6) {
	animation-delay: 0.24s;
}

@keyframes rise-in {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.coming-soon-page {
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, rgba(233, 200, 131, 0.16), transparent 28%),
		radial-gradient(circle at top right, rgba(185, 255, 87, 0.12), transparent 20%),
		linear-gradient(180deg, #101215 0%, #13161b 45%, #0f1114 100%);
}

.coming-soon-page::before,
.coming-soon-page::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
}

.coming-soon-page::before {
	background:
		radial-gradient(circle at 72% 18%, rgba(185, 255, 87, 0.11), transparent 18%),
		radial-gradient(circle at 18% 26%, rgba(233, 200, 131, 0.1), transparent 24%),
		linear-gradient(rgba(13, 15, 18, 0.88), rgba(13, 15, 18, 0.88));
	backdrop-filter: blur(14px);
}

.coming-soon-page::after {
	opacity: 0.25;
	background:
		linear-gradient(140deg, transparent 0 38%, rgba(255, 255, 255, 0.04) 38% 44%, transparent 44% 100%),
		radial-gradient(circle at 30% 70%, rgba(185, 255, 87, 0.08), transparent 22%);
}

.coming-soon-screen {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	min-height: 100vh;
	padding: clamp(1.25rem, 4vw, 2rem);
}

.coming-soon-panel {
	position: relative;
	display: grid;
	gap: 1rem;
	justify-items: center;
	width: min(100%, 560px);
	padding: clamp(2rem, 5vw, 3rem);
	border: 1px solid var(--cvp-line-strong);
	border-radius: 32px;
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
		rgba(24, 27, 32, 0.9);
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
	text-align: center;
	isolation: isolate;
}

.coming-soon-panel::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid var(--cvp-line);
	border-radius: 22px;
	pointer-events: none;
}

.coming-soon-panel::after {
	content: "";
	position: absolute;
	right: 1.1rem;
	bottom: 1.1rem;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(181, 255, 97, 0.18), transparent 68%);
	filter: blur(10px);
	pointer-events: none;
}

.coming-soon-panel > * {
	position: relative;
	z-index: 1;
}

.coming-soon-panel__logo {
	display: flex;
	justify-content: center;
	margin-bottom: 0.25rem;
}

.coming-soon-panel__logo .custom-logo,
.coming-soon-panel__logo .site-branding__logo-fallback {
	width: min(170px, 42vw);
	height: auto;
}

.coming-soon-panel__title {
	max-width: none;
}

.coming-soon-panel__lede {
	max-width: 34ch;
	margin: 0;
	color: var(--cvp-text-muted);
	font-size: 1rem;
}

.coming-soon-form {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.9rem;
	width: 100%;
	margin-top: 0.5rem;
}

.coming-soon-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

.coming-soon-form__input {
	min-height: 3.35rem;
	padding: 0.95rem 1.15rem;
	border: 1px solid var(--cvp-line-strong);
	border-radius: 999px;
	background: rgba(15, 17, 20, 0.82);
	color: var(--cvp-text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.coming-soon-form__input::placeholder {
	color: var(--cvp-text-soft);
}

.coming-soon-form__input:focus {
	outline: 0;
	border-color: rgba(216, 179, 125, 0.5);
	box-shadow: 0 0 0 3px rgba(216, 179, 125, 0.15);
}

.coming-soon-form__button {
	width: 100%;
}

.coming-soon-form__error,
.coming-soon-form__hint {
	margin: 0;
	font-size: 0.92rem;
}

.coming-soon-form__error {
	color: var(--cvp-danger);
	font-weight: 700;
}

.coming-soon-form__hint {
	color: var(--cvp-text-muted);
}

.coming-soon-panel__login {
	color: var(--cvp-accent-strong);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.vault-gate-page {
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, rgba(255, 112, 76, 0.24), transparent 30%),
		radial-gradient(circle at top right, rgba(255, 176, 70, 0.18), transparent 22%),
		radial-gradient(circle at 50% 100%, rgba(167, 24, 40, 0.12), transparent 32%),
		linear-gradient(180deg, #190f13 0%, #1d1014 45%, #12090d 100%);
}

.vault-gate-page::before,
.vault-gate-page::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
}

.vault-gate-page::before {
	background:
		radial-gradient(circle at 72% 18%, rgba(255, 141, 86, 0.24), transparent 20%),
		radial-gradient(circle at 18% 26%, rgba(255, 194, 95, 0.16), transparent 24%),
		linear-gradient(rgba(17, 10, 13, 0.84), rgba(17, 10, 13, 0.84));
	backdrop-filter: blur(14px);
}

.vault-gate-page::after {
	opacity: 0.34;
	background:
		linear-gradient(140deg, transparent 0 38%, rgba(255, 255, 255, 0.04) 38% 44%, transparent 44% 100%),
		radial-gradient(circle at 30% 70%, rgba(255, 122, 72, 0.14), transparent 24%);
}

.vault-gate-screen {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	min-height: 100vh;
	padding: clamp(1.25rem, 4vw, 2rem);
}

.vault-gate-panel {
	position: relative;
	display: grid;
	gap: 1rem;
	justify-items: center;
	width: min(100%, 560px);
	padding: clamp(2rem, 5vw, 3rem);
	border: 1px solid rgba(255, 176, 135, 0.3);
	border-radius: 32px;
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
		rgba(25, 18, 22, 0.92);
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
	text-align: center;
	isolation: isolate;
}

.vault-gate-panel::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255, 176, 135, 0.14);
	border-radius: 22px;
	pointer-events: none;
}

.vault-gate-panel::after {
	content: "";
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 126, 88, 0.3), transparent 70%);
	filter: blur(10px);
	pointer-events: none;
}

.vault-gate-panel > * {
	position: relative;
	z-index: 1;
}

.vault-gate-panel__logo {
	display: flex;
	justify-content: center;
	margin-bottom: 0.25rem;
}

.vault-gate-panel__logo .custom-logo,
.vault-gate-panel__logo .site-branding__logo-fallback {
	width: min(170px, 42vw);
	height: auto;
}

.vault-gate-panel__title {
	max-width: none;
}

.vault-gate-panel__lede {
	max-width: 34ch;
	margin: 0;
	color: var(--cvp-text-muted);
	font-size: 1rem;
}

.vault-gate-form {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.9rem;
	width: 100%;
	margin-top: 0.5rem;
}

.vault-gate-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

.vault-gate-form__input {
	min-height: 3.35rem;
	padding: 0.95rem 1.15rem;
	border: 1px solid rgba(255, 176, 135, 0.22);
	border-radius: 999px;
	background: rgba(17, 11, 14, 0.82);
	color: var(--cvp-text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.vault-gate-form__input::placeholder {
	color: var(--cvp-text-soft);
}

.vault-gate-form__input:focus {
	outline: 0;
	border-color: rgba(255, 176, 135, 0.5);
	box-shadow: 0 0 0 3px rgba(255, 138, 99, 0.15);
}

.vault-gate-form__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.35rem;
	padding: 0.95rem 1.5rem;
	border: 1px solid rgba(255, 176, 135, 0.18);
	border-radius: 999px;
	background: linear-gradient(90deg, #ff6b4a 0%, #ffb347 100%);
	box-shadow: 0 18px 38px rgba(255, 123, 79, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.26);
	color: #13161b;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.vault-gate-form__button:hover {
	filter: brightness(1.02);
	box-shadow: 0 22px 42px rgba(255, 123, 79, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vault-gate-form__error,
.vault-gate-form__hint {
	margin: 0;
	font-size: 0.92rem;
}

.vault-gate-form__error {
	color: #ff9588;
	font-weight: 700;
}

.vault-gate-form__hint {
	color: var(--cvp-text-muted);
}

.site-main--vault .storefront-product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 961px) {
	.home-hero__content {
		display: flex;
		flex-direction: column;
		min-height: 100%;
	}

	.home-hero__content .button-row {
		margin-top: auto;
	}
}

@media (max-width: 1180px) {
	.products,
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.single-product-related > .related.products > .products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.launch-grid,
	.experience-grid,
	.store-empty__collections {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.site-footer__brand,
	.site-footer__bottom {
		grid-column: 1 / -1;
	}
}

@media (max-width: 960px) {
	.site-header__inner {
		--cvp-header-radius: 26px;
		z-index: 120;
		grid-template-columns: auto auto auto;
		width: min(100%, 100%);
		padding: 0.72rem 0.8rem;
	}

	body.nav-is-open .site-header {
		z-index: 120;
	}

	.site-nav-toggle {
		display: inline-flex;
	}

	.site-nav-backdrop {
		position: fixed;
		inset: 0;
		z-index: 110;
		padding: 0;
		border: 0;
		background:
			linear-gradient(180deg, rgba(10, 12, 15, 0.28), rgba(10, 12, 15, 0.5)),
			radial-gradient(circle at top center, rgba(255, 255, 255, 0.06), transparent 34%);
		backdrop-filter: blur(14px) saturate(120%);
		-webkit-backdrop-filter: blur(14px) saturate(120%);
		opacity: 0;
		pointer-events: none;
		cursor: default;
		transition: opacity 0.22s ease;
	}

	body.is-vault-mode .site-nav-backdrop {
		background:
			linear-gradient(180deg, rgba(18, 10, 12, 0.24), rgba(18, 10, 12, 0.54)),
			radial-gradient(circle at top center, rgba(255, 139, 92, 0.08), transparent 36%);
	}

	body.nav-is-open .site-nav-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.site-nav {
		position: fixed;
		top: 5.75rem;
		right: 1rem;
		left: 1rem;
		z-index: 130;
		justify-content: flex-start;
		padding: 1rem;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 24px;
		background:
			linear-gradient(180deg, rgba(31, 35, 41, 0.96), rgba(17, 20, 24, 0.94)),
			rgba(18, 20, 24, 0.95);
		backdrop-filter: blur(18px) saturate(120%);
		-webkit-backdrop-filter: blur(18px) saturate(120%);
		box-shadow:
			0 32px 70px rgba(0, 0, 0, 0.34),
			inset 0 1px 0 rgba(255, 255, 255, 0.05);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-0.7rem) scale(0.985);
		transition: opacity 0.22s ease, transform 0.22s ease;
	}

	body.is-vault-mode .site-nav {
		background:
			linear-gradient(180deg, rgba(40, 25, 22, 0.96), rgba(24, 17, 18, 0.94)),
			rgba(18, 20, 24, 0.95);
	}

	body.nav-is-open .site-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0) scale(1);
	}

	.site-nav__menu {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.home-hero,
	.shop-hero,
	.single-product-hero__grid {
		grid-template-columns: 1fr;
	}

	.home-hero__collection-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.home-hero--collections-only .home-hero__collection-columns .collection-card {
		min-height: clamp(160px, 27vw, 205px);
		padding: 0.95rem 0.9rem;
		gap: 0.5rem;
	}

	.home-hero--collections-only .collection-card__eyebrow {
		font-size: 0.68rem;
		letter-spacing: 0.12em;
	}

	.home-hero--collections-only .collection-card__title {
		max-width: 6.8ch;
		font-size: clamp(1.35rem, 4.2vw, 2rem);
	}

	.home-hero--collections-only .collection-card__description {
		max-width: none;
		font-size: 0.78rem;
		line-height: 1.35;
	}

	.home-hero--collections-only .collection-card__meta {
		padding: 0.3rem 0.58rem;
		font-size: 0.7rem;
	}

	.site-nav--static {
		display: none;
	}

	.home-story {
		min-height: 0;
		padding: 0;
	}

	.home-story::before {
		background:
			radial-gradient(circle at top right, rgba(185, 255, 87, 0.12), transparent 20%),
			radial-gradient(circle at bottom left, rgba(233, 200, 131, 0.1), transparent 26%);
	}

	.home-story__media {
		position: relative;
		min-height: 360px;
	}

	.home-story__media::after {
		background:
			linear-gradient(180deg, rgba(13, 15, 18, 0.1) 0%, rgba(13, 15, 18, 0.18) 38%, rgba(13, 15, 18, 0.62) 72%, rgba(13, 15, 18, 0.94) 100%);
	}

	.home-story__content {
		width: auto;
		min-height: 0;
		padding: 1.4rem;
		border: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0 0 var(--cvp-radius-xl) var(--cvp-radius-xl);
		background: linear-gradient(180deg, rgba(20, 23, 28, 0.86), rgba(18, 20, 25, 0.95));
		backdrop-filter: none;
	}

	.home-story__content .section-title,
	.home-story__content p,
	.home-story__content .story-quote {
		max-width: none;
	}

	.single-product-summary {
		position: static;
	}
}

@media (max-width: 720px) {
	.site-notice-bar {
		display: none;
	}

	.site-header {
		top: 0.55rem;
		padding-top: 0.4rem;
		padding-bottom: 0.35rem;
	}

	.site-nav {
		top: 5.15rem;
	}

	.site-notice-bar__inner,
	.site-header__meta {
		flex-wrap: wrap;
	}

	.site-header__inner {
		--cvp-header-radius: 24px;
		padding: 0.68rem 0.72rem;
	}

	.site-header__shop-link {
		display: none;
	}

	.site-header__shop-link--public-return {
		display: none;
	}

	.metric-row,
	.home-hero__collections,
	.shop-hero__collections,
	.launch-grid,
	.experience-grid,
	.store-empty__collections,
	.single-product-related > .related.products > .products {
		grid-template-columns: 1fr;
	}

	.section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.shop-results__toolbar {
		grid-template-columns: 1fr;
	}

	.shop-results__toolbar .woocommerce-result-count,
	.shop-results__toolbar .woocommerce-ordering {
		width: 100%;
	}

	body.post-type-archive-product .shop-results__toolbar,
	body.tax-product_cat .shop-results__toolbar {
		display: none;
	}

	body.post-type-archive-product .products,
	body.post-type-archive-product .woocommerce ul.products,
	body.post-type-archive-product .woocommerce-page ul.products,
	body.tax-product_cat .products,
	body.tax-product_cat .woocommerce ul.products,
	body.tax-product_cat .woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
		align-items: stretch;
		justify-items: stretch;
		width: 100%;
	}

	body.post-type-archive-product .products > li.product,
	body.post-type-archive-product .woocommerce ul.products > li.product,
	body.post-type-archive-product .woocommerce-page ul.products > li.product,
	body.tax-product_cat .products > li.product,
	body.tax-product_cat .woocommerce ul.products > li.product,
	body.tax-product_cat .woocommerce-page ul.products > li.product {
		float: none !important;
		width: 100% !important;
		max-width: none !important;
		min-width: 0;
		margin: 0 !important;
	}

	body.post-type-archive-product .product-card__body,
	body.tax-product_cat .product-card__body {
		gap: 0.45rem;
		padding: 0.78rem;
	}

	body.post-type-archive-product .product-card__eyebrow,
	body.tax-product_cat .product-card__eyebrow {
		font-size: 0.62rem;
		letter-spacing: 0.12em;
	}

	body.post-type-archive-product .product-card__title,
	body.tax-product_cat .product-card__title {
		font-size: clamp(1.3rem, 6vw, 1.72rem);
		line-height: 0.95;
	}

	body.post-type-archive-product .product-card__copy,
	body.tax-product_cat .product-card__copy {
		display: none;
	}

	body.post-type-archive-product .product-card__footer,
	body.tax-product_cat .product-card__footer {
		gap: 0.55rem;
	}

	body.post-type-archive-product .product-card__price,
	body.tax-product_cat .product-card__price {
		font-size: 1rem;
	}

	body.post-type-archive-product .product-card__link,
	body.tax-product_cat .product-card__link {
		width: 100%;
		justify-content: center;
		padding-inline: 0.72rem;
	}

	.cart-page-extras__actions .button {
		width: 100%;
		justify-content: center;
	}

	.cart-page-extras__featured .section-title {
		max-width: none;
	}

	.cart-page-extras__featured .products,
	.cart-page-extras__featured ul.products,
	.cart-page-extras__featured .storefront-product-grid {
		grid-template-columns: 1fr;
	}

	.coming-soon-screen {
		padding: 1.9rem 1.55rem;
	}

	.vault-gate-screen {
		padding: 1.9rem 1.55rem;
	}

	.coming-soon-panel {
		width: min(100%, 344px);
		padding: 1.35rem 1.08rem;
		border-radius: 22px;
	}

	.vault-gate-panel {
		width: min(100%, 344px);
		padding: 1.35rem 1.08rem;
		border-radius: 22px;
	}

	.coming-soon-panel::before {
		inset: 10px;
		border-radius: 16px;
	}

	.vault-gate-panel::before {
		inset: 10px;
		border-radius: 16px;
	}

	.coming-soon-panel__logo .custom-logo,
	.coming-soon-panel__logo .site-branding__logo-fallback {
		width: min(118px, 34vw);
	}

	.vault-gate-panel__logo .custom-logo,
	.vault-gate-panel__logo .site-branding__logo-fallback {
		width: min(118px, 34vw);
	}

	.coming-soon-panel__lede {
		max-width: 24ch;
		font-size: 0.88rem;
	}

	.vault-gate-panel__lede {
		max-width: 24ch;
		font-size: 0.88rem;
	}

	.coming-soon-form__row {
		grid-template-columns: 1fr;
	}

	.vault-gate-form__row {
		grid-template-columns: 1fr;
	}

	.coming-soon-form__button {
		width: 100%;
	}

	.vault-gate-form__button {
		width: 100%;
	}

	.site-main--vault .storefront-product-grid {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__logo {
		display: flex;
		justify-content: center;
	}

	.site-footer__accordion {
		gap: 0;
		padding-top: 0.15rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.site-footer__accordion:first-of-type {
		border-top: 0;
	}

	.site-footer__accordion-summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0.85rem 0;
		cursor: pointer;
	}

	.site-footer__accordion-summary::after {
		content: "+";
		color: var(--cvp-accent-strong);
		font-size: 1.1rem;
		font-weight: 700;
		line-height: 1;
	}

	.site-footer__accordion[open] .site-footer__accordion-summary::after {
		content: "-";
	}

	.site-footer__accordion-panel {
		padding: 0 0 0.55rem;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.collection-card,
	.collection-card--compact {
		min-height: 220px;
	}

	.home-story__media {
		min-height: 300px;
	}

	.home-story__content {
		padding: 1.2rem;
	}

	.single-product .site-main {
		padding-top: 0.4rem;
	}

	.single-product-shell,
	.single-product-hero,
	.single-product-hero__grid {
		gap: 1rem;
	}

	.single-product-gallery .woocommerce-product-gallery {
		padding: 0.9rem;
	}

	.single-product-gallery .flex-control-thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.site-header,
	.site-footer,
	.site-main {
		padding-inline: 1rem;
	}

	.site-notice-bar__inner {
		border-radius: var(--cvp-radius-md);
	}

	.display-title {
		font-size: clamp(2.8rem, 16vw, 4.2rem);
	}

	.home-hero__collection-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	body.post-type-archive-product .products,
	body.post-type-archive-product .woocommerce ul.products,
	body.post-type-archive-product .woocommerce-page ul.products,
	body.tax-product_cat .products,
	body.tax-product_cat .woocommerce ul.products,
	body.tax-product_cat .woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
		align-items: stretch;
		justify-items: stretch;
	}

	body.post-type-archive-product .products > li.product,
	body.post-type-archive-product .woocommerce ul.products > li.product,
	body.post-type-archive-product .woocommerce-page ul.products > li.product,
	body.tax-product_cat .products > li.product,
	body.tax-product_cat .woocommerce ul.products > li.product,
	body.tax-product_cat .woocommerce-page ul.products > li.product {
		float: none !important;
		width: 100% !important;
		max-width: none !important;
		min-width: 0;
		margin: 0 !important;
	}

	body.post-type-archive-product .product-card__body,
	body.tax-product_cat .product-card__body {
		padding: 0.72rem;
	}

	body.post-type-archive-product .product-card__eyebrow,
	body.tax-product_cat .product-card__eyebrow {
		font-size: 0.56rem;
		letter-spacing: 0.1em;
	}

	body.post-type-archive-product .product-card__title,
	body.tax-product_cat .product-card__title {
		font-size: clamp(1.08rem, 6.4vw, 1.48rem);
	}

	body.post-type-archive-product .product-card__price,
	body.tax-product_cat .product-card__price {
		font-size: 0.92rem;
	}

	body.post-type-archive-product .product-card__link,
	body.tax-product_cat .product-card__link {
		min-height: 38px;
		padding-inline: 0.62rem;
		font-size: 0.72rem;
	}

	.home-hero--collections-only .home-hero__collection-columns .collection-card {
		min-height: 148px;
		padding: 0.82rem 0.78rem;
		gap: 0.42rem;
	}

	.home-hero--collections-only .collection-card__eyebrow {
		font-size: 0.6rem;
	}

	.home-hero--collections-only .collection-card__title {
		max-width: 6ch;
		font-size: clamp(1.12rem, 6.4vw, 1.65rem);
	}

	.home-hero--collections-only .collection-card__description {
		display: none;
	}

	.home-hero--collections-only .collection-card__meta {
		padding: 0.28rem 0.5rem;
		font-size: 0.64rem;
	}

	.site-header__inner {
		--cvp-header-radius: 22px;
		gap: 0.75rem;
		padding: 0.62rem 0.65rem;
	}

	.site-nav {
		top: 4.7rem;
	}

	.site-branding .site-branding__logo-fallback,
	.site-branding .custom-logo {
		width: clamp(50px, 16vw, 60px);
	}

	.site-header--scrolled .site-branding .site-branding__logo-fallback,
	.site-header--scrolled .site-branding .custom-logo {
		width: clamp(34px, 10vw, 42px);
	}

	.site-cart-link {
		padding-inline: 0.85rem;
	}

	.site-cart-link__label {
		display: none;
	}

	.coming-soon-screen {
		padding: 2rem 1.2rem;
	}

	.vault-gate-screen {
		padding: 2rem 1.2rem;
	}

	.coming-soon-panel {
		width: min(100%, 288px);
		padding: 1.16rem 0.84rem;
		border-radius: 19px;
	}

	.vault-gate-panel {
		width: min(100%, 288px);
		padding: 1.16rem 0.84rem;
		border-radius: 19px;
	}

	.coming-soon-panel::before {
		inset: 8px;
		border-radius: 13px;
	}

	.vault-gate-panel::before {
		inset: 8px;
		border-radius: 13px;
	}

	.coming-soon-panel::after {
		right: 0.45rem;
		bottom: 0.45rem;
		width: 88px;
		height: 88px;
		opacity: 0.72;
	}

	.coming-soon-panel__logo {
		margin-bottom: 0;
	}

	.coming-soon-panel__logo .custom-logo,
	.coming-soon-panel__logo .site-branding__logo-fallback {
		width: min(102px, 38vw);
	}

	.coming-soon-panel__title {
		font-size: clamp(1.85rem, 10.4vw, 2.65rem);
	}

	.coming-soon-panel__lede {
		max-width: 22ch;
		font-size: 0.74rem;
	}

	.coming-soon-form {
		gap: 0.6rem;
	}

	.coming-soon-form__input,
	.coming-soon-form__button {
		min-height: 2.5rem;
		font-size: 0.8rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}

@media (max-width: 960px) {
	.store-404__hero {
		grid-template-columns: 1fr;
	}

	.store-404__brand {
		border-right: 0;
		border-bottom: 1px solid var(--cvp-line);
	}

	.store-404__collections {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.store-404__brand,
	.store-404__panel {
		padding: 1.25rem 1.05rem;
	}

	.store-404__logo .custom-logo,
	.store-404__logo .site-branding__logo-fallback {
		width: min(96px, 34vw);
	}

	.store-404__brand .display-title {
		max-width: 4.8ch;
	}

	.store-404__panel .section-title {
		max-width: 7ch;
	}
}
