:root {
	--alles-black: #030303;
	--alles-ink: #080808;
	--alles-panel: #101010;
	--alles-panel-2: #161616;
	--alles-line: #2d2d2d;
	--alles-line-strong: #454545;
	--alles-text: #f5f5f2;
	--alles-muted: #a7a7a0;
	--alles-soft: #d7d7d0;
	--alles-silver: #c8c8c2;
	--alles-error: #ff3f46;
	--alles-success: #d7f6dc;
	--alles-radius: 8px;
	--alles-container: min(1320px, calc(100vw - 56px));
	--alles-sticky-offset: 118px;
	--alles-shadow: 0 22px 70px rgba(0, 0, 0, .42);
	--alles-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--alles-button-height: 50px;
	--alles-card-button-height: 46px;
}

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

html {
	background: var(--alles-black);
	scroll-behavior: smooth;
	scroll-padding-top: var(--alles-sticky-offset);
}

body.alles-dark-store {
	margin: 0;
	background: var(--alles-black);
	color: var(--alles-text);
	font-family: var(--alles-font);
	font-size: 16px;
	line-height: 1.55;
	text-rendering: geometricPrecision;
	overflow-x: hidden;
}

body.alles-dark-store img {
	max-width: 100%;
	height: auto;
}

body.alles-dark-store a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: .25em;
}

body.alles-dark-store ::selection {
	background: var(--alles-text);
	color: var(--alles-black);
}

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

.alles-skip-link:focus {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--alles-text);
	color: var(--alles-black);
	clip: auto;
	border-radius: var(--alles-radius);
}

.alles-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	background: rgba(3, 3, 3, .84);
	backdrop-filter: blur(18px);
	transition: background .2s ease, border-color .2s ease;
}

body.admin-bar .alles-site-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .alles-site-header {
		top: 46px;
	}
}

.alles-announcement {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	min-height: 34px;
	padding: 0 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	background: #f5f5f2;
	color: #050505;
	font-size: .72rem;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
}

.alles-announcement span {
	position: relative;
}

.alles-announcement span + span::before {
	content: "";
	position: absolute;
	left: -16px;
	top: 50%;
	width: 4px;
	height: 4px;
	background: currentColor;
	transform: translateY(-50%) rotate(45deg);
}

.alles-site-header.is-scrolled {
	background: rgba(3, 3, 3, .95);
	border-color: rgba(255, 255, 255, .14);
}

.alles-header-inner,
.alles-footer-inner,
.alles-page-shell,
.alles-home > section,
.alles-shop-page > section,
.alles-single-product-page > article,
.alles-single-product-page .alles-single-product {
	width: var(--alles-container);
	margin-inline: auto;
}

.alles-header-inner {
	min-height: 76px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
}

.alles-brand-link,
.alles-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.alles-logo__image {
	width: 48px;
	height: 48px;
	object-fit: cover;
}

.alles-logo--header .alles-logo__image {
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: #030303;
	filter: drop-shadow(0 0 13px rgba(255, 255, 255, .18));
}

.alles-logo--footer .alles-logo__image {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: #030303;
}

.alles-logo__wordmark {
	font-size: .82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
}

.alles-menu,
.alles-footer-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.alles-menu a,
.alles-footer-menu a,
.alles-header-shop {
	color: var(--alles-muted);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
	text-decoration: none;
	transition: color .2s ease;
}

.alles-menu a:hover,
.alles-footer-menu a:hover,
.alles-header-shop:hover {
	color: var(--alles-text);
}

.alles-header-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}

.alles-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--alles-line-strong);
	border-radius: var(--alles-radius);
	color: var(--alles-text);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	text-decoration: none;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.alles-cart-link:hover {
	background: var(--alles-text);
	border-color: var(--alles-text);
	color: var(--alles-black);
	transform: translateY(-1px);
}

.alles-cart-count {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--alles-text);
	color: var(--alles-black);
	font-size: .72rem;
	line-height: 1;
}

.alles-cart-link:hover .alles-cart-count {
	background: var(--alles-black);
	color: var(--alles-text);
}

.alles-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--alles-line);
	border-radius: var(--alles-radius);
	background: transparent;
	color: var(--alles-text);
}

.alles-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
}

.alles-main {
	min-height: 64vh;
}

.alles-home {
	overflow: hidden;
}

.alles-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
	align-items: center;
	gap: 48px;
	min-height: min(720px, calc(100vh - 110px));
	padding: 42px 0 34px;
	border-bottom: 1px solid var(--alles-line);
}

.alles-hero::before {
	content: "ALLES";
	position: absolute;
	right: -4vw;
	top: 20px;
	z-index: -1;
	color: rgba(255, 255, 255, .028);
	font-size: clamp(8rem, 21vw, 18rem);
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
	pointer-events: none;
}

.alles-kicker {
	margin: 0 0 18px;
	color: var(--alles-silver);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.alles-hero h1,
.alles-shop-hero h1,
.alles-section-heading h2,
.alles-fit-guide h2,
.alles-drop h2,
.alles-entry-header h1,
.woocommerce div.product .product_title {
	margin: 0;
	color: var(--alles-text);
	font-weight: 950;
	letter-spacing: 0;
	line-height: .92;
	text-transform: uppercase;
}

.alles-hero h1 {
	max-width: 100%;
	font-size: clamp(4rem, 6.45vw, 6.35rem);
}

.alles-hero__copy {
	max-width: 560px;
	margin: 26px 0 0;
	color: var(--alles-soft);
	font-size: clamp(1.03rem, 1.8vw, 1.28rem);
}

.alles-hero__actions,
.alles-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.alles-hero__actions {
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 34px;
}

.alles-button,
.alles-product-card__actions .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.single_add_to_cart_button,
.woocommerce .checkout-button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	height: var(--alles-button-height);
	padding: 0 22px !important;
	border: 1px solid var(--alles-text);
	border-radius: var(--alles-radius);
	background: var(--alles-text);
	color: var(--alles-black);
	font-family: var(--alles-font);
	font-size: .8rem;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1 !important;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.alles-button--primary,
.woocommerce button.single_add_to_cart_button,
.woocommerce .checkout-button,
.woocommerce-checkout #payment #place_order {
	color: var(--alles-black) !important;
}

.alles-single-purchase .single_add_to_cart_button,
.alles-product-card__actions .button,
.woocommerce .checkout-button,
.woocommerce-checkout #payment #place_order {
	background: var(--alles-text) !important;
	border-color: var(--alles-text) !important;
	color: var(--alles-black) !important;
	opacity: 1 !important;
	text-decoration: none !important;
}

.alles-button:hover,
.alles-product-card__actions .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.single_add_to_cart_button:hover,
.woocommerce .checkout-button:hover,
.wp-block-button__link:hover {
	background: transparent;
	color: var(--alles-text);
	transform: translateY(-1px);
}

.alles-button:focus-visible,
.alles-cart-link:focus-visible,
.alles-menu-toggle:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.wp-block-button__link:focus-visible {
	outline: 2px solid rgba(245, 245, 242, .7);
	outline-offset: 3px;
}

.alles-button--primary:hover,
.woocommerce button.single_add_to_cart_button:hover,
.woocommerce .checkout-button:hover,
.woocommerce-checkout #payment #place_order:hover {
	color: var(--alles-text) !important;
}

.alles-single-purchase .single_add_to_cart_button:hover,
.alles-product-card__actions .button:hover,
.woocommerce .checkout-button:hover,
.woocommerce-checkout #payment #place_order:hover {
	background: transparent !important;
	color: var(--alles-text) !important;
}

.alles-button--ghost,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: transparent;
	color: var(--alles-text);
	border-color: var(--alles-line-strong);
}

.alles-button--ghost:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	background: var(--alles-text);
	border-color: var(--alles-text);
	color: var(--alles-black);
}

.alles-hero__specs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	max-width: 620px;
	margin-top: 38px;
	border: 1px solid var(--alles-line);
	background: var(--alles-line);
}

.alles-hero__specs span {
	min-height: 62px;
	display: grid;
	place-items: center;
	padding: 10px;
	background: var(--alles-black);
	color: var(--alles-muted);
	font-size: .72rem;
	font-weight: 950;
	text-align: center;
	text-transform: uppercase;
}

.alles-hero__visual {
	min-width: 0;
}

.alles-hoodie-mock {
	position: relative;
	margin: 0;
	background: linear-gradient(180deg, #111, #050505);
	border: 1px solid var(--alles-line);
	border-radius: var(--alles-radius);
	box-shadow: var(--alles-shadow);
	overflow: hidden;
}

.alles-hoodie-mock img {
	display: block;
	width: 100%;
	aspect-ratio: 9 / 11;
	object-fit: cover;
}

.alles-hero__mock img {
	max-height: min(72vh, 760px);
	object-fit: contain;
}

.alles-hoodie-mock figcaption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	max-width: 230px;
	padding: 9px 10px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(0, 0, 0, .72);
	color: var(--alles-soft);
	font-size: .72rem;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.alles-hero__mock {
	border-radius: 0;
}

.alles-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	padding: 0;
	border: 1px solid var(--alles-line);
	background: var(--alles-line);
}

.alles-proof-bar {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin-top: 0;
	border-bottom: 1px solid var(--alles-line);
	background: var(--alles-line);
}

.alles-proof-bar div {
	min-height: 136px;
	padding: 24px;
	background: var(--alles-black);
}

.alles-proof-bar strong {
	display: block;
	color: var(--alles-text);
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.alles-proof-bar span {
	display: block;
	margin-top: 12px;
	color: var(--alles-muted);
	font-size: .74rem;
	font-weight: 950;
	text-transform: uppercase;
}

.alles-trust-item {
	min-width: 0;
	min-height: 150px;
	padding: 24px;
	background: var(--alles-black);
}

.alles-trust-item__mark {
	display: block;
	width: 28px;
	height: 3px;
	margin-bottom: 20px;
	background: var(--alles-silver);
}

.alles-trust-item h3,
.alles-why-grid h3,
.alles-product-delivery strong,
.alles-buy-confidence strong,
.alles-tab-panel-grid h3 {
	margin: 0;
	color: var(--alles-text);
	font-size: .86rem;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.alles-trust-item p,
.alles-why-grid p,
.alles-fit-guide p,
.alles-drop p,
.alles-tab-panel-grid p,
.alles-product-delivery span,
.alles-buy-confidence span {
	margin: 10px 0 0;
	color: var(--alles-muted);
	font-size: .92rem;
}

.alles-trust-item h3,
.alles-trust-item p {
	overflow-wrap: break-word;
}

.alles-section {
	padding: 68px 0;
	border-bottom: 1px solid var(--alles-line);
}

.alles-section-heading {
	margin-bottom: 36px;
}

.alles-section-heading h2,
.alles-fit-guide h2,
.alles-drop h2 {
	max-width: 760px;
	font-size: clamp(2.4rem, 6vw, 5.3rem);
}

.alles-section-heading a {
	color: var(--alles-silver);
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.alles-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--alles-line);
	border: 1px solid var(--alles-line);
}

.alles-editorial {
	display: grid;
	grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
	gap: 46px;
	align-items: center;
}

.alles-editorial__visual .alles-hoodie-mock {
	box-shadow: none;
}

.alles-editorial__visual figcaption {
	display: none;
}

.alles-editorial__copy h2,
.alles-collection h2 {
	margin: 0;
	color: var(--alles-text);
	font-size: clamp(2.4rem, 6vw, 5.2rem);
	font-weight: 950;
	line-height: .94;
	text-transform: uppercase;
}

.alles-editorial__copy p {
	max-width: 650px;
	margin: 24px 0 0;
	color: var(--alles-soft);
	font-size: 1.05rem;
}

.alles-editorial__copy ul {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.alles-editorial__copy li {
	position: relative;
	padding: 14px 0 14px 28px;
	border-top: 1px solid var(--alles-line);
	color: var(--alles-muted);
	font-weight: 800;
}

.alles-editorial__copy li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--alles-silver);
	transform: rotate(45deg);
}

.alles-material-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--alles-line);
	background: var(--alles-line);
}

.alles-material-grid article {
	min-height: 250px;
	padding: 24px;
	background: linear-gradient(180deg, #101010, #050505);
}

.alles-material-grid h3 {
	margin: 0;
	color: var(--alles-text);
	font-size: .88rem;
	font-weight: 950;
	text-transform: uppercase;
}

.alles-material-grid p {
	margin: 72px 0 0;
	color: var(--alles-muted);
	font-size: .92rem;
}

.alles-why-grid article {
	min-height: 270px;
	padding: 28px;
	background: var(--alles-black);
}

.alles-why-grid span {
	display: block;
	margin-bottom: 88px;
	color: var(--alles-line-strong);
	font-size: 3.4rem;
	font-weight: 950;
	line-height: 1;
}

.alles-fit-guide {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
	gap: 50px;
	align-items: end;
}

.alles-fit-table {
	border: 1px solid var(--alles-line);
	background: var(--alles-black);
}

.alles-fit-table [role="row"] {
	display: grid;
	grid-template-columns: .65fr 1fr 1.35fr;
	border-bottom: 1px solid var(--alles-line);
}

.alles-fit-table [role="row"]:last-child {
	border-bottom: 0;
}

.alles-fit-table span {
	padding: 18px;
	color: var(--alles-soft);
	border-right: 1px solid var(--alles-line);
	font-size: .9rem;
}

.alles-fit-table span:last-child {
	border-right: 0;
}

.alles-fit-table [role="columnheader"] {
	color: var(--alles-text);
	font-weight: 950;
	text-transform: uppercase;
}

.alles-drop {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	padding: 48px;
	background: var(--alles-panel);
	border: 1px solid var(--alles-line);
}

.alles-drop--home {
	margin-top: 0;
	margin-bottom: 72px;
}

.alles-drop > div {
	max-width: 760px;
}

.alles-social-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.alles-collection {
	position: relative;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
		#070707;
	background-size: 64px 64px;
}

.alles-collection-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin-top: 42px;
	border: 1px solid var(--alles-line);
	background: var(--alles-line);
}

.alles-collection-grid span {
	min-height: 180px;
	display: flex;
	align-items: end;
	padding: 22px;
	background: rgba(3, 3, 3, .92);
	color: var(--alles-text);
	font-size: .9rem;
	font-weight: 950;
	text-transform: uppercase;
}

.alles-collection-grid span:nth-child(1) {
	background: #050505;
}

.alles-collection-grid span:nth-child(2) {
	background: #151515;
}

.alles-collection-grid span:nth-child(3) {
	background: #1e1e1c;
}

.alles-collection-grid span:nth-child(4) {
	background: linear-gradient(135deg, #050505, #242424);
}

.alles-social-grid article {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--alles-line);
	background: var(--alles-panel);
}

.alles-social-grid .alles-hoodie-mock {
	border: 0;
	box-shadow: none;
}

.alles-social-grid figcaption {
	display: none;
}

.alles-social-grid span {
	position: absolute;
	left: 12px;
	bottom: 12px;
	color: var(--alles-text);
	font-size: .72rem;
	font-weight: 950;
	text-transform: uppercase;
}

.alles-entry {
	padding: 72px 0;
}

.alles-entry-header {
	margin-bottom: 32px;
}

.alles-entry-header h1 {
	font-size: clamp(2.8rem, 7vw, 6rem);
}

.alles-entry-content {
	color: var(--alles-soft);
}

.alles-empty-state,
.alles-empty-products {
	display: grid;
	grid-template-columns: minmax(220px, .4fr) minmax(0, .6fr);
	gap: 28px;
	align-items: center;
	padding: 32px;
	border: 1px solid var(--alles-line);
	background: var(--alles-panel);
}

.alles-empty-products .alles-hoodie-mock {
	box-shadow: none;
}

.alles-empty-products h3,
.alles-empty-state h1 {
	margin: 0;
	color: var(--alles-text);
	text-transform: uppercase;
}

.alles-empty-products p,
.alles-empty-state p {
	color: var(--alles-muted);
}

.alles-shop-hero {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	padding: clamp(48px, 6vw, 82px) 0 clamp(30px, 4vw, 46px);
	border-bottom: 1px solid var(--alles-line);
}

.alles-shop-hero h1 {
	font-size: clamp(3.4rem, 8vw, 7.6rem);
}

.alles-shop-description {
	max-width: 720px;
	margin-top: 22px;
	color: var(--alles-soft);
}

.alles-shop-products {
	padding: clamp(34px, 4vw, 54px) 0 88px;
}

.alles-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--alles-line);
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
	float: none;
	margin: 0;
	color: var(--alles-muted);
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
}

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

.woocommerce .woocommerce-ordering select,
.woocommerce select,
.woocommerce-page select {
	min-height: 46px;
	padding: 0 40px 0 14px;
	border: 1px solid var(--alles-line-strong);
	border-radius: var(--alles-radius);
	background: var(--alles-black);
	color: var(--alles-text);
	font-family: var(--alles-font);
	font-weight: 800;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.1vw, 30px);
	margin: 0;
	padding: 0;
}

.alles-featured .woocommerce ul.products,
.alles-featured.woocommerce ul.products,
.alles-featured ul.products,
.alles-featured-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 28px);
	margin: 0;
	padding: 0;
}

.alles-featured-grid > li.product {
	float: none !important;
	clear: none !important;
	width: auto !important;
	margin: 0 !important;
	min-width: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
	float: none;
	width: auto;
	margin: 0;
}

.alles-product-card {
	position: relative;
	min-width: 0;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border: 1px solid var(--alles-line);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 34%),
		linear-gradient(180deg, #0b0b0b, #030303);
	overflow: hidden;
	transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.alles-shop-page .alles-trust-strip--shop,
.woocommerce-cart .alles-trust-strip--cart,
.woocommerce-checkout .alles-trust-strip--checkout {
	margin-top: 28px;
}

.alles-shop-page .alles-trust-strip--shop .alles-trust-item,
.woocommerce-cart .alles-trust-strip--cart .alles-trust-item,
.woocommerce-checkout .alles-trust-strip--checkout .alles-trust-item {
	min-height: 132px;
}

.alles-product-card:hover {
	border-color: rgba(245, 245, 242, .38);
	transform: translateY(-3px);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.alles-product-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1.08;
	border: 0;
	border-bottom: 1px solid var(--alles-line);
	background:
		radial-gradient(circle at 50% 34%, rgba(255, 255, 255, .05), transparent 34%),
		linear-gradient(180deg, #111, #050505);
	text-decoration: none;
}

.alles-featured .alles-product-card__media {
	aspect-ratio: 1 / 1.12;
}

.alles-product-card__media img,
.woocommerce ul.products li.product .alles-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: clamp(14px, 2vw, 26px);
	object-fit: contain;
	transform: scale(1.01);
	transition: transform .32s ease, filter .32s ease, opacity .32s ease;
}

.alles-product-card:hover .alles-product-card__media img {
	transform: scale(1.045);
	filter: contrast(1.08);
}

.alles-product-card__media::after {
	content: "";
	position: absolute;
	inset: auto 16px 16px auto;
	width: 52px;
	height: 2px;
	background: var(--alles-silver);
	transform: scaleX(.65);
	transform-origin: right;
	transition: transform .24s ease;
}

.alles-product-card:hover .alles-product-card__media::after {
	transform: scaleX(1);
}

.alles-chest-mark {
	display: none;
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	top: 14px;
	left: 14px;
	right: auto;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 8px 10px;
	border-radius: var(--alles-radius);
	background: var(--alles-text);
	color: var(--alles-black);
	font-size: .72rem;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.alles-product-card__fallback {
	height: 100%;
	border: 0;
	box-shadow: none;
}

.alles-product-card__fallback figcaption {
	display: none;
}

.alles-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(18px, 2vw, 24px);
}

.alles-featured .alles-product-card__body {
	padding: clamp(12px, 1.5vw, 18px);
}

.alles-product-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--alles-muted);
	font-size: .7rem;
	font-weight: 900;
	text-transform: uppercase;
}

.alles-featured .alles-product-card__meta {
	font-size: .62rem;
	line-height: 1.2;
}

.alles-product-card__meta span + span::before {
	content: "/";
	margin-right: 8px;
	color: var(--alles-line-strong);
}

.alles-product-card__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: block;
	margin: 0;
	padding: 0;
	color: var(--alles-text);
	font-size: clamp(.98rem, 1.3vw, 1.12rem);
	font-weight: 950;
	line-height: 1.08;
	text-decoration: none;
	text-transform: uppercase;
	min-height: 2.2em;
}

.alles-featured .alles-product-card__title {
	font-size: clamp(.76rem, 1.15vw, 1.02rem);
	line-height: 1.12;
	min-height: 2.24em;
}

.alles-product-card__title:hover {
	color: var(--alles-silver);
}

.alles-product-card__price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	display: block;
	margin: 13px 0 0;
	color: var(--alles-text);
	font-size: 1.02rem;
	font-weight: 950;
}

.alles-featured .alles-product-card__price {
	margin-top: 10px;
	font-size: clamp(.84rem, 1.1vw, 1rem);
}

.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: var(--alles-muted);
	opacity: .8;
}

.woocommerce ul.products li.product .price ins,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	color: var(--alles-text);
	text-decoration: none;
}

.alles-product-card__rating {
	min-height: 18px;
	margin-top: 8px;
}

.alles-featured .alles-product-card__rating {
	display: none;
}

.woocommerce .star-rating {
	color: var(--alles-silver);
}

.alles-product-card__actions {
	display: grid;
	gap: 10px;
	margin-top: auto;
	padding-top: 18px;
}

.alles-product-card__actions .button,
.woocommerce ul.products li.product .alles-product-card__actions .button,
.woocommerce-page ul.products li.product .alles-product-card__actions .button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100%;
	height: var(--alles-card-button-height);
	min-height: var(--alles-card-button-height);
	max-height: var(--alles-card-button-height);
	margin: 0 !important;
	padding: 0 14px !important;
	font-size: .76rem;
	line-height: 1 !important;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.alles-product-card__actions .added_to_cart,
.woocommerce ul.products li.product .alles-product-card__actions .added_to_cart,
.woocommerce-page ul.products li.product .alles-product-card__actions .added_to_cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 42px;
	min-height: 42px;
	max-height: 42px;
	margin: 0;
	padding: 0 12px !important;
	border: 1px solid var(--alles-line-strong);
	border-radius: var(--alles-radius);
	background: transparent;
	color: var(--alles-text);
	font-size: .72rem;
	font-weight: 950;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.alles-product-card__actions .added_to_cart:hover {
	background: var(--alles-text);
	border-color: var(--alles-text);
	color: var(--alles-black);
	transform: translateY(-1px);
}

.alles-featured .alles-product-card__actions {
	gap: 8px;
	padding-top: 12px;
}

.alles-featured .alles-product-card__actions .button {
	height: 40px;
	min-height: 40px;
	max-height: 40px;
	font-size: .68rem;
}

.alles-featured .alles-product-card__actions .added_to_cart {
	height: 34px;
	min-height: 34px;
	max-height: 34px;
	font-size: .62rem;
}

.alles-single-product-page {
	padding: 58px 0 96px;
}

.alles-single-product {
	display: block;
}

.alles-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
	gap: 52px;
	align-items: start;
}

.alles-single-gallery {
	position: sticky;
	top: 104px;
	min-width: 0;
}

.woocommerce div.product div.images {
	float: none;
	width: 100%;
	margin: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.woocommerce div.product div.images img {
	width: 100%;
	border: 1px solid var(--alles-line);
	background: var(--alles-panel);
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	float: none;
	width: auto;
}

.woocommerce div.product div.images .flex-control-thumbs img {
	border-color: var(--alles-line);
	opacity: .56;
	transition: opacity .18s ease, border-color .18s ease;
}

.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs img:hover {
	border-color: var(--alles-silver);
	opacity: 1;
}

.alles-gallery-chest-rule {
	display: block;
	margin-top: 14px;
	color: var(--alles-muted);
	font-size: .75rem;
	font-weight: 900;
	text-transform: uppercase;
}

.alles-single-summary {
	min-width: 0;
	padding: clamp(24px, 2.7vw, 36px);
	border: 1px solid var(--alles-line);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 42%),
		linear-gradient(180deg, #101010, #070707);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.woocommerce div.product .product_title {
	font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.woocommerce div.product .woocommerce-product-rating {
	margin: 16px 0 0;
	color: var(--alles-muted);
}

.woocommerce-review-link {
	color: var(--alles-muted);
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	margin-top: 22px;
	font-size: 1.45rem;
}

.woocommerce-product-details__short-description {
	margin-top: 22px;
	color: var(--alles-soft);
	font-size: 1rem;
}

.alles-single-purchase {
	margin-top: 28px;
	padding: 24px;
	border: 1px solid var(--alles-line);
	background: var(--alles-panel);
}

.woocommerce div.product form.cart {
	margin: 0;
}

.woocommerce div.product form.cart:not(.variations_form),
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-columns: minmax(142px, .42fr) minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.woocommerce div.product form.cart:not(.variations_form) > .quantity,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart > .quantity {
	grid-column: 1;
	grid-row: 1;
}

.woocommerce div.product form.cart:not(.variations_form) > .single_add_to_cart_button,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart > .single_add_to_cart_button {
	grid-column: 2;
	grid-row: 1;
}

.woocommerce div.product form.cart .variations {
	margin: 0 0 20px;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	display: block;
	padding: 0;
	line-height: 1;
	text-align: left;
}

.woocommerce div.product form.cart .variations label {
	display: block;
	margin-bottom: 10px;
	color: var(--alles-text);
	font-size: .78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.woocommerce div.product form.cart .reset_variations {
	display: inline-block;
	margin-top: 10px;
	color: var(--alles-muted);
	font-size: .76rem;
	font-weight: 800;
	text-transform: uppercase;
}

.alles-visually-managed {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
}

.alles-size-options {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 18px;
}

.alles-size-option {
	min-width: 54px;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid var(--alles-line-strong);
	border-radius: var(--alles-radius);
	background: var(--alles-black);
	color: var(--alles-text);
	font-family: var(--alles-font);
	font-size: .82rem;
	font-weight: 950;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.alles-size-option:hover,
.alles-size-option.is-active {
	background: var(--alles-text);
	border-color: var(--alles-text);
	color: var(--alles-black);
}

.quantity.alles-qty-enhanced {
	display: inline-grid;
	grid-template-columns: 46px minmax(58px, 1fr) 46px;
	align-items: stretch;
	float: none !important;
	width: 100%;
	margin: 0 !important;
	border: 1px solid var(--alles-line-strong);
	border-radius: var(--alles-radius);
	overflow: hidden;
	vertical-align: middle;
}

.quantity.alles-qty-enhanced .qty {
	width: 100%;
	height: 50px;
	border: 0;
	border-left: 1px solid var(--alles-line-strong);
	border-right: 1px solid var(--alles-line-strong);
	border-radius: 0;
	background: var(--alles-black);
	color: var(--alles-text);
	font-weight: 950;
	text-align: center;
}

.alles-qty-button {
	width: 46px;
	height: 50px;
	border: 0;
	background: var(--alles-black);
	color: var(--alles-text);
	font-size: 1.1rem;
	font-weight: 900;
	cursor: pointer;
}

.alles-qty-button:hover {
	background: var(--alles-text);
	color: var(--alles-black);
}

.woocommerce div.product form.cart .button {
	float: none !important;
	width: 100%;
	height: 52px;
	min-height: 52px;
	margin: 0 !important;
	padding-inline: 30px;
}

.woocommerce-variation-price {
	margin: 14px 0;
}

.alles-buy-confidence,
.alles-product-delivery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 18px;
	border: 1px solid var(--alles-line);
	background: var(--alles-line);
}

.alles-buy-confidence div,
.alles-product-delivery div {
	padding: 16px;
	background: var(--alles-black);
}

.alles-buy-confidence span,
.alles-product-delivery span {
	display: block;
	font-size: .78rem;
	line-height: 1.35;
}

.alles-product-delivery {
	margin-top: 22px;
}

.product_meta {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--alles-line);
	color: var(--alles-muted);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.product_meta a {
	color: var(--alles-soft);
}

.alles-product-info {
	margin-top: 72px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--alles-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 15px 18px;
	color: var(--alles-muted);
	font-size: .78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--alles-text);
	background: var(--alles-panel);
}

.woocommerce div.product .woocommerce-tabs .panel {
	margin: 0;
	padding: 32px;
	border: 1px solid var(--alles-line);
	border-top: 0;
	background: var(--alles-panel);
	color: var(--alles-soft);
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
	margin: 0 0 18px;
	color: var(--alles-text);
	font-size: 1.25rem;
	font-weight: 950;
	text-transform: uppercase;
}

.alles-tab-panel-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.alles-fit-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.alles-fit-list li {
	padding: 14px 0;
	border-bottom: 1px solid var(--alles-line);
	color: var(--alles-soft);
	font-weight: 800;
}

.related.products,
.upsells.products {
	margin-top: 72px;
}

.related.products > h2,
.upsells.products > h2,
.woocommerce-cart .cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
	margin: 0 0 24px;
	color: var(--alles-text);
	font-size: 1.4rem;
	font-weight: 950;
	text-transform: uppercase;
}

.woocommerce table.shop_table {
	border: 1px solid var(--alles-line);
	border-radius: 0;
	background: var(--alles-panel);
	color: var(--alles-soft);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 18px;
	border-color: var(--alles-line);
}

.woocommerce table.shop_table th {
	color: var(--alles-text);
	font-size: .78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.woocommerce-cart-form,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout form.checkout .col2-set,
.woocommerce-checkout-review-order {
	padding: 24px;
	border: 1px solid var(--alles-line);
	background: var(--alles-panel);
}

.woocommerce-cart .alles-entry-content > .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
	gap: clamp(28px, 3vw, 42px);
	align-items: start;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-info {
	grid-column: 1 / -1;
}

.woocommerce-cart-form {
	grid-column: 1;
	padding: clamp(24px, 2.4vw, 34px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 38%),
		linear-gradient(180deg, #141414, #090909);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.woocommerce-cart .cart-collaterals {
	grid-column: 2;
	margin-top: 0;
	position: sticky;
	top: 104px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
	margin-left: 0;
	padding: clamp(24px, 2.4vw, 34px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .045), transparent 42%),
		linear-gradient(180deg, #141414, #080808);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
}

.woocommerce-cart .cart_totals h2 {
	display: flex;
	align-items: center;
	gap: 12px;
}

.woocommerce-cart .cart_totals h2::before {
	content: "";
	display: inline-block;
	width: 34px;
	height: 3px;
	background: var(--alles-silver);
}

.woocommerce-cart .cart_totals table.shop_table {
	background: #0b0b0b;
}

.woocommerce-cart .cart_totals .checkout-button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100%;
	height: 62px;
	min-height: 62px;
	margin-top: 22px;
	padding: 0 18px !important;
	font-size: clamp(.88rem, 1.2vw, 1.08rem);
	line-height: 1 !important;
}

.woocommerce-cart table.cart img {
	width: 112px;
	border: 1px solid var(--alles-line);
	background: #090909;
}

.woocommerce-cart table.cart {
	margin: 0;
	background: #0b0b0b;
}

.woocommerce-cart table.cart td.product-name a {
	color: var(--alles-soft);
	font-size: 1rem;
	font-weight: 800;
	text-decoration-thickness: 1px;
	text-underline-offset: .25em;
}

.woocommerce-cart table.cart td.product-price,
.woocommerce-cart table.cart td.product-subtotal {
	color: var(--alles-text);
	font-size: 1.02rem;
	font-weight: 800;
}

.woocommerce-cart table.cart td.product-quantity .quantity.alles-qty-enhanced {
	width: 172px;
	margin-left: auto !important;
}

.woocommerce-cart table.cart td.actions {
	padding: 22px;
}

.woocommerce-cart table.cart td.actions .coupon {
	display: inline-flex;
	align-items: stretch;
	gap: 10px;
	float: none;
	max-width: min(460px, 100%);
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: min(220px, 45vw);
	min-height: 50px;
	margin: 0;
}

.woocommerce-cart table.cart td.actions > .button {
	float: right;
	min-height: 50px;
}

.woocommerce a.remove {
	display: inline-grid;
	place-items: center;
	color: var(--alles-error) !important;
	border: 1px solid rgba(255, 63, 70, .45);
}

.woocommerce a.remove:hover {
	background: var(--alles-error);
	color: var(--alles-black) !important;
}

.woocommerce-cart .alles-trust-strip--cart {
	grid-column: 1 / -1;
	margin-top: 20px;
}

.woocommerce form .form-row {
	margin: 0 0 18px;
	padding: 0;
}

.woocommerce form .form-row label {
	margin-bottom: 8px;
	color: var(--alles-text);
	font-size: .78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.woocommerce form .form-row .required {
	color: var(--alles-silver);
	text-decoration: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce input.input-text,
.woocommerce textarea {
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--alles-line-strong);
	border-radius: var(--alles-radius);
	background: var(--alles-black);
	color: var(--alles-text);
	font-family: var(--alles-font);
	font-size: .95rem;
}

.woocommerce form .form-row textarea {
	min-height: 120px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce input.input-text:focus,
.woocommerce textarea:focus {
	outline: 2px solid rgba(200, 200, 194, .35);
	outline-offset: 2px;
	border-color: var(--alles-silver);
}

.select2-container--default .select2-selection--single {
	height: 48px;
	border: 1px solid var(--alles-line-strong);
	border-radius: var(--alles-radius);
	background: var(--alles-black);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--alles-text);
	line-height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 48px;
}

.select2-dropdown {
	border-color: var(--alles-line-strong);
	background: var(--alles-black);
	color: var(--alles-text);
}

.select2-results__option {
	color: var(--alles-text);
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
	background: var(--alles-text);
	color: var(--alles-black);
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.38fr) minmax(390px, .72fr);
	grid-template-rows: auto 1fr;
	gap: clamp(28px, 3vw, 42px);
	align-items: start;
}

.woocommerce-checkout form.checkout .col2-set,
.woocommerce-page form.checkout .col2-set {
	float: none;
	width: 100%;
	grid-column: 1;
	grid-row: 1 / span 2;
}

.woocommerce-checkout form.checkout .col2-set::before,
.woocommerce-checkout form.checkout .col2-set::after {
	display: none;
}

.woocommerce-checkout form.checkout .col2-set {
	display: grid;
	gap: 26px;
	padding: clamp(24px, 3vw, 38px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .045), transparent 38%),
		linear-gradient(180deg, #141414, #090909);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.woocommerce-checkout form.checkout .col2-set .col-1,
.woocommerce-checkout form.checkout .col2-set .col-2,
.woocommerce-page form.checkout .col2-set .col-1,
.woocommerce-page form.checkout .col2-set .col-2 {
	float: none;
	width: 100%;
	margin: 0;
}

.woocommerce-checkout form.checkout .col2-set .col-2 {
	padding-top: 24px;
	border-top: 1px solid var(--alles-line);
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 18px;
	row-gap: 2px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row,
.woocommerce-checkout form.checkout .form-row-first,
.woocommerce-checkout form.checkout .form-row-last {
	float: none;
	width: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row-wide,
.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #billing_email_field {
	grid-column: 1 / -1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_city_field,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_state_field,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_postcode_field {
	grid-column: span 1;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 26px;
}

.woocommerce-checkout .woocommerce-billing-fields h3::before,
.woocommerce-checkout .woocommerce-shipping-fields h3::before,
#order_review_heading::before {
	content: "";
	display: inline-block;
	width: 34px;
	height: 3px;
	background: var(--alles-silver);
}

.woocommerce-checkout #ship-to-different-address {
	margin: 0;
}

.woocommerce-checkout #ship-to-different-address label {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 16px 18px;
	border: 1px solid var(--alles-line);
	background: #090909;
	cursor: pointer;
}

.woocommerce-checkout #ship-to-different-address-checkbox {
	width: 18px;
	height: 18px;
	accent-color: var(--alles-text);
}

#order_review_heading,
.woocommerce-checkout-review-order {
	grid-column: 2;
}

#order_review_heading {
	grid-row: 1;
	align-self: start;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: -8px;
}

.woocommerce-checkout-review-order {
	grid-row: 2;
	align-self: start;
	position: sticky;
	top: 104px;
	padding: clamp(24px, 2.4vw, 34px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .045), transparent 42%),
		linear-gradient(180deg, #141414, #080808);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.woocommerce-checkout-review-order table.shop_table {
	background: #0b0b0b;
}

.woocommerce-checkout-review-order .product-name {
	color: var(--alles-soft);
	font-weight: 800;
}

.woocommerce-checkout-review-order .order-total th,
.woocommerce-checkout-review-order .order-total td {
	color: var(--alles-text);
	font-size: 1.02rem;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
	width: 100%;
	margin: 0 0 24px;
}

.woocommerce-checkout form.checkout_coupon {
	margin: 0 0 24px;
	padding: 24px;
	border: 1px solid var(--alles-line);
	background: var(--alles-panel);
}

.woocommerce-checkout #payment {
	margin-top: 22px;
	border: 1px solid var(--alles-line);
	border-radius: 0;
	background: var(--alles-black);
}

.woocommerce-checkout #payment ul.payment_methods {
	border-color: var(--alles-line);
}

.woocommerce-checkout #payment div.payment_box {
	background: var(--alles-panel-2);
	color: var(--alles-soft);
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--alles-panel-2);
}

.woocommerce-checkout #payment .place-order {
	display: grid;
	gap: 18px;
	padding: 24px;
}

.woocommerce-checkout #payment #place_order {
	width: 100%;
	height: 58px;
	min-height: 58px;
}

.woocommerce .blockUI.blockOverlay,
.woocommerce-page .blockUI.blockOverlay {
	background: rgba(3, 3, 3, .74) !important;
	opacity: 1 !important;
}

.woocommerce .blockUI.blockOverlay::after,
.woocommerce-page .blockUI.blockOverlay::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	margin: -15px 0 0 -15px;
	border: 2px solid rgba(245, 245, 242, .36);
	border-top-color: var(--alles-text);
	border-radius: 999px;
	animation: alles-spin .8s linear infinite;
}

@keyframes alles-spin {
	to {
		transform: rotate(360deg);
	}
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	width: var(--alles-container);
	margin: 24px auto;
	padding: 18px 20px 18px 56px;
	border: 1px solid var(--alles-line-strong);
	background: var(--alles-panel);
	color: var(--alles-text);
	font-weight: 800;
	box-shadow: none;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
	top: 18px;
}

.woocommerce-error {
	border-color: rgba(255, 63, 70, .62) !important;
	color: #ffdfe1;
}

.woocommerce-error::before {
	color: var(--alles-error);
}

.woocommerce-message {
	border-color: rgba(215, 246, 220, .34) !important;
}

.woocommerce-message::before {
	color: var(--alles-success);
}

.woocommerce-info {
	border-color: rgba(200, 200, 194, .34) !important;
}

.woocommerce-info::before {
	color: var(--alles-silver);
}

.woocommerce form .form-row.woocommerce-invalid label {
	color: #ffdfe1;
}

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select,
.woocommerce form .form-row.woocommerce-invalid textarea {
	border-color: var(--alles-error);
	box-shadow: 0 0 0 2px rgba(255, 63, 70, .14);
}

.woocommerce form .form-row.woocommerce-validated input.input-text {
	border-color: rgba(215, 246, 220, .42);
}

.woocommerce-pagination {
	margin-top: 42px;
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	justify-content: center;
	gap: 8px;
	border: 0;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 42px;
	min-height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid var(--alles-line);
	background: var(--alles-black);
	color: var(--alles-text);
	font-weight: 900;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--alles-text);
	color: var(--alles-black);
}

.alles-site-footer {
	border-top: 1px solid var(--alles-line);
	background: var(--alles-black);
}

.alles-footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 30px;
	padding: 42px 0;
}

.alles-footer-brand p,
.alles-footer-meta {
	color: var(--alles-muted);
	font-size: .78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.alles-footer-meta {
	grid-column: 1 / -1;
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-top: 24px;
	border-top: 1px solid var(--alles-line);
}

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

	.alles-featured ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.alles-single-layout,
	.woocommerce-checkout form.checkout,
	.woocommerce-cart .alles-entry-content > .woocommerce {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

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

	.alles-single-gallery,
	.woocommerce-checkout-review-order,
	.woocommerce-cart .cart-collaterals {
		position: static;
	}

	#order_review_heading,
	.woocommerce-checkout-review-order {
		grid-column: 1;
		grid-row: auto;
	}

	.woocommerce-checkout form.checkout .col2-set,
	.woocommerce-page form.checkout .col2-set {
		grid-row: auto;
	}

	.woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals,
	.woocommerce-cart .alles-trust-strip--cart {
		grid-column: 1;
	}
}

	@media (max-width: 860px) {
		:root {
			--alles-container: min(100vw - 28px, 760px);
			--alles-sticky-offset: 112px;
		}

	.alles-announcement {
		justify-content: flex-start;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.alles-announcement::-webkit-scrollbar {
		display: none;
	}

	.alles-header-inner {
		grid-template-columns: auto auto auto;
		gap: 12px;
		min-height: 66px;
	}

	.alles-menu-toggle {
		display: block;
		order: 3;
	}

	.alles-primary-nav {
		position: fixed;
		top: 100px;
		left: 14px;
		right: 14px;
		display: none;
		padding: 18px;
		border: 1px solid var(--alles-line);
		background: rgba(3, 3, 3, .98);
		box-shadow: var(--alles-shadow);
	}

	.alles-menu-open .alles-primary-nav {
		display: block;
	}

	.alles-menu {
		display: grid;
		gap: 0;
	}

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

	.alles-menu li:last-child {
		border-bottom: 0;
	}

	.alles-menu a {
		display: block;
		padding: 14px 0;
	}

	.alles-header-actions {
		justify-self: end;
	}

	.alles-header-shop {
		display: none;
	}

	.alles-logo__wordmark {
		max-width: 132px;
		white-space: normal;
		line-height: 1.05;
	}

	.alles-hero {
		grid-template-columns: 1fr;
		min-height: auto;
		gap: 28px;
		padding-top: 34px;
	}

	.alles-hero h1 {
		font-size: clamp(3.35rem, 17vw, 5.8rem);
	}

	.alles-hero__visual {
		order: initial;
	}

	.alles-hero__mock img {
		max-height: 420px;
	}

		.alles-trust-strip {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

		.alles-why-grid,
		.alles-fit-guide,
		.alles-editorial {
			grid-template-columns: 1fr;
		}

		.alles-trust-item {
			min-height: 126px;
			padding: 18px;
		}

		.alles-trust-item__mark {
			margin-bottom: 14px;
		}

		.alles-trust-item p {
			font-size: .84rem;
			line-height: 1.42;
		}

	.woocommerce-checkout .alles-trust-strip--checkout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-checkout .alles-trust-strip--checkout .alles-trust-item {
		min-height: 132px;
		padding: 18px;
	}

	.alles-proof-bar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alles-section {
		padding: 68px 0;
	}

		.alles-section-heading,
		.alles-shop-hero,
		.alles-drop,
	.alles-footer-inner,
	.alles-footer-meta {
		display: grid;
		grid-template-columns: 1fr;
		align-items: start;
	}

		.alles-drop {
			padding: 28px;
		}

		.alles-shop-hero {
			gap: 20px;
			padding-top: 42px;
		}

	.alles-fit-table {
		overflow-x: auto;
	}

	.alles-fit-table [role="row"] {
		min-width: 620px;
	}

	.alles-buy-confidence,
	.alles-product-delivery,
	.alles-tab-panel-grid {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product .product_title {
		font-size: clamp(2.35rem, 13vw, 4.4rem);
	}
}

@media (max-width: 760px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.alles-featured ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.alles-product-card {
		max-width: 520px;
		margin-inline: auto !important;
	}

	.alles-featured .alles-product-card {
		max-width: none;
		margin-inline: 0 !important;
	}

	.alles-product-card__media {
		aspect-ratio: 1 / 1.08;
	}

		.alles-single-product-page {
			padding-top: 30px;
		}

		.alles-single-layout {
			gap: 26px;
		}

		.woocommerce div.product div.images img {
			max-height: 58vh;
			object-fit: contain;
		}

		.alles-gallery-chest-rule {
			margin-top: 10px;
			font-size: .68rem;
		}

		.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
	.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
		grid-template-columns: 1fr;
	}

	.woocommerce-checkout #billing_city_field,
	.woocommerce-checkout #billing_state_field,
	.woocommerce-checkout #billing_postcode_field {
		grid-column: 1 / -1;
	}
}

/* Reference-style cart drawer and checkout flow. */
body.alles-figma-store.woocommerce-cart,
body.alles-figma-store.woocommerce-checkout {
	background: #fff !important;
	color: #000;
	font-family: "Courier New", Courier, monospace;
}

body.alles-figma-store.woocommerce-cart .alles-site-header,
body.alles-figma-store.woocommerce-checkout .alles-site-header,
body.alles-figma-store.woocommerce-cart .alles-site-footer,
body.alles-figma-store.woocommerce-checkout .alles-site-footer {
	display: none !important;
}

body.alles-figma-store.woocommerce-cart .alles-main,
body.alles-figma-store.woocommerce-checkout .alles-main {
	min-height: 100svh;
	padding: 0;
	background: #fff;
}

body.alles-figma-store.woocommerce-cart .alles-page-shell,
body.alles-figma-store.woocommerce-checkout .alles-page-shell {
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

body.alles-figma-store.woocommerce-cart .alles-entry,
body.alles-figma-store.woocommerce-checkout .alles-entry {
	width: 100%;
	max-width: none;
	padding: 0;
}

body.alles-figma-store.woocommerce-cart .alles-entry-header,
body.alles-figma-store.woocommerce-checkout .alles-entry-header {
	display: none !important;
}

body.alles-figma-store.woocommerce-cart .alles-entry-content,
body.alles-figma-store.woocommerce-checkout .alles-entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
}

body.alles-figma-store.woocommerce-cart .alles-entry-content > .woocommerce {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	min-height: 100svh;
	margin: 0;
	background: #fff;
}

body.alles-figma-store .alles-bully-cart {
	display: flex;
	flex-direction: column;
	width: min(388px, 100vw);
	min-height: 100svh;
	padding: 25px 24px 24px;
	margin-left: auto;
	background: #fff;
	box-shadow: -28px 0 48px rgba(0, 0, 0, .06);
	color: #000;
}

body.alles-figma-store .alles-bully-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 42px;
}

body.alles-figma-store .alles-bully-cart__header h1,
body.alles-figma-store .alles-bully-checkout-section-title,
body.alles-figma-store .alles-bully-checkout__delivery-note h3,
body.alles-figma-store.woocommerce-checkout #order_review_heading {
	margin: 0;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-cart__close {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
}

body.alles-figma-store .alles-bully-cart__form {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 0;
	margin: 0;
	border: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-bully-cart__items {
	display: grid;
	gap: 30px;
}

body.alles-figma-store .alles-bully-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	column-gap: 20px;
	align-items: start;
	min-height: 92px;
	padding: 0;
	background: #fff;
	transition: opacity .14s ease, transform .14s ease;
}

body.alles-figma-store .alles-bully-cart-item.is-removing {
	opacity: .35;
	transform: translateX(8px);
	pointer-events: none;
}

body.alles-figma-store .alles-bully-cart-item__image,
body.alles-figma-store .alles-bully-cart-item__image a {
	display: block;
	width: 76px;
	height: 64px;
	overflow: hidden;
	background: #f4f4f4;
}

body.alles-figma-store .alles-bully-cart-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0 !important;
	background: #f4f4f4 !important;
}

body.alles-figma-store .alles-bully-cart-item__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 24px;
	gap: 10px;
	align-items: start;
	margin-bottom: 10px;
}

body.alles-figma-store .alles-bully-cart-item h2 {
	margin: 0;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: .03em;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-cart-item h2 a {
	color: #000;
	text-decoration: none;
}

body.alles-figma-store .alles-bully-cart-item__remove,
body.alles-figma-store.woocommerce-cart .woocommerce a.remove,
body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove {
	display: grid !important;
	width: 24px !important;
	height: 24px !important;
	min-width: 24px !important;
	min-height: 24px !important;
	place-items: center;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #000 !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 26px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-decoration: none !important;
}

body.alles-figma-store .alles-remove-icon {
	display: block;
	width: auto;
	height: auto;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

body.alles-figma-store .alles-bully-cart-item__remove:hover,
body.alles-figma-store.woocommerce-cart .woocommerce a.remove:hover {
	background: transparent !important;
	color: #777 !important;
}

body.alles-figma-store .alles-bully-cart-item__price {
	margin-bottom: 30px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}

body.alles-figma-store .alles-bully-cart-item__qty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	color: #999;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced {
	display: grid;
	grid-template-columns: 36px 46px 36px;
	align-items: center;
	width: 118px;
	height: 30px;
	border: 0 !important;
	background: transparent !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced button,
body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced input.qty {
	display: grid;
	width: 100%;
	height: 30px;
	min-height: 30px;
	place-items: center;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 19px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-align: center;
	box-shadow: none !important;
	opacity: 1 !important;
}

body.alles-figma-store .alles-bully-cart-item .alles-qty-icon {
	display: none;
}

body.alles-figma-store .alles-bully-cart-item .alles-qty-button--minus::before {
	content: "-";
}

body.alles-figma-store .alles-bully-cart-item .alles-qty-button--plus::before {
	content: "+";
}

body.alles-figma-store .alles-bully-cart__actions {
	margin-top: 22px;
}

body.alles-figma-store .alles-bully-cart__coupon summary {
	display: inline-block;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
	text-decoration: underline;
	text-transform: none;
	cursor: pointer;
}

body.alles-figma-store .alles-bully-cart__coupon > div {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}

body.alles-figma-store .alles-bully-cart__coupon input {
	width: 100%;
	height: 44px;
	padding: 0 14px;
}

body.alles-figma-store .alles-bully-cart__coupon .button {
	width: 100%;
	height: 44px;
}

body.alles-figma-store .alles-bully-cart__update {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

body.alles-figma-store .alles-bully-cart__summary {
	margin-top: auto;
	padding-top: 44px;
}

body.alles-figma-store .alles-bully-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-cart__total strong {
	font: inherit;
	text-transform: none;
}

body.alles-figma-store .alles-bully-cart__summary .checkout-button,
body.alles-figma-store.woocommerce-checkout #payment #place_order {
	display: grid !important;
	width: 100% !important;
	min-height: 54px !important;
	place-items: center;
	padding: 0 18px !important;
	border: 1px solid #000 !important;
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-align: center !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
}

body.alles-figma-store .alles-bully-cart__summary .checkout-button:hover,
body.alles-figma-store.woocommerce-checkout #payment #place_order:hover {
	background: #111 !important;
	color: #fff !important;
}

body.alles-figma-store .alles-bully-cart__empty {
	display: grid;
	align-content: center;
	justify-items: start;
	flex: 1 1 auto;
	gap: 24px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	text-transform: uppercase;
}

body.alles-figma-store.woocommerce-cart form.woocommerce-cart-form.is-updating::after,
body.alles-figma-store.woocommerce-cart form.woocommerce-cart-form.is-pending-update::after {
	display: none !important;
}

body.alles-figma-store .alles-cart-status {
	right: 24px;
	bottom: 24px;
	left: auto;
	max-width: min(320px, calc(100vw - 48px));
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
	box-shadow: none;
}

body.alles-figma-store .alles-bully-checkout-summarybar {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 48px;
	padding: 0 24px;
	background: #efefef;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-checkout-summarybar strong {
	font: inherit;
	text-transform: none;
}

body.alles-figma-store .alles-bully-checkout {
	width: min(612px, calc(100vw - 32px));
	margin: 0 auto;
	padding: 42px 0 80px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
}

body.alles-figma-store .alles-bully-checkout__brand {
	margin-bottom: 44px;
	text-align: center;
}

body.alles-figma-store .alles-bully-checkout__brand a {
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-checkout__form {
	display: block !important;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-bully-checkout__rule-label,
body.alles-figma-store .alles-bully-checkout__or {
	display: grid;
	grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
	align-items: center;
	gap: 24px;
	margin-bottom: 20px;
	color: #777;
	font-family: "Courier New", Courier, monospace;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-checkout__rule-label span,
body.alles-figma-store .alles-bully-checkout__or span {
	display: block;
	height: 1px;
	background: #ddd;
}

body.alles-figma-store .alles-bully-checkout__rule-label strong,
body.alles-figma-store .alles-bully-checkout__or strong {
	font: inherit;
}

body.alles-figma-store .alles-bully-checkout__express-box {
	height: 44px;
	margin-bottom: 20px;
	background: #f0f0f0;
}

body.alles-figma-store .alles-bully-checkout .col2-set,
body.alles-figma-store.woocommerce-checkout form.checkout .col2-set,
body.alles-figma-store.woocommerce-page form.checkout .col2-set {
	display: block !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-bully-checkout .col2-set .col-1,
body.alles-figma-store .alles-bully-checkout .col2-set .col-2,
body.alles-figma-store.woocommerce-checkout form.checkout .col2-set .col-1,
body.alles-figma-store.woocommerce-checkout form.checkout .col2-set .col-2,
body.alles-figma-store.woocommerce-page form.checkout .col2-set .col-1,
body.alles-figma-store.woocommerce-page form.checkout .col2-set .col-2 {
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: #fff !important;
}

body.alles-figma-store .alles-bully-checkout .col2-set .col-2 {
	display: none !important;
}

body.alles-figma-store .alles-bully-checkout-section-title,
body.alles-figma-store .alles-bully-checkout__delivery-note h3,
body.alles-figma-store.woocommerce-checkout #order_review_heading {
	margin: 32px 0 14px;
}

body.alles-figma-store .alles-bully-checkout .woocommerce-billing-fields__field-wrapper {
	display: block;
}

body.alles-figma-store.woocommerce-checkout form .form-row {
	display: block !important;
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 0 12px !important;
}

body.alles-figma-store.woocommerce-checkout #billing_country_field::before {
	display: block !important;
	margin: 32px 0 14px !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.1 !important;
	text-transform: uppercase !important;
	content: "Shipping";
}

body.alles-figma-store.woocommerce-checkout form .form-row label {
	display: none;
}

body.alles-figma-store.woocommerce-checkout form .form-row label.checkbox,
body.alles-figma-store.woocommerce-checkout form .woocommerce-form__label-for-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	text-transform: uppercase;
}

body.alles-figma-store.woocommerce-checkout form .form-row input.input-text,
body.alles-figma-store.woocommerce-checkout form .form-row textarea,
body.alles-figma-store.woocommerce-checkout form .form-row select,
body.alles-figma-store.woocommerce-checkout .select2-container--default .select2-selection--single {
	width: 100% !important;
	height: 56px !important;
	min-height: 56px !important;
	padding: 0 16px !important;
	border: 1px solid #ddd !important;
	border-radius: 0 !important;
	background: #fff !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 56px !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
}

body.alles-figma-store.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0;
	color: #000;
	line-height: 54px;
}

body.alles-figma-store.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 54px;
}

body.alles-figma-store.woocommerce-checkout form .form-row input::placeholder,
body.alles-figma-store.woocommerce-checkout form .form-row textarea::placeholder {
	color: #777;
	opacity: 1;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-invalid input.input-text,
body.alles-figma-store.woocommerce-checkout .woocommerce-invalid select,
body.alles-figma-store.woocommerce-checkout .woocommerce-invalid textarea {
	border-color: #db1010 !important;
	box-shadow: inset 0 0 0 1px #db1010 !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__delivery-note p {
	margin: 0;
	padding: 15px 20px;
	background: #f0f0f0;
	color: #666;
	font-family: "Courier New", Courier, monospace;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	text-transform: uppercase;
}

body.alles-figma-store.woocommerce-checkout #order_review_heading {
	display: block !important;
	padding: 0;
	border: 0;
	background: transparent;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order {
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order-table {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

body.alles-figma-store.woocommerce-checkout #payment {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: #fff !important;
	color: #000 !important;
}

body.alles-figma-store.woocommerce-checkout #payment ul.payment_methods {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

body.alles-figma-store.woocommerce-checkout #payment ul.payment_methods li {
	margin: 0 0 12px !important;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 14px;
	line-height: 1.35;
}

body.alles-figma-store.woocommerce-checkout #payment div.payment_box {
	padding: 15px 20px !important;
	margin: 10px 0 0 !important;
	border: 0 !important;
	background: #f0f0f0 !important;
	color: #666 !important;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
	line-height: 1.35;
}

body.alles-figma-store.woocommerce-checkout #payment div.payment_box::before {
	display: none !important;
}

body.alles-figma-store.woocommerce-checkout #payment .place-order {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 34px 0 0 !important;
	margin: 0 !important;
}

body.alles-figma-store.woocommerce-checkout #payment .woocommerce-privacy-policy-text,
body.alles-figma-store.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper {
	color: #666;
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
	line-height: 1.45;
}

body.alles-figma-store.woocommerce-checkout #payment .woocommerce-privacy-policy-text p {
	margin: 0;
}

body.alles-figma-store.woocommerce-checkout #payment #place_order {
	order: 10;
	margin: 0 !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.alles-figma-store.woocommerce-checkout form.checkout_coupon {
	display: none !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-error,
body.alles-figma-store.woocommerce-checkout .woocommerce-message,
body.alles-figma-store.woocommerce-checkout .woocommerce-info,
body.alles-figma-store.woocommerce-cart .woocommerce-error,
body.alles-figma-store.woocommerce-cart .woocommerce-message,
body.alles-figma-store.woocommerce-cart .woocommerce-info {
	width: min(612px, calc(100vw - 32px));
	padding: 14px 16px !important;
	margin: 18px auto !important;
	border: 1px solid #000 !important;
	background: #fff !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 13px !important;
	line-height: 1.35 !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-error,
body.alles-figma-store.woocommerce-cart .woocommerce-error {
	border-color: #db1010 !important;
	color: #db1010 !important;
}

@media (max-width: 760px) {
	body.alles-figma-store.woocommerce-cart .alles-entry-content > .woocommerce {
		justify-content: stretch;
	}

	body.alles-figma-store .alles-bully-cart {
		width: 100vw;
		min-height: 100svh;
		padding: 24px 20px 22px;
		margin: 0;
		box-shadow: none;
	}

	body.alles-figma-store .alles-bully-cart__header {
		margin-bottom: 36px;
	}

	body.alles-figma-store .alles-bully-cart-item {
		grid-template-columns: 74px minmax(0, 1fr);
		column-gap: 18px;
	}

	body.alles-figma-store .alles-bully-cart-item__image,
	body.alles-figma-store .alles-bully-cart-item__image a {
		width: 74px;
		height: 64px;
	}

	body.alles-figma-store .alles-bully-cart-item h2,
	body.alles-figma-store .alles-bully-cart-item__price {
		font-size: 15px;
	}

	body.alles-figma-store .alles-bully-cart__summary {
		padding-top: 38px;
	}

	body.alles-figma-store .alles-bully-checkout-summarybar {
		padding: 0 16px;
	}

	body.alles-figma-store .alles-bully-checkout {
		width: calc(100vw - 32px);
		padding: 38px 0 70px;
	}

	body.alles-figma-store .alles-bully-checkout__brand {
		margin-bottom: 38px;
	}

	body.alles-figma-store .alles-bully-checkout__rule-label,
	body.alles-figma-store .alles-bully-checkout__or {
		gap: 16px;
		font-size: 13px;
	}
}

@media (max-width: 640px) {
	.alles-cart-link {
		min-height: 40px;
		padding-inline: 11px;
	}

		.alles-cart-link > span:first-child {
			display: none;
		}

		.alles-announcement {
			justify-content: center;
			overflow: hidden;
		}

		.alles-announcement span:nth-child(3) {
			display: none;
		}

		.alles-button,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit,
	.woocommerce button.single_add_to_cart_button,
	.woocommerce .checkout-button {
		width: 100%;
	}

	.alles-hero__actions {
		display: grid;
	}

		.alles-hero__specs,
		.alles-proof-bar,
		.alles-material-grid,
		.alles-collection-grid,
		.woocommerce-checkout .alles-trust-strip--checkout {
			grid-template-columns: 1fr;
		}

		.alles-trust-strip,
		.woocommerce-checkout .alles-trust-strip--checkout {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}

		.alles-trust-item {
			min-height: 112px;
			padding: 15px;
		}

		.alles-trust-item__mark {
			width: 24px;
			height: 2px;
			margin-bottom: 12px;
		}

		.alles-trust-item h3 {
			font-size: .72rem;
			line-height: 1.16;
		}

		.alles-trust-item p {
			margin-top: 8px;
			font-size: .72rem;
			line-height: 1.36;
		}

	.alles-hero__mock img {
		max-height: 360px;
	}

	.alles-hero__visual {
		margin-top: -8px;
	}

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

	.alles-material-grid article,
	.alles-collection-grid span {
		min-height: 140px;
	}

	.alles-material-grid p {
		margin-top: 28px;
	}

	.alles-shop-toolbar {
		display: grid;
	}

	.alles-shop-toolbar .woocommerce-ordering select {
		width: 100%;
	}

	.alles-featured ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.alles-featured .alles-product-card__media {
		aspect-ratio: 1 / 1;
	}

	.alles-featured .alles-product-card__media::after,
	.alles-featured .alles-product-card__meta {
		display: none;
	}

	.alles-featured .alles-product-card__body {
		padding: 8px;
	}

	.alles-featured .alles-product-card__title {
		font-size: .64rem;
		line-height: 1.12;
		min-height: 3.35em;
	}

	.alles-featured .alles-product-card__price {
		margin-top: 7px;
		font-size: .74rem;
	}

	.alles-featured .alles-product-card__actions {
		gap: 6px;
		padding-top: 8px;
	}

	.alles-featured .alles-product-card__actions .button {
		height: 32px;
		min-height: 32px;
		max-height: 32px;
		padding-inline: 4px !important;
		font-size: .55rem;
	}

	.alles-empty-products {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart-form,
	.woocommerce .cart-collaterals .cart_totals,
	.woocommerce-checkout form.checkout .col2-set,
	.woocommerce-checkout-review-order,
	.woocommerce div.product .woocommerce-tabs .panel {
		padding: 18px;
	}

	.woocommerce-cart table.cart td.actions .coupon {
		display: grid;
		max-width: none;
		width: 100%;
	}

	.woocommerce-cart table.cart td.actions .coupon .input-text {
		width: 100%;
	}

		.woocommerce-cart table.cart td.actions > .button {
			float: none;
			width: 100%;
			margin-top: 10px;
		}

		.woocommerce-cart table.cart {
			border: 0;
			background: transparent;
		}

		.woocommerce-cart table.shop_table_responsive tr.cart_item,
		.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item {
			position: relative;
			display: grid;
			margin-bottom: 16px;
			border: 1px solid var(--alles-line);
			background:
				linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 44%),
				#0b0b0b;
		}

		.woocommerce-cart table.shop_table_responsive tr.cart_item td,
		.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item td {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 16px;
			min-height: 58px;
			padding: 14px 18px;
			border-bottom: 1px solid var(--alles-line);
			text-align: right !important;
		}

		.woocommerce-cart table.shop_table_responsive tr.cart_item td:last-child,
		.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item td:last-child {
			border-bottom: 0;
		}

		.woocommerce-cart table.cart td.product-remove {
			position: absolute;
			top: 12px;
			right: 12px;
			z-index: 2;
			display: block !important;
			min-height: 0 !important;
			padding: 0 !important;
			border: 0 !important;
		}

		.woocommerce-cart table.cart td.product-remove::before {
			display: none !important;
		}

		.woocommerce-cart table.cart td.product-name {
			padding-right: 58px !important;
			text-align: left !important;
		}

		.woocommerce-cart table.cart td.product-name a {
			font-size: .96rem;
			line-height: 1.25;
		}

		.woocommerce-cart table.cart td.product-quantity .quantity.alles-qty-enhanced {
			width: min(176px, 54vw);
			margin: 0 !important;
		}

		.woocommerce table.shop_table_responsive tr,
		.woocommerce-page table.shop_table_responsive tr {
			border-color: var(--alles-line);
		}

	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		color: var(--alles-text);
		font-weight: 950;
		text-transform: uppercase;
	}

	.quantity.alles-qty-enhanced {
		grid-template-columns: 42px minmax(54px, 1fr) 42px;
		width: 100%;
		margin: 0 0 12px !important;
	}

	.woocommerce div.product form.cart .button {
		width: 100%;
	}
}

	@media (max-width: 430px) {
		:root {
			--alles-container: calc(100vw - 28px);
		}

		.alles-announcement {
			justify-content: center;
			gap: 0;
			font-size: .66rem;
			overflow: hidden;
		}

		.alles-announcement span:nth-child(n+2) {
			display: none;
		}

		.alles-logo--header .alles-logo__image {
			width: 48px;
			height: 48px;
		}

		.alles-logo__wordmark {
			max-width: 118px;
			font-size: .72rem;
		}

		.alles-header-inner {
			gap: 8px;
		}

		.alles-header-actions {
			gap: 8px;
		}

		.alles-menu-toggle {
			width: 40px;
			height: 40px;
		}

		.alles-featured ul.products {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}

	.alles-featured .alles-product-card {
		max-width: none;
		margin-inline: 0 !important;
	}
}

/* Figma Make collection system: light editorial commerce UI. */
body.alles-figma-store {
	--alles-black: #f7f5ee;
	--alles-panel: #fffefa;
	--alles-panel-2: #ece8df;
	--alles-text: #080808;
	--alles-soft: #242424;
	--alles-muted: #6f6d67;
	--alles-line: rgba(8, 8, 8, .18);
	--alles-line-strong: rgba(8, 8, 8, .5);
	--alles-silver: #817d73;
	--alles-radius: 0;
	--alles-button-height: 48px;
	--alles-card-button-height: 40px;
	--alles-container: min(1220px, calc(100vw - 48px));
	background: #f7f5ee;
	color: #080808;
	overflow-x: hidden;
}

body.alles-figma-store a {
	color: inherit;
}

body.alles-figma-store .alles-main {
	background: #f7f5ee;
}

body.alles-figma-store .alles-announcement {
	display: none;
}

body.alles-figma-store .alles-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid #080808;
	background: rgba(247, 245, 238, .94);
	color: #080808;
	backdrop-filter: blur(18px);
	box-shadow: none;
}

body.alles-figma-store.admin-bar .alles-site-header {
	top: 32px;
}

body.alles-figma-store .alles-header-inner {
	width: var(--alles-container);
	min-height: 86px;
	padding: 0;
}

body.alles-figma-store .alles-brand-link {
	min-width: 0;
	color: #080808;
	text-decoration: none;
}

body.alles-figma-store .alles-logo {
	gap: 14px;
}

body.alles-figma-store .alles-logo--header .alles-logo__image {
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid rgba(8, 8, 8, .2);
	background: #050505;
	object-fit: cover;
	box-shadow: none;
}

body.alles-figma-store .alles-logo--footer .alles-logo__image {
	background: #050505;
}

body.alles-figma-store .alles-logo__wordmark,
body.alles-figma-store .alles-menu a,
body.alles-figma-store .alles-header-shop,
body.alles-figma-store .alles-footer-meta,
body.alles-figma-store .alles-footer-brand p {
	color: #080808;
	letter-spacing: .11em;
}

body.alles-figma-store .alles-menu a,
body.alles-figma-store .alles-header-shop {
	position: relative;
	font-size: .78rem;
	font-weight: 900;
	text-decoration: none;
}

body.alles-figma-store .alles-menu a::after,
body.alles-figma-store .alles-header-shop::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 1px;
	background: #080808;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .18s ease;
}

body.alles-figma-store .alles-menu a:hover::after,
body.alles-figma-store .alles-header-shop:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

body.alles-figma-store .alles-cart-link,
body.alles-figma-store .alles-menu-toggle {
	border: 1px solid #080808;
	background: transparent;
	color: #080808;
	box-shadow: none;
}

body.alles-figma-store .alles-cart-count {
	background: #080808;
	color: #f7f5ee;
}

body.alles-figma-store .alles-menu-toggle span:not(.screen-reader-text) {
	background: #080808;
}

body.alles-figma-store h1,
body.alles-figma-store h2,
body.alles-figma-store h3,
body.alles-figma-store .woocommerce div.product .product_title {
	color: #080808;
	font-weight: 500;
	letter-spacing: .02em;
}

body.alles-figma-store .alles-kicker {
	color: #080808;
	font-size: .76rem;
	font-weight: 900;
	letter-spacing: .18em;
}

body.alles-figma-store .alles-button,
body.alles-figma-store .alles-product-card__actions .button,
body.alles-figma-store .woocommerce a.button,
body.alles-figma-store .woocommerce button.button,
body.alles-figma-store .woocommerce input.button,
body.alles-figma-store .woocommerce button.single_add_to_cart_button,
body.alles-figma-store .woocommerce .checkout-button,
body.alles-figma-store .woocommerce-checkout #payment #place_order,
body.alles-figma-store .wp-block-button__link {
	border: 1px solid #080808 !important;
	border-radius: 0 !important;
	background: #080808 !important;
	color: #f7f5ee !important;
	box-shadow: none !important;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

body.alles-figma-store .alles-button:hover,
body.alles-figma-store .alles-product-card__actions .button:hover,
body.alles-figma-store .woocommerce a.button:hover,
body.alles-figma-store .woocommerce button.button:hover,
body.alles-figma-store .woocommerce input.button:hover,
body.alles-figma-store .woocommerce button.single_add_to_cart_button:hover,
body.alles-figma-store .woocommerce .checkout-button:hover,
body.alles-figma-store .woocommerce-checkout #payment #place_order:hover {
	background: transparent !important;
	color: #080808 !important;
	transform: none;
}

body.alles-figma-store .alles-button--ghost,
body.alles-figma-store .woocommerce a.button.alt,
body.alles-figma-store .woocommerce button.button.alt,
body.alles-figma-store .woocommerce input.button.alt {
	background: transparent !important;
	color: #080808 !important;
}

body.alles-figma-store .alles-button--ghost:hover,
body.alles-figma-store .woocommerce a.button.alt:hover,
body.alles-figma-store .woocommerce button.button.alt:hover,
body.alles-figma-store .woocommerce input.button.alt:hover {
	background: #080808 !important;
	color: #f7f5ee !important;
}

body.alles-figma-store .alles-hero {
	min-height: min(720px, calc(100vh - 86px));
	padding: clamp(56px, 7vw, 104px) 0 clamp(42px, 6vw, 84px);
	border-bottom: 1px solid #080808;
	background:
		linear-gradient(90deg, rgba(8, 8, 8, .08) 0 1px, transparent 1px) 0 0 / 25% 100%,
		#f7f5ee;
}

body.alles-figma-store .alles-hero__content {
	max-width: 660px;
}

body.alles-figma-store .alles-hero h1 {
	position: relative;
	margin-top: 14px;
	padding-left: clamp(18px, 2.4vw, 28px);
	font-size: clamp(3.2rem, 8vw, 7.4rem);
	line-height: .88;
	text-transform: uppercase;
}

body.alles-figma-store .alles-hero h1::before,
body.alles-figma-store .alles-shop-hero h1::before,
body.alles-figma-store .alles-section-heading h2::before,
body.alles-figma-store .alles-entry-header h1::before {
	content: "";
	position: absolute;
	top: .08em;
	bottom: .08em;
	left: 0;
	width: 6px;
	background: #080808;
}

body.alles-figma-store .alles-hero__copy {
	max-width: 570px;
	margin-top: 28px;
	color: #242424;
	font-size: clamp(1rem, 1.35vw, 1.2rem);
	line-height: 1.55;
}

body.alles-figma-store .alles-hero__actions {
	margin-top: 34px;
}

body.alles-figma-store .alles-hero__specs {
	border-top: 1px solid #080808;
	color: #080808;
}

body.alles-figma-store .alles-hero__visual {
	border: 1px solid #080808;
	background:
		linear-gradient(135deg, transparent 0 49.7%, rgba(8, 8, 8, .2) 49.8% 50.2%, transparent 50.3%),
		#ebe7dc;
	box-shadow: none;
}

body.alles-figma-store .alles-hoodie-mock {
	border: 0;
	background: transparent;
	box-shadow: none;
}

body.alles-figma-store .alles-hoodie-mock img {
	filter: none;
}

body.alles-figma-store .alles-hoodie-mock figcaption {
	color: #5f5c55;
}

body.alles-figma-store .alles-section,
body.alles-figma-store .alles-shop-page > section,
body.alles-figma-store .alles-page-shell,
body.alles-figma-store .alles-single-product-page,
body.alles-figma-store .alles-single-product-page .alles-single-product,
body.alles-figma-store .alles-entry,
body.alles-figma-store .alles-entry-content > .woocommerce,
body.alles-figma-store.woocommerce-cart .alles-entry-content > .woocommerce,
body.alles-figma-store.woocommerce-checkout .alles-entry-content > .woocommerce {
	width: var(--alles-container);
	max-width: var(--alles-container);
	margin-right: auto;
	margin-left: auto;
}

body.alles-figma-store .alles-section {
	padding: clamp(56px, 7vw, 92px) 0;
	border-bottom: 1px solid #080808;
}

body.alles-figma-store .alles-section-heading {
	align-items: end;
	margin-bottom: clamp(28px, 4vw, 46px);
}

body.alles-figma-store .alles-section-heading h2 {
	position: relative;
	padding-left: clamp(18px, 2vw, 28px);
	font-size: clamp(2.8rem, 6vw, 5.8rem);
	line-height: .9;
	text-transform: uppercase;
}

body.alles-figma-store .alles-section-heading a {
	color: #080808;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-underline-offset: .35em;
}

body.alles-figma-store .alles-trust-strip {
	width: var(--alles-container);
	margin: 0 auto;
	border: 1px solid #080808;
	background: transparent;
	box-shadow: none;
}

body.alles-figma-store .alles-trust-item {
	min-height: 150px;
	padding: clamp(18px, 2.4vw, 28px);
	background: transparent;
	color: #080808;
}

body.alles-figma-store .alles-trust-item + .alles-trust-item {
	border-left: 1px solid #080808;
}

body.alles-figma-store .alles-trust-item__mark {
	background: #080808;
}

body.alles-figma-store .alles-trust-item h3 {
	color: #080808;
	font-weight: 900;
}

body.alles-figma-store .alles-trust-item p {
	color: #3f3d38;
}

body.alles-figma-store .alles-fit-guide,
body.alles-figma-store .alles-drop {
	border: 1px solid #080808;
	background: #fffefa;
	color: #080808;
	box-shadow: none;
}

body.alles-figma-store .alles-fit-guide {
	margin-top: clamp(48px, 6vw, 78px);
	padding: 0;
}

body.alles-figma-store .alles-fit-guide__content,
body.alles-figma-store .alles-fit-table {
	padding: clamp(24px, 3.5vw, 44px);
}

body.alles-figma-store .alles-fit-guide__content p,
body.alles-figma-store .alles-drop p {
	color: #242424;
}

body.alles-figma-store .alles-fit-table {
	border-left: 1px solid #080808;
	background: #f7f5ee;
}

body.alles-figma-store .alles-fit-table [role="row"] {
	border-color: rgba(8, 8, 8, .24);
	color: #080808;
}

body.alles-figma-store .alles-drop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: clamp(30px, 4vw, 48px);
}

body.alles-figma-store .alles-shop-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	padding: clamp(58px, 8vw, 110px) 0 34px;
	border-bottom: 1px solid #080808;
}

body.alles-figma-store .alles-shop-hero h1 {
	position: relative;
	margin-top: 14px;
	padding-left: clamp(18px, 2vw, 28px);
	font-size: clamp(3.8rem, 8vw, 7.8rem);
	font-weight: 500;
	line-height: .9;
	text-transform: uppercase;
}

body.alles-figma-store .alles-shop-description {
	max-width: 580px;
	color: #242424;
}

body.alles-figma-store .alles-shop-page .alles-trust-strip--shop {
	display: none;
}

body.alles-figma-store .alles-shop-products {
	padding: 28px 0 clamp(70px, 8vw, 110px);
}

body.alles-figma-store .alles-shop-toolbar {
	margin-bottom: clamp(28px, 4vw, 42px);
	padding-bottom: 18px;
	border-bottom: 1px solid #080808;
	color: #080808;
}

body.alles-figma-store .woocommerce .woocommerce-result-count,
body.alles-figma-store .woocommerce-page .woocommerce-result-count {
	color: #080808;
	letter-spacing: .14em;
}

body.alles-figma-store .woocommerce .woocommerce-ordering select,
body.alles-figma-store .woocommerce select,
body.alles-figma-store .woocommerce-page select {
	border: 0;
	border-bottom: 1px solid #080808;
	background: transparent;
	color: #080808;
	border-radius: 0;
	text-transform: uppercase;
	letter-spacing: .14em;
}

body.alles-figma-store .woocommerce ul.products,
body.alles-figma-store .woocommerce-page ul.products,
body.alles-figma-store .alles-featured ul.products,
body.alles-figma-store .alles-featured-grid {
	width: 100%;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(30px, 3.4vw, 46px) clamp(18px, 2.6vw, 34px);
}

body.alles-figma-store .alles-product-card,
body.alles-figma-store .woocommerce ul.products li.product,
body.alles-figma-store .woocommerce-page ul.products li.product {
	border: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

body.alles-figma-store .alles-product-card:hover {
	border-color: transparent;
	transform: none;
	box-shadow: none;
}

body.alles-figma-store .alles-product-card__media {
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(8, 8, 8, .18);
	background:
		linear-gradient(180deg, rgba(8, 8, 8, .03), transparent 40%),
		#e9e5dc;
	transition: border-color .2s ease, background .2s ease;
}

body.alles-figma-store .alles-product-card:hover .alles-product-card__media {
	border-color: #080808;
	background: #dfdbd1;
}

body.alles-figma-store .alles-product-card__media img,
body.alles-figma-store .woocommerce ul.products li.product .alles-product-card__media img {
	padding: clamp(18px, 2.4vw, 34px);
	object-fit: contain;
	filter: grayscale(.12) contrast(1.04);
	transform: scale(1);
}

body.alles-figma-store .alles-product-card:hover .alles-product-card__media img {
	filter: grayscale(.04) contrast(1.08);
	transform: scale(1.025);
}

body.alles-figma-store .alles-product-card__media::after {
	right: 12px;
	bottom: 12px;
	width: 40px;
	height: 1px;
	background: #080808;
}

body.alles-figma-store .woocommerce span.onsale,
body.alles-figma-store .woocommerce ul.products li.product .onsale {
	border: 1px solid #080808;
	background: #f7f5ee;
	color: #080808;
	border-radius: 0;
}

body.alles-figma-store .alles-product-card__body {
	padding: 16px 0 0;
}

body.alles-figma-store .alles-product-card__meta,
body.alles-figma-store .alles-product-card__rating {
	display: none;
}

body.alles-figma-store .alles-product-card__title,
body.alles-figma-store .woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 0;
	color: #080808;
	font-size: clamp(.82rem, 1.05vw, .98rem);
	font-weight: 700;
	letter-spacing: .13em;
	line-height: 1.35;
}

body.alles-figma-store .alles-product-card__title:hover {
	color: #080808;
	text-decoration: underline;
	text-underline-offset: .25em;
}

body.alles-figma-store .alles-product-card__price,
body.alles-figma-store .woocommerce ul.products li.product .price,
body.alles-figma-store .woocommerce div.product p.price,
body.alles-figma-store .woocommerce div.product span.price {
	margin-top: 7px;
	color: #080808;
	font-size: clamp(.9rem, 1.05vw, 1rem);
	font-weight: 800;
}

body.alles-figma-store .alles-product-card__actions {
	padding-top: 12px;
}

body.alles-figma-store .alles-product-card__actions .button,
body.alles-figma-store .woocommerce ul.products li.product .alles-product-card__actions .button,
body.alles-figma-store .woocommerce-page ul.products li.product .alles-product-card__actions .button {
	width: 100%;
	height: 40px !important;
	min-height: 40px !important;
	max-height: 40px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	overflow: hidden;
	background: transparent !important;
	color: #080808 !important;
	font-size: .68rem;
	line-height: 1 !important;
	opacity: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease;
}

body.alles-figma-store .alles-product-card:hover .alles-product-card__actions .button,
body.alles-figma-store .alles-product-card:focus-within .alles-product-card__actions .button {
	opacity: 1;
	transform: translateY(0);
}

body.alles-figma-store .alles-product-card__actions .button:hover {
	background: #080808 !important;
	color: #f7f5ee !important;
}

body.alles-figma-store .alles-product-card__actions .added_to_cart,
body.alles-figma-store .woocommerce ul.products li.product .alles-product-card__actions .added_to_cart,
body.alles-figma-store .woocommerce-page ul.products li.product .alles-product-card__actions .added_to_cart {
	height: 38px;
	min-height: 38px;
	max-height: 38px;
	margin-top: 8px;
	border: 1px solid #080808;
	background: #080808;
	color: #f7f5ee;
	border-radius: 0;
	font-size: .66rem;
	letter-spacing: .12em;
}

body.alles-figma-store .woocommerce-notices-wrapper,
body.alles-figma-store .woocommerce-message,
body.alles-figma-store .woocommerce-info,
body.alles-figma-store .woocommerce-error {
	border: 1px solid #080808;
	border-radius: 0;
	background: #fffefa;
	color: #080808;
	box-shadow: none;
}

body.alles-figma-store .woocommerce-error {
	border-color: #b00020;
	color: #b00020;
}

body.alles-figma-store .woocommerce-error::before {
	color: #b00020;
}

body.alles-figma-store .alles-single-product-page,
body.alles-figma-store .alles-page-shell {
	padding: clamp(48px, 7vw, 86px) 0 clamp(72px, 8vw, 112px);
}

body.alles-figma-store .alles-single-layout {
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	gap: clamp(32px, 5vw, 64px);
}

body.alles-figma-store .alles-single-gallery {
	top: 112px;
}

body.alles-figma-store .woocommerce div.product div.images img {
	border: 1px solid #080808;
	background: #e9e5dc;
}

body.alles-figma-store .woocommerce div.product div.images .flex-control-thumbs img {
	border-color: rgba(8, 8, 8, .24);
	background: #f1eee6;
}

body.alles-figma-store .woocommerce div.product div.images .flex-control-thumbs img.flex-active,
body.alles-figma-store .woocommerce div.product div.images .flex-control-thumbs img:hover {
	border-color: #080808;
}

body.alles-figma-store .alles-gallery-chest-rule {
	color: #080808;
	letter-spacing: .14em;
}

body.alles-figma-store .alles-single-summary,
body.alles-figma-store .alles-single-purchase,
body.alles-figma-store .woocommerce div.product .woocommerce-tabs .panel,
body.alles-figma-store .woocommerce-cart-form,
body.alles-figma-store .woocommerce .cart-collaterals .cart_totals,
body.alles-figma-store .woocommerce-checkout form.checkout .col2-set,
body.alles-figma-store .woocommerce-checkout-review-order,
body.alles-figma-store .woocommerce-checkout form.checkout_coupon {
	border: 1px solid #080808;
	background: #fffefa;
	box-shadow: none;
}

body.alles-figma-store .woocommerce div.product .product_title {
	font-size: clamp(2.2rem, 3.3vw, 3.45rem);
	line-height: .92;
	text-transform: uppercase;
	overflow-wrap: break-word;
}

body.alles-figma-store .woocommerce-product-details__short-description,
body.alles-figma-store .woocommerce-review-link,
body.alles-figma-store .product_meta,
body.alles-figma-store .product_meta a,
body.alles-figma-store .alles-buy-confidence span,
body.alles-figma-store .alles-product-delivery span,
body.alles-figma-store .woocommerce div.product .woocommerce-tabs .panel,
body.alles-figma-store .alles-tab-panel-grid p,
body.alles-figma-store .alles-fit-list li {
	color: #3f3d38;
}

body.alles-figma-store .woocommerce div.product form.cart .variations label,
body.alles-figma-store .woocommerce div.product .woocommerce-tabs .panel h2,
body.alles-figma-store .related.products > h2,
body.alles-figma-store .upsells.products > h2,
body.alles-figma-store .woocommerce-cart .cart_totals h2,
body.alles-figma-store .woocommerce-billing-fields h3,
body.alles-figma-store .woocommerce-shipping-fields h3,
body.alles-figma-store #order_review_heading {
	color: #080808;
}

body.alles-figma-store .alles-size-option,
body.alles-figma-store .quantity.alles-qty-enhanced,
body.alles-figma-store .quantity.alles-qty-enhanced .qty,
body.alles-figma-store .alles-qty-button {
	border-color: #080808;
	background: #f7f5ee;
	color: #080808;
	border-radius: 0;
}

body.alles-figma-store .quantity.alles-qty-enhanced .qty {
	border-left: 1px solid #080808;
	border-right: 1px solid #080808;
}

body.alles-figma-store .alles-size-option:hover,
body.alles-figma-store .alles-size-option.is-active,
body.alles-figma-store .alles-qty-button:hover {
	background: #080808;
	color: #f7f5ee;
}

body.alles-figma-store .alles-buy-confidence,
body.alles-figma-store .alles-product-delivery {
	border: 1px solid #080808;
	background: #080808;
}

body.alles-figma-store .alles-buy-confidence div,
body.alles-figma-store .alles-product-delivery div {
	background: #fffefa;
}

body.alles-figma-store .woocommerce div.product .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid #080808;
}

body.alles-figma-store .woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: #6f6d67;
}

body.alles-figma-store .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	background: #080808;
	color: #f7f5ee;
}

body.alles-figma-store .woocommerce table.shop_table {
	border-color: #080808;
	background: #fffefa;
	color: #080808;
}

body.alles-figma-store .woocommerce table.shop_table th,
body.alles-figma-store .woocommerce table.shop_table td {
	border-color: rgba(8, 8, 8, .22);
	color: #080808;
}

body.alles-figma-store .woocommerce-cart .alles-entry-content > .woocommerce {
	grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
}

body.alles-figma-store .woocommerce-cart table.cart {
	background: #fffefa;
}

body.alles-figma-store .woocommerce-cart table.cart img {
	border: 1px solid #080808;
	background: #e9e5dc;
}

body.alles-figma-store .woocommerce-cart table.cart td.product-name a,
body.alles-figma-store .woocommerce-cart table.cart td.product-price,
body.alles-figma-store .woocommerce-cart table.cart td.product-subtotal,
body.alles-figma-store .woocommerce-checkout-review-order .product-name,
body.alles-figma-store .woocommerce-checkout-review-order .order-total th,
body.alles-figma-store .woocommerce-checkout-review-order .order-total td {
	color: #080808;
}

body.alles-figma-store .woocommerce a.remove {
	border-color: #b00020;
	color: #b00020 !important;
}

body.alles-figma-store .woocommerce a.remove:hover {
	background: #b00020;
	color: #fffefa !important;
}

body.alles-figma-store .woocommerce form .form-row label {
	color: #080808;
	letter-spacing: .11em;
}

body.alles-figma-store .woocommerce form .form-row .required {
	color: #b00020;
}

body.alles-figma-store .woocommerce form .form-row input.input-text,
body.alles-figma-store .woocommerce form .form-row textarea,
body.alles-figma-store .woocommerce form .form-row select,
body.alles-figma-store .woocommerce input.input-text,
body.alles-figma-store .woocommerce textarea,
body.alles-figma-store .woocommerce-cart table.cart td.actions .coupon .input-text {
	border: 1px solid #080808;
	border-radius: 0;
	background: #f7f5ee;
	color: #080808;
}

body.alles-figma-store .woocommerce form .form-row input.input-text:focus,
body.alles-figma-store .woocommerce form .form-row textarea:focus,
body.alles-figma-store .woocommerce form .form-row select:focus,
body.alles-figma-store .woocommerce input.input-text:focus,
body.alles-figma-store .woocommerce textarea:focus {
	border-color: #080808;
	outline: 2px solid rgba(8, 8, 8, .18);
}

body.alles-figma-store .woocommerce-invalid input.input-text,
body.alles-figma-store .woocommerce-invalid select,
body.alles-figma-store .woocommerce-invalid .select2-selection {
	border-color: #b00020 !important;
}

body.alles-figma-store .select2-container--default .select2-selection--single,
body.alles-figma-store .select2-dropdown {
	border-color: #080808;
	border-radius: 0;
	background: #f7f5ee;
	color: #080808;
}

body.alles-figma-store .select2-container--default .select2-selection--single .select2-selection__rendered,
body.alles-figma-store .select2-results__option {
	color: #080808;
}

body.alles-figma-store .select2-container--default .select2-results__option--highlighted[aria-selected],
body.alles-figma-store .select2-container--default .select2-results__option--highlighted[data-selected] {
	background: #080808;
	color: #f7f5ee;
}

body.alles-figma-store .woocommerce-checkout form.checkout {
	grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr);
}

body.alles-figma-store .woocommerce-checkout form.checkout .col2-set {
	background: #fffefa;
}

body.alles-figma-store .woocommerce-checkout #ship-to-different-address label,
body.alles-figma-store .woocommerce-checkout #payment,
body.alles-figma-store .woocommerce-checkout #payment div.payment_box,
body.alles-figma-store .woocommerce-checkout-review-order table.shop_table,
body.alles-figma-store .woocommerce-cart .cart_totals table.shop_table {
	border-color: #080808;
	background: #f7f5ee;
	color: #080808;
}

body.alles-figma-store .woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #f7f5ee;
}

body.alles-figma-store .woocommerce-checkout #payment ul.payment_methods {
	border-color: #080808;
}

body.alles-figma-store .alles-entry-header h1 {
	position: relative;
	padding-left: clamp(18px, 2vw, 28px);
	font-size: clamp(3.4rem, 8vw, 7rem);
	line-height: .9;
	text-transform: uppercase;
}

body.alles-figma-store .alles-site-footer {
	border-top: 1px solid #080808;
	background: #f7f5ee;
	color: #080808;
}

body.alles-figma-store .alles-footer-inner {
	border-color: #080808;
}

@media (max-width: 1024px) {
	body.alles-figma-store .alles-header-inner,
	body.alles-figma-store .alles-section,
	body.alles-figma-store .alles-shop-page > section,
	body.alles-figma-store .alles-page-shell,
	body.alles-figma-store .alles-single-product-page .alles-single-product,
	body.alles-figma-store .alles-entry,
	body.alles-figma-store .alles-entry-content > .woocommerce {
		width: min(100% - 36px, 1220px);
		max-width: min(100% - 36px, 1220px);
	}

	body.alles-figma-store .woocommerce ul.products,
	body.alles-figma-store .woocommerce-page ul.products,
	body.alles-figma-store .alles-featured ul.products,
	body.alles-figma-store .alles-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.alles-figma-store .alles-single-layout,
	body.alles-figma-store .woocommerce-cart .alles-entry-content > .woocommerce,
	body.alles-figma-store .woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
	}

	body.alles-figma-store .alles-single-gallery,
	body.alles-figma-store .woocommerce-cart .cart-collaterals,
	body.alles-figma-store .woocommerce-checkout-review-order {
		position: static;
	}

	body.alles-figma-store #order_review_heading,
	body.alles-figma-store .woocommerce-checkout-review-order,
	body.alles-figma-store .woocommerce-checkout form.checkout .col2-set {
		grid-column: 1;
		grid-row: auto;
	}
}

@media (max-width: 760px) {
	body.alles-figma-store {
		--alles-container: calc(100vw - 28px);
	}

	body.alles-figma-store.admin-bar .alles-site-header {
		top: 46px;
	}

	body.alles-figma-store .alles-header-inner {
		width: var(--alles-container);
		min-height: 72px;
	}

	body.alles-figma-store .alles-logo--header .alles-logo__image {
		width: 44px;
		height: 44px;
	}

	body.alles-figma-store .alles-logo__wordmark {
		max-width: 120px;
		font-size: .7rem;
	}

	body.alles-figma-store .alles-header-shop {
		display: none;
	}

	body.alles-figma-store .alles-primary-nav {
		top: 72px;
		right: 14px;
		left: 14px;
		border: 1px solid #080808;
		background: #f7f5ee;
		box-shadow: none;
	}

	body.alles-figma-store.admin-bar .alles-primary-nav {
		top: 118px;
	}

	body.alles-figma-store .alles-menu {
		gap: 0;
	}

	body.alles-figma-store .alles-menu a {
		border-bottom: 1px solid rgba(8, 8, 8, .16);
	}

	body.alles-figma-store .alles-hero,
	body.alles-figma-store .alles-shop-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	body.alles-figma-store .alles-hero h1,
	body.alles-figma-store .alles-shop-hero h1,
	body.alles-figma-store .alles-section-heading h2,
	body.alles-figma-store .alles-entry-header h1 {
		font-size: clamp(2.7rem, 14vw, 4.4rem);
	}

	body.alles-figma-store .alles-hero__visual {
		margin-top: 24px;
	}

	body.alles-figma-store .alles-section-heading,
	body.alles-figma-store .alles-drop {
		display: grid;
		align-items: start;
	}

	body.alles-figma-store .alles-trust-strip,
	body.alles-figma-store .woocommerce-checkout .alles-trust-strip--checkout,
	body.alles-figma-store .woocommerce-cart .alles-trust-strip--cart {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.alles-figma-store .alles-trust-item + .alles-trust-item {
		border-left: 0;
	}

	body.alles-figma-store .alles-trust-item:nth-child(2n) {
		border-left: 1px solid #080808;
	}

	body.alles-figma-store .alles-trust-item:nth-child(n+3) {
		border-top: 1px solid #080808;
	}

	body.alles-figma-store .woocommerce ul.products,
	body.alles-figma-store .woocommerce-page ul.products,
	body.alles-figma-store .alles-featured ul.products,
	body.alles-figma-store .alles-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 14px;
	}

	body.alles-figma-store .alles-product-card__media {
		aspect-ratio: 4 / 5.35;
	}

	body.alles-figma-store .alles-product-card__media img,
	body.alles-figma-store .woocommerce ul.products li.product .alles-product-card__media img {
		padding: 14px;
	}

	body.alles-figma-store .alles-product-card__title {
		font-size: .72rem;
		letter-spacing: .1em;
	}

	body.alles-figma-store .alles-product-card__actions .button,
	body.alles-figma-store .woocommerce ul.products li.product .alles-product-card__actions .button,
	body.alles-figma-store .woocommerce-page ul.products li.product .alles-product-card__actions .button {
		height: 36px !important;
		min-height: 36px !important;
		max-height: 36px !important;
		font-size: .58rem;
		letter-spacing: .08em;
		opacity: 1;
		transform: none;
	}

	body.alles-figma-store .alles-fit-guide {
		grid-template-columns: 1fr;
	}

	body.alles-figma-store .alles-fit-table {
		border-top: 1px solid #080808;
		border-left: 0;
	}

	body.alles-figma-store .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
	body.alles-figma-store .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {
	body.alles-figma-store .alles-header-actions {
		gap: 6px;
	}

	body.alles-figma-store .alles-cart-link {
		min-width: 82px;
		height: 42px;
		padding: 0 10px;
	}

	body.alles-figma-store .alles-shop-toolbar {
		display: grid;
	}

	body.alles-figma-store .alles-shop-toolbar .woocommerce-ordering select {
		width: 100%;
	}
}

/* Refinements after browser QA: keep mobile/header/grid/button behavior strict. */
body.alles-figma-store.woocommerce ul.products,
body.alles-figma-store.woocommerce-page ul.products,
body.alles-figma-store ul.products.products,
body.alles-figma-store .alles-featured-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	width: 100% !important;
	max-width: none !important;
}

body.alles-figma-store ul.products li.product.alles-product-card,
body.alles-figma-store .alles-product-card {
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
}

body.alles-figma-store .alles-product-card__actions .button,
body.alles-figma-store .woocommerce ul.products li.product .alles-product-card__actions .button,
body.alles-figma-store .woocommerce-page ul.products li.product .alles-product-card__actions .button {
	opacity: 1;
	transform: none;
}

body.alles-figma-store .alles-product-card__actions .button.added::after {
	margin-left: 8px;
	line-height: 1;
}

body.alles-figma-store .alles-site-header.is-scrolled {
	background: rgba(247, 245, 238, .96);
	border-color: #080808;
}

@media (max-width: 760px) {
	body.alles-figma-store .alles-header-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 10px;
	}

	body.alles-figma-store .alles-cart-link > span:first-child {
		display: inline;
	}

	body.alles-figma-store .alles-shop-hero h1,
	body.alles-figma-store .alles-entry-header h1 {
		font-size: clamp(2.05rem, 10.4vw, 3.2rem);
		line-height: .98;
		letter-spacing: 0;
		overflow-wrap: anywhere;
	}

	body.alles-figma-store.woocommerce ul.products,
	body.alles-figma-store.woocommerce-page ul.products,
	body.alles-figma-store ul.products.products,
	body.alles-figma-store .alles-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 26px 14px !important;
	}

	body.alles-figma-store .alles-product-card__body {
		padding-top: 12px;
	}
}

@media (max-width: 430px) {
	body.alles-figma-store .alles-header-inner {
		width: calc(100vw - 24px);
		gap: 8px;
	}

	body.alles-figma-store .alles-logo {
		gap: 10px;
	}

	body.alles-figma-store .alles-logo--header .alles-logo__image {
		width: 40px;
		height: 40px;
	}

	body.alles-figma-store .alles-logo__wordmark {
		max-width: 92px;
		font-size: .61rem;
		letter-spacing: .08em;
	}

	body.alles-figma-store .alles-cart-link {
		min-width: 72px;
		height: 40px;
		padding: 0 8px;
		font-size: .68rem;
	}

	body.alles-figma-store .alles-menu-toggle {
		width: 40px;
		height: 40px;
	}

	body.alles-figma-store .alles-hero h1,
	body.alles-figma-store .alles-section-heading h2 {
		font-size: clamp(2.45rem, 13vw, 3.9rem);
	}
}

/* WooCommerce body-class pages need direct body selectors. */
body.alles-figma-store.woocommerce-cart .alles-entry-content > .woocommerce,
body.alles-figma-store.woocommerce-checkout form.checkout {
	align-items: start;
}

body.alles-figma-store.woocommerce-cart .woocommerce-cart-form,
body.alles-figma-store.woocommerce-cart .cart-collaterals .cart_totals,
body.alles-figma-store.woocommerce-checkout form.checkout .col2-set,
body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order,
body.alles-figma-store.woocommerce-checkout form.checkout_coupon {
	border: 1px solid #080808;
	background: #fffefa !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #080808;
}

body.alles-figma-store.woocommerce-checkout form.checkout .col2-set .col-2 {
	border-top-color: #080808;
}

body.alles-figma-store.woocommerce-cart table.cart,
body.alles-figma-store.woocommerce-cart .cart_totals table.shop_table,
body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table,
body.alles-figma-store.woocommerce-checkout #payment,
body.alles-figma-store.woocommerce-checkout #payment div.payment_box,
body.alles-figma-store.woocommerce-checkout #ship-to-different-address label {
	border-color: #080808;
	background: #f7f5ee !important;
	color: #080808;
}

body.alles-figma-store.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #f7f5ee;
}

body.alles-figma-store.woocommerce-checkout #payment ul.payment_methods {
	border-color: #080808;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-billing-fields h3,
body.alles-figma-store.woocommerce-checkout .woocommerce-shipping-fields h3,
body.alles-figma-store.woocommerce-checkout #order_review_heading,
body.alles-figma-store.woocommerce-cart .cart_totals h2 {
	color: #080808;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-billing-fields h3::before,
body.alles-figma-store.woocommerce-checkout .woocommerce-shipping-fields h3::before,
body.alles-figma-store.woocommerce-checkout #order_review_heading::before,
body.alles-figma-store.woocommerce-cart .cart_totals h2::before {
	background: #817d73;
}

body.alles-figma-store.woocommerce-cart table.shop_table th,
body.alles-figma-store.woocommerce-cart table.shop_table td,
body.alles-figma-store.woocommerce-checkout table.shop_table th,
body.alles-figma-store.woocommerce-checkout table.shop_table td {
	border-color: rgba(8, 8, 8, .24);
	color: #080808;
}

body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item,
body.alles-figma-store.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item {
	border: 1px solid #080808;
	background: #fffefa;
}

body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item td,
body.alles-figma-store.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item td {
	border-bottom-color: rgba(8, 8, 8, .24);
}

body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr td::before,
body.alles-figma-store.woocommerce-page.woocommerce-cart table.shop_table_responsive tr td::before {
	color: #080808;
}

body.alles-figma-store.woocommerce-cart table.cart td.actions > .button:disabled,
body.alles-figma-store.woocommerce-cart table.cart td.actions > .button:disabled:hover,
body.alles-figma-store.woocommerce-cart table.cart td.actions > .button[disabled] {
	border-color: rgba(8, 8, 8, .28) !important;
	background: #d7d2c8 !important;
	color: rgba(8, 8, 8, .48) !important;
	opacity: 1 !important;
}

body.alles-figma-store .alles-home .alles-hero {
	grid-template-columns: minmax(0, .94fr) minmax(420px, .86fr);
}

body.alles-figma-store .alles-home .alles-hero__content {
	min-width: 0;
}

body.alles-figma-store .alles-home .alles-hero h1 {
	max-width: 680px;
	font-size: clamp(3.1rem, 6.45vw, 5.85rem);
	line-height: .94;
	overflow-wrap: normal;
}

body.alles-figma-store .woocommerce div.product div.images img,
body.alles-figma-store.woocommerce div.product div.images img {
	background: #050505 !important;
}

body.alles-figma-store .woocommerce div.product div.images .flex-control-thumbs img,
body.alles-figma-store.woocommerce div.product div.images .flex-control-thumbs img {
	background: #050505 !important;
}

body.alles-figma-store .woocommerce div.product div.images.woocommerce-product-gallery,
body.alles-figma-store.woocommerce div.product div.images.woocommerce-product-gallery,
body.alles-figma-store .woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
body.alles-figma-store.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	opacity: 1 !important;
}

body.alles-figma-store .alles-hoodie-mock figcaption {
	display: none;
}

body.alles-figma-store .alles-single-product-page {
	width: 100%;
	max-width: none;
}

body.alles-figma-store .alles-single-product-page .alles-single-product,
body.alles-figma-store .woocommerce-notices-wrapper {
	width: var(--alles-container);
	max-width: var(--alles-container);
	margin-right: auto;
	margin-left: auto;
}

@media (max-width: 1024px) {
	body.alles-figma-store.woocommerce-cart .alles-entry-content > .woocommerce,
	body.alles-figma-store.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
	}

	body.alles-figma-store.woocommerce-cart .cart-collaterals,
	body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order {
		position: static;
	}

	body.alles-figma-store.woocommerce-checkout #order_review_heading,
	body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order,
	body.alles-figma-store.woocommerce-checkout form.checkout .col2-set {
		grid-column: 1;
		grid-row: auto;
	}

	body.alles-figma-store .alles-home .alles-hero {
		grid-template-columns: 1fr;
	}

	body.alles-figma-store .alles-home .alles-hero h1 {
		max-width: 100%;
	}
}

/* Keep the single product purchase panel lean. */
body.alles-figma-store .alles-buy-confidence,
body.alles-figma-store .alles-product-delivery,
body.alles-figma-store .product_meta {
	display: none !important;
}

body.alles-figma-store .alles-entry-header h1 {
	padding-left: 0;
}

body.alles-figma-store .alles-entry-header h1::before {
	display: none;
	content: none;
}

/* Mobile cart: turn WooCommerce's responsive table into clean product cards. */
@media (max-width: 760px) {
	body.alles-figma-store.woocommerce-cart .alles-entry-content > .woocommerce {
		gap: 18px;
	}

	body.alles-figma-store.woocommerce-cart .woocommerce-cart-form {
		padding: 12px;
	}

	body.alles-figma-store.woocommerce-cart table.cart,
	body.alles-figma-store.woocommerce-cart table.cart tbody,
	body.alles-figma-store.woocommerce-cart table.cart tr,
	body.alles-figma-store.woocommerce-cart table.cart td {
		box-sizing: border-box;
	}

	body.alles-figma-store.woocommerce-cart table.cart {
		border: 0;
		background: transparent !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart thead {
		display: none;
	}

	body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item,
	body.alles-figma-store.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item {
		position: relative;
		display: grid !important;
		grid-template-columns: 94px minmax(0, 1fr) 28px;
		grid-template-areas:
			"thumb name remove"
			"thumb price price"
			"thumb qty qty"
			"thumb subtotal subtotal";
		gap: 0 12px;
		min-width: 0;
		margin: 0 0 14px;
		padding: 12px;
		border: 1px solid #080808;
		background: #fffefa !important;
	}

	body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item td,
	body.alles-figma-store.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item td {
		display: flex !important;
		min-width: 0;
		min-height: 0;
		gap: 12px;
		align-items: center;
		justify-content: space-between;
		padding: 9px 0;
		border: 0;
		border-bottom: 1px solid rgba(8, 8, 8, .18);
		background: transparent !important;
		text-align: right !important;
	}

	body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item td::before,
	body.alles-figma-store.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item td::before {
		flex: 0 0 auto;
		color: #080808;
		font-size: .68rem;
		font-weight: 950;
		line-height: 1;
		letter-spacing: .08em;
		text-transform: uppercase;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-thumbnail {
		grid-area: thumb;
		display: block !important;
		padding: 0 !important;
		border: 0 !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-thumbnail::before {
		display: none !important;
		content: none !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-thumbnail a {
		display: block;
		width: 94px;
		aspect-ratio: 1 / 1.12;
		overflow: hidden;
		border: 1px solid rgba(8, 8, 8, .28);
		background: #050505;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-thumbnail img {
		display: block;
		width: 100% !important;
		height: 100% !important;
		margin: 0 !important;
		border: 0 !important;
		background: #050505 !important;
		object-fit: contain;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-name {
		grid-area: name;
		align-items: flex-start;
		padding: 0 0 8px !important;
		text-align: left !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-name::before {
		display: none !important;
		content: none !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-name a {
		display: block;
		max-width: 100%;
		color: #080808;
		font-size: .76rem;
		font-weight: 950;
		line-height: 1.22;
		letter-spacing: .08em;
		text-align: left;
		text-decoration-thickness: 1px;
		text-transform: uppercase;
		overflow-wrap: anywhere;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-remove {
		grid-area: remove;
		position: static !important;
		z-index: 2;
		justify-content: flex-end !important;
		align-self: start;
		padding: 0 !important;
		border: 0 !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-remove::before {
		display: none !important;
		content: none !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove {
		display: grid;
		width: 26px;
		height: 26px;
		place-items: center;
		margin-left: auto;
		border: 1px solid #d42035;
		border-radius: 999px;
		color: #d42035 !important;
		font-size: 1rem;
		line-height: 1;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-price {
		grid-area: price;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-quantity {
		grid-area: qty;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-subtotal {
		grid-area: subtotal;
		border-bottom: 0 !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-price,
	body.alles-figma-store.woocommerce-cart table.cart td.product-subtotal {
		font-size: .82rem;
		font-weight: 800;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-quantity .quantity.alles-qty-enhanced {
		grid-template-columns: 36px 48px 36px;
		width: 120px;
		margin: 0 0 0 auto !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-quantity .quantity.alles-qty-enhanced button,
	body.alles-figma-store.woocommerce-cart table.cart td.product-quantity .quantity.alles-qty-enhanced input.qty {
		height: 38px;
		min-height: 38px;
		padding: 0;
		font-size: .92rem;
		line-height: 38px;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-quantity .quantity.alles-qty-enhanced .alles-qty-button {
		width: 100%;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.actions {
		display: grid !important;
		gap: 12px;
		margin-top: 2px;
		padding: 16px !important;
		border: 1px solid #080808 !important;
		background: #fffefa !important;
		text-align: stretch !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.actions::before {
		display: none !important;
		content: none !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.actions .coupon {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		width: 100%;
		max-width: none;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.actions .coupon .input-text,
	body.alles-figma-store.woocommerce-cart table.cart td.actions .coupon .button,
	body.alles-figma-store.woocommerce-cart table.cart td.actions > .button {
		width: 100% !important;
		margin: 0 !important;
	}

	body.alles-figma-store.woocommerce-cart .cart-collaterals {
		margin-top: 0;
	}

	body.alles-figma-store.woocommerce-cart .cart-collaterals .cart_totals {
		padding: 18px;
	}
}

@media (max-width: 430px) {
	body.alles-figma-store.woocommerce-cart .woocommerce-cart-form {
		padding: 10px;
	}

	body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item,
	body.alles-figma-store.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item {
		grid-template-columns: 78px minmax(0, 1fr) 26px;
		gap: 0 10px;
		padding: 10px;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-thumbnail a {
		width: 78px;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-name a {
		font-size: .68rem;
		letter-spacing: .07em;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-quantity .quantity.alles-qty-enhanced {
		grid-template-columns: 34px 44px 34px;
		width: 112px;
		margin-left: 0 !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart td.product-quantity {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 8px;
	}
}

/* Final responsive alignment guardrails. */
body.alles-figma-store {
	overflow-x: hidden;
}

body.alles-figma-store .alles-logo__wordmark {
	max-width: none;
	white-space: nowrap;
}

body.alles-figma-store .alles-header-inner,
body.alles-figma-store .alles-section,
body.alles-figma-store .alles-shop-page > section,
body.alles-figma-store .alles-page-shell,
body.alles-figma-store .alles-entry,
body.alles-figma-store .alles-entry-content > .woocommerce,
body.alles-figma-store .alles-single-product-page .alles-single-product,
body.alles-figma-store .woocommerce-notices-wrapper {
	width: var(--alles-container);
	max-width: var(--alles-container);
	margin-right: auto;
	margin-left: auto;
}

body.alles-figma-store .alles-entry-content,
body.alles-figma-store .woocommerce,
body.alles-figma-store .woocommerce-cart-form,
body.alles-figma-store .cart-collaterals,
body.alles-figma-store .cart_totals,
body.alles-figma-store .woocommerce-checkout form.checkout,
body.alles-figma-store .woocommerce-checkout .col2-set,
body.alles-figma-store .woocommerce-checkout-review-order {
	min-width: 0;
	max-width: 100%;
}

@media (max-width: 760px) {
	body.alles-figma-store {
		--alles-container: min(100%, calc(100dvw - 28px));
	}

	body.alles-figma-store .alles-main,
	body.alles-figma-store .alles-entry,
	body.alles-figma-store .alles-entry-content,
	body.alles-figma-store .alles-entry-content > .woocommerce,
	body.alles-figma-store .woocommerce-cart-form,
	body.alles-figma-store .cart-collaterals,
	body.alles-figma-store .cart_totals {
		overflow-x: clip;
	}

	body.alles-figma-store.woocommerce-cart table.cart,
	body.alles-figma-store.woocommerce-cart table.cart tbody {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.alles-figma-store.woocommerce-cart table.cart tr {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}
}

@media (max-width: 430px) {
	body.alles-figma-store {
		--alles-container: min(100%, calc(100dvw - 24px));
	}

	body.alles-figma-store .alles-logo__wordmark {
		max-width: 72px;
		font-size: .68rem;
	}
}

/* Cart micro-interactions. */
.alles-qty-button {
	position: relative;
	display: grid;
	place-items: center;
}

.alles-qty-icon {
	position: relative;
	display: block;
	width: 13px;
	height: 13px;
}

.alles-qty-icon::before,
.alles-qty-icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 2px;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
}

.alles-qty-icon--plus::after {
	width: 2px;
	height: 13px;
}

.alles-qty-icon--minus::after {
	display: none;
}

body.alles-figma-store .woocommerce a.remove {
	position: relative;
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid #080808;
	border-radius: 999px;
	background: #fffefa;
	color: #080808 !important;
	font-size: 0;
	line-height: 1;
	text-decoration: none;
	transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}

body.alles-figma-store .woocommerce a.remove:hover {
	border-color: #080808;
	background: #080808;
	color: #fffefa !important;
	transform: translateY(-1px);
}

body.alles-figma-store .woocommerce a.remove .alles-remove-icon,
body.alles-figma-store .woocommerce a.remove .alles-remove-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

body.alles-figma-store .woocommerce a.remove .alles-remove-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: square;
	stroke-linejoin: miter;
}

body.alles-figma-store .woocommerce a.remove[aria-busy="true"] .alles-remove-icon {
	opacity: 0;
}

body.alles-figma-store .woocommerce a.remove[aria-busy="true"]::after {
	position: absolute;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 999px;
	content: "";
	animation: alles-spin .62s linear infinite;
}

body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove {
	width: 34px;
	height: 34px;
	border-color: #080808;
	background: #fffefa;
	color: #080808 !important;
}

body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove:hover {
	border-color: #080808;
	background: #080808;
	color: #fffefa !important;
}

body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item {
	transition: opacity .18s ease, transform .18s ease, filter .18s ease;
}

body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item.is-removing {
	pointer-events: none;
	opacity: .45;
	transform: scale(.985);
	filter: saturate(.2);
}

body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item.is-removing td.product-thumbnail img {
	opacity: .65;
}

body.alles-figma-store.woocommerce-cart form.woocommerce-cart-form.is-updating {
	position: relative;
}

body.alles-figma-store.woocommerce-cart form.woocommerce-cart-form.is-updating::after,
body.alles-figma-store.woocommerce-cart form.woocommerce-cart-form.is-pending-update::after {
	position: absolute;
	right: 18px;
	bottom: 18px;
	z-index: 3;
	padding: 8px 11px;
	border: 1px solid #080808;
	background: #fffefa;
	color: #080808;
	font-size: .66rem;
	font-weight: 950;
	letter-spacing: .12em;
	line-height: 1;
	text-transform: uppercase;
	content: "Saving";
}

body.alles-figma-store.woocommerce-cart form.woocommerce-cart-form.is-pending-update::after {
	content: "Auto-save";
}

.alles-cart-status {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9999;
	max-width: min(320px, calc(100vw - 36px));
	padding: 13px 16px;
	border: 1px solid #080808;
	background: #080808;
	color: #fffefa;
	font-size: .74rem;
	font-weight: 950;
	letter-spacing: .12em;
	line-height: 1.2;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity .18s ease, transform .18s ease;
}

.alles-cart-status.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.alles-cart-status[data-tone="success"] {
	border-color: #080808;
	background: #fffefa;
	color: #080808;
}

.alles-cart-status[data-tone="error"] {
	border-color: #b00020;
	background: #b00020;
	color: #fffefa;
}

@keyframes alles-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 760px) {
	body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove {
		width: 30px;
		height: 30px;
	}

	body.alles-figma-store.woocommerce-cart form.woocommerce-cart-form.is-updating::after,
	body.alles-figma-store.woocommerce-cart form.woocommerce-cart-form.is-pending-update::after {
		right: 14px;
		bottom: 14px;
	}

	.alles-cart-status {
		right: 14px;
		bottom: 14px;
	}
}

/* Minimal two-product storefront direction. */
body.alles-dark-store,
body.alles-figma-store {
	--alles-black: #fff;
	--alles-ink: #000;
	--alles-panel: #fff;
	--alles-panel-2: #fff;
	--alles-line: #000;
	--alles-line-strong: #000;
	--alles-text: #000;
	--alles-muted: #000;
	--alles-soft: #000;
	--alles-silver: #000;
	--alles-radius: 0;
	--alles-container: min(1180px, calc(100vw - 32px));
	background: #fff;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	overflow-x: hidden;
}

html {
	background: #fff;
}

body.alles-dark-store a,
body.alles-figma-store a {
	color: #000;
}

body.alles-figma-store .alles-site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	border: 0;
	background: transparent;
	backdrop-filter: none;
}

body.admin-bar.alles-figma-store .alles-site-header {
	top: 32px;
}

body.alles-figma-store .alles-header-inner {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	width: 100%;
	max-width: none;
	min-height: 56px;
	padding: 14px 18px 0;
	margin: 0;
	border: 0;
}

body.alles-figma-store .alles-brand-link {
	order: 2;
	justify-self: center;
	text-decoration: none;
}

body.alles-figma-store .alles-logo--header .alles-logo__image,
body.alles-figma-store .alles-logo__image {
	display: none;
}

body.alles-figma-store .alles-logo__wordmark {
	display: none;
}

body.alles-figma-store .alles-menu-toggle {
	position: relative;
	order: 1;
	display: block;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
}

body.alles-figma-store .alles-menu-toggle span:not(.screen-reader-text) {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 18px;
	height: 2px;
	background: #000;
	transform: translate(-50%, -50%);
	transition: transform .16s ease, opacity .16s ease;
}

body.alles-figma-store .alles-back-link {
	position: relative;
	order: 1;
	display: block;
	width: 24px;
	height: 24px;
	color: #000;
	text-decoration: none;
}

body.alles-figma-store .alles-back-link span::before,
body.alles-figma-store .alles-back-link span::after {
	position: absolute;
	top: 50%;
	left: 6px;
	width: 13px;
	height: 2px;
	background: #000;
	content: "";
	transform-origin: 1px 50%;
}

body.alles-figma-store .alles-back-link span::before {
	transform: rotate(45deg);
}

body.alles-figma-store .alles-back-link span::after {
	transform: rotate(-45deg);
}

body.alles-figma-store .alles-menu-toggle span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(90deg);
}

body.alles-figma-store .alles-menu-toggle span:nth-child(3) {
	display: none;
}

body.alles-figma-store.alles-menu-open .alles-menu-toggle span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

body.alles-figma-store.alles-menu-open .alles-menu-toggle span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

body.alles-figma-store .alles-header-actions {
	order: 3;
	justify-self: end;
	display: block;
}

body.alles-figma-store .alles-header-shop {
	display: none;
}

body.alles-figma-store .alles-cart-link {
	position: relative;
	display: block;
	min-width: 0;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	font-size: 0;
	text-decoration: none;
}

body.alles-figma-store .alles-cart-link > span:first-child {
	position: absolute;
	top: 7px;
	left: 5px;
	display: block;
	width: 14px;
	height: 13px;
	border: 2px solid #000;
	border-radius: 2px;
	font-size: 0;
}

body.alles-figma-store .alles-cart-link > span:first-child::before {
	position: absolute;
	top: -7px;
	left: 3px;
	width: 8px;
	height: 8px;
	border: 2px solid #000;
	border-bottom: 0;
	border-radius: 8px 8px 0 0;
	content: "";
}

body.alles-figma-store .alles-cart-count {
	display: none;
}

body.alles-figma-store .alles-primary-nav {
	position: fixed;
	top: 56px;
	left: 18px;
	display: none;
	width: auto;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

body.alles-figma-store.alles-menu-open .alles-primary-nav {
	display: block;
}

body.alles-figma-store .alles-menu {
	display: grid;
	gap: 8px;
}

body.alles-figma-store .alles-menu li {
	border: 0;
}

body.alles-figma-store .alles-menu a {
	display: block;
	padding: 0;
	border: 0;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: uppercase;
}

body.alles-figma-store .alles-site-footer {
	display: none;
}

body.alles-figma-store .alles-main {
	min-height: 100svh;
	padding-top: 58px;
	background: #fff;
	color: #000;
}

body.alles-figma-store .alles-bully-home {
	display: grid;
	align-items: stretch;
	padding-top: 58px;
}

body.alles-figma-store .alles-bully-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	justify-items: center;
	width: 100%;
	min-height: calc(100svh - 58px);
	padding: clamp(38px, 8vh, 86px) clamp(18px, 6vw, 74px) 54px;
	gap: clamp(28px, 8vw, 112px);
}

body.alles-figma-store .alles-bully-collection .alles-bully-split {
	min-height: calc(100svh - 58px);
}

body.alles-figma-store .woocommerce .alles-bully-split ul.products,
body.alles-figma-store.woocommerce ul.products,
body.alles-figma-store.woocommerce-page ul.products,
body.alles-figma-store .alles-bully-split ul.products {
	display: contents !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body.alles-figma-store .alles-bully-tile,
body.alles-figma-store li.product.alles-bully-tile,
body.alles-figma-store .alles-bully-tile__link {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	max-width: 520px;
	min-height: 0;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #000;
	text-align: center;
	text-decoration: none;
}

body.alles-figma-store .alles-bully-tile__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(33vw, 390px);
	max-width: 100%;
	min-height: 280px;
	margin: 0 auto clamp(30px, 7vh, 58px);
	background: transparent;
}

body.alles-figma-store .alles-bully-tile__image img,
body.alles-figma-store .alles-bully-tile__image .alles-hoodie-mock img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 430px;
	object-fit: contain;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	filter: none !important;
	transition: transform .18s ease;
}

body.alles-figma-store .alles-bully-tile:hover .alles-bully-tile__image img,
body.alles-figma-store .alles-bully-tile__link:hover .alles-bully-tile__image img {
	transform: scale(1.015);
}

body.alles-figma-store .alles-bully-tile__fallback,
body.alles-figma-store .alles-bully-tile__fallback img {
	width: 100%;
}

body.alles-figma-store .alles-bully-tile__name {
	display: block;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: clamp(14px, 1.5vw, 18px);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: .02em;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-empty {
	grid-column: 1 / -1;
	color: #000;
	text-align: center;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-single-page {
	padding-top: 58px;
}

body.alles-figma-store .alles-single-product-page .alles-single-product,
body.alles-figma-store .alles-bully-single {
	width: 100%;
	max-width: none;
	margin: 0;
}

body.alles-figma-store .alles-bully-detail {
	display: flex;
	min-height: calc(100svh - 58px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(34px, 8vh, 78px) 18px 70px;
	color: #000;
	text-align: center;
}

body.alles-figma-store .alles-bully-detail__gallery {
	display: flex;
	justify-content: center;
	width: min(520px, 86vw);
	margin: 0 auto clamp(34px, 7vh, 62px);
}

body.alles-figma-store.woocommerce div.product div.images,
body.alles-figma-store .woocommerce div.product div.images,
body.alles-figma-store .alles-bully-detail__gallery div.images {
	float: none !important;
	width: 100% !important;
	max-width: 520px;
	margin: 0 !important;
	opacity: 1 !important;
}

body.alles-figma-store.woocommerce div.product div.images img,
body.alles-figma-store .woocommerce div.product div.images img,
body.alles-figma-store .alles-bully-detail__gallery img {
	width: 100%;
	height: auto;
	max-height: min(48vh, 520px);
	object-fit: contain;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.alles-figma-store.woocommerce div.product div.images .flex-control-thumbs,
body.alles-figma-store .woocommerce div.product div.images .flex-control-thumbs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin: 18px 0 0;
	padding: 0;
}

body.alles-figma-store.woocommerce div.product div.images .flex-control-thumbs li,
body.alles-figma-store .woocommerce div.product div.images .flex-control-thumbs li {
	width: 42px;
	float: none;
}

body.alles-figma-store.woocommerce div.product div.images .flex-control-thumbs img,
body.alles-figma-store .woocommerce div.product div.images .flex-control-thumbs img {
	max-height: 42px;
	opacity: .45;
	background: transparent !important;
}

body.alles-figma-store.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
body.alles-figma-store .woocommerce div.product div.images .flex-control-thumbs img.flex-active {
	opacity: 1;
}

body.alles-figma-store .woocommerce-product-gallery__trigger {
	display: none;
}

body.alles-figma-store .alles-bully-detail__summary {
	width: min(440px, 92vw);
	margin: 0 auto;
	color: #000;
	text-align: center;
}

body.alles-figma-store .alles-bully-detail__summary .product_title,
body.alles-figma-store.woocommerce div.product .product_title {
	margin: 0 0 26px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: .02em;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-detail__summary .price,
body.alles-figma-store.woocommerce div.product p.price,
body.alles-figma-store.woocommerce div.product span.price {
	display: block;
	margin: 0 0 25px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 700;
	line-height: 1;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart,
body.alles-figma-store.woocommerce div.product form.cart {
	display: grid;
	justify-items: center;
	margin: 0;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .quantity {
	display: none !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .button,
body.alles-figma-store.woocommerce div.product form.cart .button {
	display: grid !important;
	width: 48px !important;
	min-width: 48px !important;
	height: 48px !important;
	min-height: 48px !important;
	place-items: center;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #000 !important;
	font-size: 0 !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .button::after,
body.alles-figma-store.woocommerce div.product form.cart .button::after {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: 300;
	line-height: 1;
	content: "+";
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .button.added::after {
	content: "✓";
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .button.is-loading::after {
	width: 18px;
	height: 18px;
	border: 2px solid #000;
	border-top-color: transparent;
	border-radius: 999px;
	content: "";
	animation: alles-spin .62s linear infinite;
}

body.alles-figma-store .alles-bully-detail__purchase .added_to_cart {
	display: block;
	margin-top: 10px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
	text-transform: uppercase;
}

body.alles-figma-store .alles-bully-detail__links {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-top: 14px;
}

body.alles-figma-store .alles-bully-detail__links a {
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: underline;
}

body.alles-figma-store .alles-bully-detail__copy {
	display: none;
}

body.alles-figma-store .alles-bully-detail__copy p {
	margin: 0 0 8px;
}

body.alles-figma-store .alles-size-options {
	justify-content: center;
	margin: 0 0 22px;
}

body.alles-figma-store .alles-size-option {
	min-width: 42px;
	min-height: 34px;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
}

body.alles-figma-store .alles-size-option:hover,
body.alles-figma-store .alles-size-option.is-active {
	background: #000;
	color: #fff;
}

body.alles-figma-store .alles-product-info,
body.alles-figma-store .related.products,
body.alles-figma-store .upsells.products,
body.alles-figma-store .alles-gallery-chest-rule,
body.alles-figma-store .alles-shop-hero,
body.alles-figma-store .alles-shop-toolbar,
body.alles-figma-store .woocommerce-result-count,
body.alles-figma-store .woocommerce-ordering {
	display: none !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.alles-figma-store.woocommerce-checkout form.checkout_coupon {
	display: none !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-billing-fields h3::before,
body.alles-figma-store.woocommerce-checkout .woocommerce-shipping-fields h3::before,
body.alles-figma-store.woocommerce-checkout #order_review_heading::before,
body.alles-figma-store.woocommerce-cart .cart_totals h2::before {
	display: none !important;
}

body.alles-figma-store .woocommerce-notices-wrapper,
body.alles-figma-store .woocommerce-message,
body.alles-figma-store .woocommerce-info,
body.alles-figma-store .woocommerce-error {
	width: min(620px, calc(100vw - 32px));
	margin: 18px auto;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
}

body.alles-figma-store .woocommerce-notices-wrapper:empty {
	display: none !important;
}

body.alles-figma-store .alles-page-shell {
	width: min(740px, calc(100vw - 32px));
	padding-top: 94px;
	margin: 0 auto;
}

body.alles-figma-store .alles-entry {
	width: 100%;
	max-width: 100%;
	padding: 0 0 70px;
}

body.alles-figma-store .alles-entry-header {
	margin: 0 0 36px;
}

body.alles-figma-store .alles-entry-header h1 {
	padding: 0;
	margin: 0;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: clamp(28px, 7vw, 44px);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

body.alles-figma-store .alles-entry-header h1::before {
	display: none !important;
}

body.alles-figma-store.woocommerce-cart .woocommerce-cart-form,
body.alles-figma-store.woocommerce-cart .cart-collaterals .cart_totals,
body.alles-figma-store.woocommerce-checkout form.checkout .col2-set,
body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order,
body.alles-figma-store.woocommerce-checkout form.checkout_coupon {
	border: 0;
	background: #fff !important;
	color: #000;
	box-shadow: none !important;
}

body.alles-figma-store.woocommerce-cart table.cart,
body.alles-figma-store.woocommerce-cart .cart_totals table.shop_table,
body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table,
body.alles-figma-store.woocommerce-checkout #payment,
body.alles-figma-store.woocommerce-checkout #payment div.payment_box {
	border: 1px solid #000;
	background: #fff !important;
	color: #000;
}

body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove,
body.alles-figma-store .woocommerce a.remove {
	border-color: #000;
	background: #fff;
	color: #000 !important;
}

body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove:hover,
body.alles-figma-store .woocommerce a.remove:hover {
	background: #000;
	color: #fff !important;
}

body.alles-figma-store .woocommerce button.button,
body.alles-figma-store .woocommerce a.button,
body.alles-figma-store .woocommerce input.button,
body.alles-figma-store .woocommerce #respond input#submit,
body.alles-figma-store .alles-button {
	border: 1px solid #000 !important;
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	text-transform: uppercase !important;
}

body.alles-figma-store .woocommerce button.button:hover,
body.alles-figma-store .woocommerce a.button:hover,
body.alles-figma-store .woocommerce input.button:hover,
body.alles-figma-store .woocommerce #respond input#submit:hover,
body.alles-figma-store .alles-button:hover {
	background: #fff !important;
	color: #000 !important;
}

body.alles-figma-store input,
body.alles-figma-store select,
body.alles-figma-store textarea,
body.alles-figma-store .select2-container--default .select2-selection--single {
	border: 1px solid #000 !important;
	border-radius: 0 !important;
	background: #fff !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
}

@media (max-width: 760px) {
	body.admin-bar.alles-figma-store .alles-site-header {
		top: 46px;
	}

	body.alles-figma-store .alles-header-inner {
		grid-template-columns: 34px minmax(0, 1fr) 34px;
		min-height: 52px;
		padding: 14px 16px 0;
	}

	body.alles-figma-store .alles-main,
	body.alles-figma-store .alles-bully-home,
	body.alles-figma-store .alles-bully-single-page {
		padding-top: 52px;
	}

	body.alles-figma-store .alles-bully-split {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 50px 20px 62px;
		gap: 72px;
	}

	body.alles-figma-store .alles-bully-tile__image {
		width: min(76vw, 360px);
		min-height: 220px;
		margin-bottom: 28px;
	}

	body.alles-figma-store .alles-bully-tile__image img {
		max-height: 340px;
	}

	body.alles-figma-store .alles-bully-detail {
		min-height: calc(100svh - 52px);
		padding: 44px 16px 66px;
	}

	body.alles-figma-store .alles-bully-detail__gallery {
		width: min(86vw, 420px);
		margin-bottom: 34px;
	}

	body.alles-figma-store .alles-page-shell {
		width: min(100%, calc(100vw - 28px));
		padding-top: 86px;
	}

	body.alles-figma-store.woocommerce-cart .woocommerce-cart-form {
		padding: 0;
	}

	body.alles-figma-store.woocommerce-cart table.shop_table_responsive tr.cart_item,
	body.alles-figma-store.woocommerce-page.woocommerce-cart table.shop_table_responsive tr.cart_item {
		border: 1px solid #000;
		background: #fff !important;
	}
}

/* Final cart and checkout lock: keep the BULLY-style purchase flow above legacy rules. */
body.alles-figma-store.woocommerce-cart .alles-site-header,
body.alles-figma-store.woocommerce-checkout .alles-site-header,
body.alles-figma-store.woocommerce-cart .alles-site-footer,
body.alles-figma-store.woocommerce-checkout .alles-site-footer,
body.alles-figma-store.woocommerce-cart .alles-entry-header,
body.alles-figma-store.woocommerce-checkout .alles-entry-header {
	display: none !important;
}

body.alles-figma-store.woocommerce-cart .alles-main,
body.alles-figma-store.woocommerce-checkout .alles-main,
body.alles-figma-store.woocommerce-cart .alles-page-shell,
body.alles-figma-store.woocommerce-checkout .alles-page-shell,
body.alles-figma-store.woocommerce-cart .alles-entry,
body.alles-figma-store.woocommerce-checkout .alles-entry,
body.alles-figma-store.woocommerce-cart .alles-entry-content,
body.alles-figma-store.woocommerce-checkout .alles-entry-content {
	width: 100% !important;
	max-width: none !important;
	min-height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	background: #fff !important;
	color: #000 !important;
}

body.alles-figma-store.woocommerce-cart .alles-entry-content > .woocommerce {
	display: flex !important;
	justify-content: flex-end !important;
	width: 100% !important;
	min-height: 100svh !important;
	margin: 0 !important;
	background: #fff !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart {
	display: flex !important;
	flex-direction: column !important;
	width: min(388px, 100vw) !important;
	min-height: 100svh !important;
	padding: 25px 24px 24px !important;
	margin: 0 0 0 auto !important;
	background: #fff !important;
	box-shadow: -28px 0 48px rgba(0, 0, 0, .06) !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart__form,
body.alles-figma-store.woocommerce-cart .woocommerce-cart-form {
	display: flex !important;
	flex: 1 1 auto !important;
	flex-direction: column !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart-item {
	display: grid !important;
	grid-template-columns: 76px minmax(0, 1fr) !important;
	gap: 0 20px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart__items {
	display: grid !important;
	gap: 30px !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart__summary {
	margin-top: auto !important;
	padding-top: 44px !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart__summary .checkout-button,
body.alles-figma-store.woocommerce-cart .alles-bully-cart__summary a.checkout-button.button.alt.wc-forward,
body.alles-figma-store.woocommerce-checkout #payment #place_order {
	display: grid !important;
	width: 100% !important;
	min-height: 54px !important;
	place-items: center !important;
	padding: 0 18px !important;
	border: 1px solid #000 !important;
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout-summarybar {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	min-height: 48px !important;
	padding: 0 24px !important;
	margin: 0 !important;
	background: #efefef !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 14px !important;
	text-transform: uppercase !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout {
	width: min(612px, calc(100vw - 32px)) !important;
	margin: 0 auto !important;
	padding: 42px 0 80px !important;
	background: #fff !important;
}

body.alles-figma-store.woocommerce-checkout form.checkout,
body.alles-figma-store.woocommerce-checkout form.checkout .col2-set,
body.alles-figma-store.woocommerce-checkout form.checkout .col2-set .col-1,
body.alles-figma-store.woocommerce-checkout form.checkout .col2-set .col-2,
body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order {
	display: block !important;
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.alles-figma-store.woocommerce-checkout form.checkout .col2-set .col-2 {
	display: none !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.alles-figma-store.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
	display: block !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout-section-title,
body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__delivery-note h3,
body.alles-figma-store.woocommerce-checkout #order_review_heading {
	display: block !important;
	margin: 32px 0 14px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.1 !important;
	text-transform: uppercase !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout-section-title::before,
body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__delivery-note h3::before,
body.alles-figma-store.woocommerce-checkout #order_review_heading::before {
	display: none !important;
}

body.alles-figma-store.woocommerce-checkout form .form-row {
	display: block !important;
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 0 12px !important;
}

body.alles-figma-store.woocommerce-checkout form .form-row input.input-text,
body.alles-figma-store.woocommerce-checkout form .form-row textarea,
body.alles-figma-store.woocommerce-checkout form .form-row select,
body.alles-figma-store.woocommerce-checkout .select2-container--default .select2-selection--single {
	width: 100% !important;
	height: 56px !important;
	min-height: 56px !important;
	padding: 0 16px !important;
	border: 1px solid #ddd !important;
	border-radius: 0 !important;
	background: #fff !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 16px !important;
	line-height: 56px !important;
	box-shadow: none !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-checkout-review-order-table {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

body.alles-figma-store.woocommerce-checkout #payment {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: #fff !important;
}

body.alles-figma-store.woocommerce-checkout #payment ul.payment_methods {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

body.alles-figma-store.woocommerce-checkout #payment div.payment_box {
	padding: 15px 20px !important;
	margin: 10px 0 0 !important;
	border: 0 !important;
	background: #f0f0f0 !important;
	color: #666 !important;
}

body.alles-figma-store.woocommerce-checkout #payment .place-order {
	padding: 34px 0 0 !important;
	margin: 0 !important;
}

@media (max-width: 760px) {
	body.alles-figma-store.woocommerce-checkout .alles-bully-checkout {
		width: calc(100vw - 32px) !important;
		padding: 38px 0 70px !important;
	}

	body.alles-figma-store.woocommerce-checkout .alles-bully-checkout-summarybar {
		padding: 0 16px !important;
	}
}

@media (max-width: 480px) {
	body.alles-figma-store.woocommerce-cart .alles-bully-cart {
		width: 100vw !important;
		padding: 24px 20px 22px !important;
		box-shadow: none !important;
	}
}

/* In-page cart drawer and visible bag quantity. */
body.alles-figma-store .alles-cart-link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 5px !important;
	width: auto !important;
	min-width: 36px !important;
	height: 24px !important;
}

body.alles-figma-store .alles-cart-link > span:first-child {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	order: 2 !important;
	flex: 0 0 auto !important;
	display: block !important;
	width: 14px !important;
	height: 13px !important;
	border: 2px solid #000 !important;
	border-radius: 2px !important;
	background: transparent !important;
	font-size: 0 !important;
}

body.alles-figma-store .alles-cart-count {
	position: static !important;
	order: 1 !important;
	display: block !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-align: right !important;
}

body.alles-figma-store .alles-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 3000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .16s ease, visibility .16s ease;
}

body.alles-figma-store .alles-cart-drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.alles-figma-store .alles-cart-drawer__backdrop {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, .72);
	cursor: default;
}

body.alles-figma-store .alles-cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(388px, 100vw);
	height: 100%;
	overflow: auto;
	background: #fff;
	box-shadow: -28px 0 48px rgba(0, 0, 0, .06);
	transform: translateX(24px);
	transition: transform .18s ease;
}

body.alles-figma-store .alles-cart-drawer.is-open .alles-cart-drawer__panel {
	transform: translateX(0);
}

body.alles-figma-store .alles-cart-drawer__content {
	min-height: 100%;
	background: #fff;
}

body.alles-figma-store .alles-cart-drawer__content .alles-bully-cart {
	width: 100% !important;
	min-height: 100svh !important;
	margin: 0 !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-cart-drawer.is-loading .alles-cart-drawer__content::before {
	position: absolute;
	top: 25px;
	left: 24px;
	color: #000;
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	content: "Cart";
}

body.alles-figma-store .alles-cart-drawer.is-loading .alles-cart-drawer__content::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid #000;
	border-top-color: transparent;
	border-radius: 999px;
	content: "";
	animation: alles-spin .62s linear infinite;
}

body.alles-figma-store.alles-cart-drawer-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	body.alles-figma-store .alles-cart-drawer__panel {
		width: 100vw;
		box-shadow: none;
	}
}

/* Yeezy-style cart and checkout parity pass. */
body.alles-figma-store,
body.alles-figma-store.woocommerce-cart,
body.alles-figma-store.woocommerce-checkout {
	background: #fff !important;
	color: #000 !important;
}

body.alles-figma-store .alles-cart-drawer__backdrop {
	background: rgba(255, 255, 255, .78) !important;
}

body.alles-figma-store .alles-cart-drawer__panel {
	width: min(430px, 100vw) !important;
	box-shadow: -24px 0 56px rgba(0, 0, 0, .08) !important;
}

body.alles-figma-store .alles-cart-drawer__content .alles-bully-cart,
body.alles-figma-store .alles-bully-cart {
	width: min(430px, 100vw) !important;
	padding: 32px 32px 26px !important;
	background: #fff !important;
	color: #000 !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-bully-cart__header {
	margin: 0 0 70px !important;
}

body.alles-figma-store .alles-bully-cart__header h1 {
	font-size: 24px !important;
	letter-spacing: 0 !important;
}

body.alles-figma-store .alles-bully-cart__close {
	width: 32px !important;
	height: 32px !important;
	font-size: 34px !important;
}

body.alles-figma-store .alles-bully-cart__items {
	gap: 62px !important;
}

body.alles-figma-store .alles-bully-cart-item {
	grid-template-columns: 88px minmax(0, 1fr) !important;
	column-gap: 26px !important;
	min-height: 118px !important;
}

body.alles-figma-store .alles-bully-cart-item__image,
body.alles-figma-store .alles-bully-cart-item__image a {
	width: 88px !important;
	height: 88px !important;
	background: #f0f0f0 !important;
}

body.alles-figma-store .alles-bully-cart-item__image img {
	object-fit: cover !important;
}

body.alles-figma-store .alles-bully-cart-item__top {
	grid-template-columns: minmax(0, 1fr) 28px !important;
	gap: 12px !important;
	margin-bottom: 16px !important;
}

body.alles-figma-store .alles-bully-cart-item h2 {
	font-size: clamp(20px, 2.2vw, 26px) !important;
	font-weight: 700 !important;
	line-height: 1.05 !important;
	letter-spacing: .02em !important;
}

body.alles-figma-store .alles-bully-cart-item__remove,
body.alles-figma-store.woocommerce-cart .woocommerce a.remove,
body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove {
	width: 28px !important;
	height: 28px !important;
	min-width: 28px !important;
	min-height: 28px !important;
	font-size: 32px !important;
	transition: opacity .12s ease, transform .12s ease !important;
}

body.alles-figma-store .alles-bully-cart-item__remove:hover,
body.alles-figma-store.woocommerce-cart .woocommerce a.remove:hover {
	opacity: .48 !important;
	transform: scale(.94) !important;
}

body.alles-figma-store .alles-bully-cart-item__price {
	margin-bottom: 54px !important;
	font-size: clamp(21px, 2vw, 28px) !important;
	line-height: 1 !important;
}

body.alles-figma-store .alles-bully-cart-item__qty {
	gap: 20px !important;
	font-size: 19px !important;
	color: #aaa !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 22px !important;
	width: auto !important;
	height: 38px !important;
	border: 0 !important;
	background: transparent !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced .alles-qty-button--plus {
	order: 1 !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced input.qty {
	order: 2 !important;
	width: 32px !important;
	height: 38px !important;
	min-height: 38px !important;
	font-size: 27px !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced .alles-qty-button--minus {
	order: 3 !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced button {
	width: 28px !important;
	height: 38px !important;
	min-height: 38px !important;
	font-size: 32px !important;
}

body.alles-figma-store .alles-bully-cart__coupon summary {
	font-size: 17px !important;
	color: #777 !important;
	text-transform: none !important;
}

body.alles-figma-store .alles-bully-cart__summary {
	padding-top: 72px !important;
}

body.alles-figma-store .alles-bully-cart__total {
	margin-bottom: 28px !important;
	font-size: 25px !important;
}

body.alles-figma-store .alles-bully-cart__summary .checkout-button,
body.alles-figma-store.woocommerce-checkout #payment #place_order {
	min-height: 62px !important;
	background: #000 !important;
	color: #fff !important;
	font-size: 16px !important;
	letter-spacing: 0 !important;
}

body.alles-figma-store .alles-bully-checkout-summarybar {
	font-size: 15px !important;
	min-height: 52px !important;
	background: #f0f0f0 !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout {
	width: min(1160px, calc(100vw - 48px)) !important;
	padding: 42px 0 92px !important;
	background: #fff !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__brand {
	margin-bottom: 52px !important;
	text-align: center !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__brand a {
	font-size: 28px !important;
	letter-spacing: 0 !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__layout {
	display: grid !important;
	grid-template-columns: minmax(0, 612px) minmax(320px, 388px) !important;
	gap: 58px !important;
	align-items: start !important;
	justify-content: center !important;
}

body.alles-figma-store.woocommerce-checkout form.checkout.alles-bully-checkout__form {
	display: block !important;
	width: 100% !important;
	max-width: 612px !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__express {
	display: block !important;
	margin: 0 0 34px !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__express-actions {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 8px !important;
	margin: 0 0 20px !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-express-button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	width: 100% !important;
	height: 48px !important;
	padding: 0 18px !important;
	border: 1px solid #000 !important;
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	cursor: default !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-express-button span {
	font-weight: 700 !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-express-button strong {
	font: inherit !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__rule-label,
body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__or {
	margin-bottom: 20px !important;
	color: #777 !important;
	font-size: 15px !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__or {
	margin-top: 0 !important;
	margin-bottom: 34px !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card {
	position: sticky !important;
	top: 36px !important;
	width: 100% !important;
	padding: 22px 24px !important;
	background: #f0f0f0 !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__items {
	display: grid !important;
	gap: 18px !important;
	padding-bottom: 20px !important;
	border-bottom: 1px solid #ddd !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__item {
	display: grid !important;
	grid-template-columns: 66px minmax(0, 1fr) auto !important;
	gap: 16px !important;
	align-items: center !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__image {
	position: relative !important;
	width: 66px !important;
	height: 66px !important;
	background: #fff !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__image span {
	position: absolute !important;
	top: -6px !important;
	right: -8px !important;
	display: grid !important;
	width: 24px !important;
	height: 24px !important;
	place-items: center !important;
	background: #000 !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__item strong,
body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__item em {
	color: #000 !important;
	font-size: 15px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 1.15 !important;
	letter-spacing: .02em !important;
	text-transform: uppercase !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__item em {
	white-space: nowrap !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__totals {
	display: grid !important;
	gap: 16px !important;
	padding-top: 20px !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__line {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 18px !important;
	font-size: 15px !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__line strong {
	font: inherit !important;
	font-weight: 400 !important;
	text-align: right !important;
	text-transform: none !important;
	white-space: nowrap !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__line--total {
	font-size: 18px !important;
	font-weight: 700 !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__line--total strong {
	display: inline-flex !important;
	align-items: baseline !important;
	gap: 8px !important;
	font-weight: 700 !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-order-card__line--total small {
	color: #777 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

body.alles-figma-store.woocommerce-checkout form .form-row input.input-text,
body.alles-figma-store.woocommerce-checkout form .form-row textarea,
body.alles-figma-store.woocommerce-checkout form .form-row select,
body.alles-figma-store.woocommerce-checkout .select2-container--default .select2-selection--single {
	height: 58px !important;
	min-height: 58px !important;
	border-color: #ddd !important;
	background: #fff !important;
	font-size: 16px !important;
	line-height: 58px !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__delivery-note p {
	min-height: 52px !important;
	padding: 17px 20px !important;
	background: #f0f0f0 !important;
	color: #777 !important;
}

body.alles-figma-store.woocommerce-checkout #payment {
	border: 2px solid #000 !important;
	padding: 18px !important;
}

body.alles-figma-store.woocommerce-checkout #payment div.payment_box {
	background: #f5f5f5 !important;
}

body.alles-figma-store.woocommerce-checkout .woocommerce-error,
body.alles-figma-store.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-error {
	border: 1px solid #d20f0f !important;
	background: #fff !important;
	color: #d20f0f !important;
	font-family: "Courier New", Courier, monospace !important;
}

@media (min-width: 980px) {
	body.alles-figma-store.woocommerce-checkout .alles-bully-checkout-summarybar {
		display: none !important;
	}
}

@media (max-width: 979px) {
	body.alles-figma-store.woocommerce-checkout .alles-bully-checkout {
		width: min(612px, calc(100vw - 32px)) !important;
		padding-top: 34px !important;
	}

	body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__layout {
		display: block !important;
	}

	body.alles-figma-store.woocommerce-checkout .alles-bully-order-card {
		display: none !important;
	}
}

@media (max-width: 560px) {
	body.alles-figma-store .alles-cart-drawer__panel,
	body.alles-figma-store .alles-cart-drawer__content .alles-bully-cart,
	body.alles-figma-store .alles-bully-cart {
		width: 100vw !important;
	}

	body.alles-figma-store .alles-cart-drawer__content .alles-bully-cart,
	body.alles-figma-store .alles-bully-cart {
		padding: 34px 28px 24px !important;
	}

	body.alles-figma-store .alles-bully-cart__header {
		margin-bottom: 78px !important;
	}

	body.alles-figma-store .alles-bully-cart-item {
		grid-template-columns: 92px minmax(0, 1fr) !important;
		column-gap: 26px !important;
	}

	body.alles-figma-store .alles-bully-cart-item__image,
	body.alles-figma-store .alles-bully-cart-item__image a {
		width: 92px !important;
		height: 92px !important;
	}

	body.alles-figma-store .alles-bully-cart-item h2 {
		font-size: clamp(22px, 7vw, 32px) !important;
	}

	body.alles-figma-store .alles-bully-cart-item__price {
		font-size: clamp(24px, 7vw, 34px) !important;
	}

	body.alles-figma-store .alles-bully-cart-item__qty {
		font-size: 23px !important;
	}

	body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__express-actions {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 380px) {
	body.alles-figma-store .alles-cart-drawer__content .alles-bully-cart,
	body.alles-figma-store .alles-bully-cart {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}

	body.alles-figma-store .alles-bully-cart-item {
		grid-template-columns: 78px minmax(0, 1fr) !important;
		column-gap: 20px !important;
	}

	body.alles-figma-store .alles-bully-cart-item__image,
	body.alles-figma-store .alles-bully-cart-item__image a {
		width: 78px !important;
		height: 78px !important;
	}
}

/* Single product add button alignment. */
body.alles-figma-store .alles-bully-detail__purchase {
	display: flex !important;
	justify-content: center !important;
	width: 100% !important;
	margin: 30px auto 0 !important;
	text-align: center !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 54px !important;
	margin: 0 auto !important;
	padding: 0 !important;
	text-align: center !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button {
	position: relative !important;
	float: none !important;
	display: block !important;
	width: 54px !important;
	min-width: 54px !important;
	height: 54px !important;
	min-height: 54px !important;
	margin: 0 auto !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: transparent !important;
	font-size: 0 !important;
	line-height: 1 !important;
	text-indent: -9999px !important;
	overflow: hidden !important;
	box-shadow: none !important;
	appearance: none !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	display: block !important;
	color: #000 !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 42px !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	text-indent: 0 !important;
	transform: translate(-50%, -54%) !important;
	content: "+" !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button.added::after {
	font-size: 32px !important;
	transform: translate(-50%, -50%) !important;
	content: "✓" !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button.is-loading::after {
	width: 18px !important;
	height: 18px !important;
	border: 2px solid #000 !important;
	border-top-color: transparent !important;
	border-radius: 999px !important;
	font-size: 0 !important;
	transform: translate(-50%, -50%) !important;
	content: "" !important;
	animation: alles-spin .62s linear infinite !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button:hover::after {
	transform: translate(-50%, -54%) scale(1.08) !important;
}

body.alles-figma-store .alles-bully-detail__links {
	margin-top: 22px !important;
}

/* The collection plus is a product-state control, not a WordPress menu. */
body.alles-figma-store .alles-primary-nav,
body.alles-figma-store.alles-menu-open .alles-primary-nav {
	display: none !important;
}

body.alles-figma-store .alles-menu-toggle,
body.alles-figma-store .alles-menu-toggle:hover,
body.alles-figma-store .alles-menu-toggle:focus,
body.alles-figma-store .alles-menu-toggle:focus-visible,
body.alles-figma-store .alles-menu-toggle:active {
	border: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-menu-toggle {
	cursor: pointer !important;
}

body.alles-figma-store .alles-menu-toggle:hover span:not(.screen-reader-text) {
	transform: translate(-50%, -50%) scale(1.08) !important;
}

body.alles-figma-store .alles-menu-toggle:hover span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(90deg) scale(1.08) !important;
}

@media (max-width: 560px) {
	body.alles-figma-store .alles-bully-detail__purchase {
		margin-top: 24px !important;
	}

	body.alles-figma-store .alles-bully-detail__purchase form.cart,
	body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart {
		min-height: 58px !important;
	}

	body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button,
	body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button {
		width: 58px !important;
		min-width: 58px !important;
		height: 58px !important;
		min-height: 58px !important;
	}
}

/* Collection zoom mode, matching the reference product preview behavior. */
body.alles-figma-store .alles-menu-toggle.is-back span:nth-child(1),
body.alles-figma-store.alles-collection-zoomed .alles-menu-toggle span:nth-child(1),
body.alles-figma-store .alles-menu-toggle.is-back span:nth-child(2),
body.alles-figma-store.alles-collection-zoomed .alles-menu-toggle span:nth-child(2) {
	left: 7px !important;
	width: 14px !important;
	transform-origin: 1px 50% !important;
}

body.alles-figma-store .alles-menu-toggle.is-back span:nth-child(1),
body.alles-figma-store.alles-collection-zoomed .alles-menu-toggle span:nth-child(1) {
	transform: translate(0, -50%) rotate(45deg) !important;
}

body.alles-figma-store .alles-menu-toggle.is-back span:nth-child(2),
body.alles-figma-store.alles-collection-zoomed .alles-menu-toggle span:nth-child(2) {
	transform: translate(0, -50%) rotate(-45deg) !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-home,
body.alles-figma-store.alles-collection-zoomed .alles-bully-collection {
	overflow-x: hidden !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-split {
	grid-template-columns: 1fr !important;
	width: min(680px, calc(100vw - 48px)) !important;
	min-height: auto !important;
	gap: clamp(68px, 12vh, 120px) !important;
	padding-top: clamp(86px, 14vh, 132px) !important;
	margin: 0 auto !important;
	transition: width .18s ease, gap .18s ease !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-tile,
body.alles-figma-store.alles-collection-zoomed li.product.alles-bully-tile,
body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__link {
	width: 100% !important;
	max-width: none !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image {
	width: min(580px, 92vw) !important;
	min-height: 0 !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image img,
body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image .alles-hoodie-mock img {
	max-height: min(62vh, 580px) !important;
	transform: scale(1.08) !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__name {
	margin-top: 36px !important;
}

/* Product page: the add plus sits above the image set. */
body.alles-figma-store .alles-bully-detail__purchase--top {
	order: 0 !important;
	width: 100% !important;
	margin: 0 auto 22px !important;
}

body.alles-figma-store .alles-bully-detail__purchase--top form.cart,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase--top form.cart {
	min-height: 44px !important;
}

body.alles-figma-store .alles-bully-detail__purchase--top form.cart .single_add_to_cart_button,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase--top form.cart .single_add_to_cart_button {
	width: 44px !important;
	min-width: 44px !important;
	height: 44px !important;
	min-height: 44px !important;
}

body.alles-figma-store .alles-bully-detail__purchase--top form.cart .single_add_to_cart_button::after,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase--top form.cart .single_add_to_cart_button::after {
	font-size: 38px !important;
}

body.alles-figma-store .alles-bully-detail__gallery {
	order: 1 !important;
}

body.alles-figma-store .alles-bully-detail__summary {
	order: 2 !important;
}

/* Remove express checkout/options visual clutter after the latest direction. */
body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__express,
body.alles-figma-store.woocommerce-checkout .wc-block-components-express-payment,
body.alles-figma-store.woocommerce-checkout .express-checkout,
body.alles-figma-store.woocommerce-checkout .woocommerce-form-coupon-toggle {
	display: none !important;
}

/* Yeezy-style Woo notices and empty states. */
body.alles-figma-store .woocommerce-notices-wrapper {
	width: min(612px, calc(100vw - 32px)) !important;
	margin: 72px auto 28px !important;
	font-family: "Courier New", Courier, monospace !important;
}

body.alles-figma-store .woocommerce-message,
body.alles-figma-store .woocommerce-info,
body.alles-figma-store .woocommerce-error,
body.alles-figma-store .cart-empty.woocommerce-info {
	position: relative !important;
	display: block !important;
	min-height: 74px !important;
	padding: 24px 0 24px 46px !important;
	margin: 0 0 14px !important;
	border: 0 !important;
	border-top: 1px solid #e1e1e1 !important;
	border-bottom: 1px solid #e1e1e1 !important;
	background: #fff !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 19px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	box-shadow: none !important;
}

body.alles-figma-store .woocommerce-message::before,
body.alles-figma-store .woocommerce-info::before,
body.alles-figma-store .woocommerce-error::before,
body.alles-figma-store .cart-empty.woocommerce-info::before {
	position: absolute !important;
	top: 50% !important;
	left: 0 !important;
	display: block !important;
	width: 17px !important;
	height: 17px !important;
	border: 3px solid #000 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: transparent !important;
	transform: translateY(-50%) !important;
	content: "" !important;
}

body.alles-figma-store .woocommerce-error {
	color: #d20f0f !important;
}

body.alles-figma-store .woocommerce-error::before {
	border-color: #d20f0f !important;
}

body.alles-figma-store .return-to-shop {
	width: min(612px, calc(100vw - 32px)) !important;
	margin: 24px auto 0 !important;
}

body.alles-figma-store .return-to-shop .button,
body.alles-figma-store .alles-bully-cart__empty .button {
	display: inline-grid !important;
	min-width: 220px !important;
	min-height: 58px !important;
	place-items: center !important;
	padding: 0 28px !important;
	border: 1px solid #000 !important;
	border-radius: 0 !important;
	background: #000 !important;
	color: #fff !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
}

body.alles-figma-store .return-to-shop .button:hover,
body.alles-figma-store .alles-bully-cart__empty .button:hover {
	background: #111 !important;
	color: #fff !important;
}

body.alles-figma-store .alles-bully-cart__empty {
	place-items: start !important;
	align-content: start !important;
	padding-top: 26px !important;
}

body.alles-figma-store .alles-bully-cart__empty p {
	position: relative !important;
	padding-left: 46px !important;
	margin: 0 !important;
	font-size: 19px !important;
	font-weight: 700 !important;
	text-transform: none !important;
}

body.alles-figma-store .alles-bully-cart__empty p::before {
	position: absolute !important;
	top: 50% !important;
	left: 0 !important;
	width: 17px !important;
	height: 17px !important;
	border: 3px solid #000 !important;
	content: "" !important;
	transform: translateY(-50%) !important;
}

@media (max-width: 560px) {
	body.alles-figma-store.alles-collection-zoomed .alles-bully-split {
		width: min(100%, calc(100vw - 32px)) !important;
		padding-top: 76px !important;
	}

	body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image {
		width: min(88vw, 440px) !important;
	}

	body.alles-figma-store .woocommerce-notices-wrapper,
	body.alles-figma-store .return-to-shop {
		width: calc(100vw - 32px) !important;
	}

	body.alles-figma-store .woocommerce-message,
	body.alles-figma-store .woocommerce-info,
	body.alles-figma-store .woocommerce-error,
	body.alles-figma-store .cart-empty.woocommerce-info {
		font-size: 16px !important;
	}
}

/* Final Yeezy-style product carousel and empty-cart cleanup. */
body.alles-figma-store .alles-bully-single-page {
	padding-top: 0 !important;
	background: #fff !important;
}

body.alles-figma-store .alles-bully-detail {
	display: flex !important;
	min-height: 100svh !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0 !important;
	padding: clamp(74px, 9vh, 104px) 20px clamp(76px, 10vh, 120px) !important;
	background: #fff !important;
	color: #000 !important;
	text-align: center !important;
}

body.alles-figma-store .alles-bully-detail__gallery {
	position: relative !important;
	display: grid !important;
	width: 100% !important;
	max-width: min(1180px, calc(100vw - 40px)) !important;
	margin: 0 auto 34px !important;
	place-items: center !important;
	order: 1 !important;
}

body.alles-figma-store .alles-product-slider__stage {
	position: relative !important;
	display: grid !important;
	width: min(520px, calc(100vw - 132px)) !important;
	min-height: min(54vh, 530px) !important;
	place-items: center !important;
}

body.alles-figma-store .alles-product-slider__slide {
	grid-area: 1 / 1 !important;
	display: grid !important;
	width: 100% !important;
	height: 100% !important;
	place-items: center !important;
	opacity: 0 !important;
	pointer-events: none !important;
	transition: opacity .18s ease !important;
}

body.alles-figma-store .alles-product-slider__slide.is-active {
	opacity: 1 !important;
	pointer-events: auto !important;
}

body.alles-figma-store .alles-product-slider__slide img,
body.alles-figma-store .alles-product-slider__fallback,
body.alles-figma-store .alles-product-slider__fallback img {
	display: block !important;
	width: 100% !important;
	max-width: 520px !important;
	height: auto !important;
	max-height: min(54vh, 530px) !important;
	object-fit: contain !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-product-slider__fallback figcaption {
	display: none !important;
}

body.alles-figma-store .alles-product-slider__arrow {
	position: absolute !important;
	top: 46% !important;
	z-index: 3 !important;
	display: grid !important;
	width: 56px !important;
	height: 56px !important;
	place-items: center !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transform: translateY(-50%) !important;
}

body.alles-figma-store .alles-product-slider__arrow--prev {
	left: max(18px, calc(50% - 560px)) !important;
}

body.alles-figma-store .alles-product-slider__arrow--next {
	right: max(18px, calc(50% - 560px)) !important;
}

body.alles-figma-store .alles-product-slider__arrow span {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	border: solid #000 !important;
	border-width: 0 0 5px 5px !important;
}

body.alles-figma-store .alles-product-slider__arrow--prev span {
	transform: rotate(45deg) !important;
}

body.alles-figma-store .alles-product-slider__arrow--next span {
	transform: rotate(-135deg) !important;
}

body.alles-figma-store .alles-product-slider__arrow:hover span {
	border-color: #555 !important;
}

body.alles-figma-store .alles-product-slider__dots {
	position: absolute !important;
	bottom: -24px !important;
	left: 50% !important;
	display: flex !important;
	gap: 13px !important;
	align-items: center !important;
	justify-content: center !important;
	transform: translateX(-50%) !important;
}

body.alles-figma-store .alles-product-slider__dots button {
	width: 7px !important;
	height: 7px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #d6d6d6 !important;
	box-shadow: none !important;
	cursor: pointer !important;
}

body.alles-figma-store .alles-product-slider__dots button.is-active {
	background: #000 !important;
}

body.alles-figma-store .alles-bully-detail__summary {
	display: flex !important;
	width: min(560px, calc(100vw - 40px)) !important;
	flex-direction: column !important;
	align-items: center !important;
	margin: 38px auto 0 !important;
	order: 2 !important;
	text-align: center !important;
}

body.alles-figma-store .alles-bully-detail__summary .product_title,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__summary .product_title {
	max-width: 100% !important;
	margin: 0 0 30px !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: clamp(20px, 1.7vw, 28px) !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	letter-spacing: .03em !important;
	text-transform: uppercase !important;
}

body.alles-figma-store .alles-bully-detail__summary .price,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__summary p.price,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__summary span.price {
	margin: 0 0 36px !important;
	color: #000 !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: clamp(20px, 1.6vw, 27px) !important;
	font-weight: 700 !important;
	line-height: 1 !important;
}

body.alles-figma-store .alles-bully-detail__purchase {
	width: 64px !important;
	margin: 0 auto !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart {
	display: grid !important;
	width: 64px !important;
	min-height: 64px !important;
	place-items: center !important;
	margin: 0 !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .quantity {
	display: none !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button {
	position: relative !important;
	display: grid !important;
	width: 64px !important;
	min-width: 64px !important;
	height: 64px !important;
	min-height: 64px !important;
	place-items: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: transparent !important;
	font-size: 0 !important;
	line-height: 1 !important;
	text-indent: -9999px !important;
	overflow: hidden !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	color: #000 !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 52px !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	text-indent: 0 !important;
	transform: translate(-50%, -53%) !important;
	content: "+" !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button.added::after {
	font-size: 34px !important;
	transform: translate(-50%, -50%) !important;
	content: "✓" !important;
}

body.alles-figma-store .alles-bully-detail__purchase .added_to_cart {
	display: none !important;
}

body.alles-figma-store .alles-bully-detail__links {
	gap: 20px !important;
	margin-top: 22px !important;
}

body.alles-figma-store.woocommerce-cart .woocommerce-notices-wrapper {
	width: min(388px, 100vw) !important;
	margin: 0 0 0 auto !important;
	padding: 28px 24px 0 !important;
	background: #fff !important;
	box-shadow: -28px 0 48px rgba(0, 0, 0, .06) !important;
}

body.alles-figma-store.woocommerce-cart .woocommerce-message,
body.alles-figma-store.woocommerce-cart .woocommerce-info,
body.alles-figma-store.woocommerce-cart .woocommerce-error,
body.alles-figma-store.woocommerce-cart .cart-empty.woocommerce-info {
	min-height: 0 !important;
	padding: 16px 0 16px 34px !important;
	margin: 0 !important;
	border: 0 !important;
	border-bottom: 1px solid #dedede !important;
	background: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
}

body.alles-figma-store.woocommerce-cart .woocommerce-message::before,
body.alles-figma-store.woocommerce-cart .woocommerce-info::before,
body.alles-figma-store.woocommerce-cart .woocommerce-error::before,
body.alles-figma-store.woocommerce-cart .cart-empty.woocommerce-info::before {
	left: 0 !important;
	width: 14px !important;
	height: 14px !important;
	border-width: 3px !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart--empty {
	width: min(388px, 100vw) !important;
	margin: 0 0 0 auto !important;
	padding: 25px 24px 24px !important;
	box-shadow: -28px 0 48px rgba(0, 0, 0, .06) !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart--empty .alles-bully-cart__empty {
	display: grid !important;
	gap: 26px !important;
	align-content: start !important;
	place-items: start !important;
	padding: 86px 0 0 !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart--empty .alles-bully-cart__empty p {
	padding-left: 34px !important;
	font-family: "Courier New", Courier, monospace !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	text-transform: none !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart--empty .alles-bully-cart__empty p::before {
	width: 14px !important;
	height: 14px !important;
	border-width: 3px !important;
}

body.alles-figma-store.woocommerce-cart .alles-bully-cart--empty .alles-bully-cart__empty .button {
	width: 100% !important;
	min-width: 0 !important;
	min-height: 58px !important;
}

@media (max-width: 700px) {
	body.alles-figma-store .alles-bully-detail {
		justify-content: flex-start !important;
		padding-top: 92px !important;
	}

	body.alles-figma-store .alles-product-slider__stage {
		width: min(360px, calc(100vw - 88px)) !important;
		min-height: 360px !important;
	}

	body.alles-figma-store .alles-product-slider__slide img,
	body.alles-figma-store .alles-product-slider__fallback,
	body.alles-figma-store .alles-product-slider__fallback img {
		max-height: 360px !important;
	}

	body.alles-figma-store .alles-product-slider__arrow {
		top: 43% !important;
		width: 42px !important;
		height: 42px !important;
	}

	body.alles-figma-store .alles-product-slider__arrow--prev {
		left: -6px !important;
	}

	body.alles-figma-store .alles-product-slider__arrow--next {
		right: -6px !important;
	}

	body.alles-figma-store .alles-product-slider__arrow span {
		width: 16px !important;
		height: 16px !important;
		border-width: 0 0 4px 4px !important;
	}

	body.alles-figma-store .alles-bully-detail__summary {
		margin-top: 34px !important;
	}
}

@media (max-width: 430px) {
	body.alles-figma-store .alles-product-slider__stage {
		width: min(300px, calc(100vw - 76px)) !important;
		min-height: 300px !important;
	}

	body.alles-figma-store .alles-product-slider__slide img,
	body.alles-figma-store .alles-product-slider__fallback,
	body.alles-figma-store .alles-product-slider__fallback img {
		max-height: 300px !important;
	}

	body.alles-figma-store .alles-bully-detail__summary .product_title,
	body.alles-figma-store.woocommerce div.product .alles-bully-detail__summary .product_title {
		font-size: 20px !important;
	}

	body.alles-figma-store.woocommerce-cart .woocommerce-notices-wrapper,
	body.alles-figma-store.woocommerce-cart .alles-bully-cart--empty {
		width: 100vw !important;
	}
}

/* Final scale pass: smaller product media, cleaner cart cards, sharper home zoom control. */
body.alles-figma-store .alles-menu-toggle {
	width: 38px !important;
	height: 38px !important;
	border: 1px solid #ededed !important;
	background: #fff !important;
}

body.alles-figma-store .alles-menu-toggle span:not(.screen-reader-text) {
	width: 21px !important;
	height: 2px !important;
}

body.alles-figma-store .alles-menu-toggle.is-back span:nth-child(1),
body.alles-figma-store.alles-collection-zoomed .alles-menu-toggle span:nth-child(1),
body.alles-figma-store .alles-menu-toggle.is-back span:nth-child(2),
body.alles-figma-store.alles-collection-zoomed .alles-menu-toggle span:nth-child(2) {
	left: 13px !important;
	width: 15px !important;
	transform-origin: 1px 50% !important;
}

body.alles-figma-store .alles-menu-toggle.is-back span:nth-child(1),
body.alles-figma-store.alles-collection-zoomed .alles-menu-toggle span:nth-child(1) {
	transform: translate(0, -50%) rotate(45deg) !important;
}

body.alles-figma-store .alles-menu-toggle.is-back span:nth-child(2),
body.alles-figma-store.alles-collection-zoomed .alles-menu-toggle span:nth-child(2) {
	transform: translate(0, -50%) rotate(-45deg) !important;
}

body.alles-figma-store .alles-bully-tile__image {
	width: min(30vw, 350px) !important;
	min-height: 245px !important;
	margin-bottom: clamp(26px, 6vh, 48px) !important;
}

body.alles-figma-store .alles-bully-tile__image img,
body.alles-figma-store .alles-bully-tile__image .alles-hoodie-mock img {
	max-height: 390px !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-split {
	width: min(560px, calc(100vw - 48px)) !important;
	gap: clamp(58px, 10vh, 100px) !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image {
	width: min(460px, 86vw) !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image img,
body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image .alles-hoodie-mock img {
	max-height: min(54vh, 460px) !important;
	transform: scale(1.03) !important;
}

body.alles-figma-store .alles-bully-detail {
	padding-top: clamp(72px, 8vh, 92px) !important;
	padding-bottom: clamp(70px, 8vh, 96px) !important;
}

body.alles-figma-store .alles-product-slider__stage {
	width: min(430px, calc(100vw - 150px)) !important;
	min-height: min(47vh, 430px) !important;
}

body.alles-figma-store .alles-product-slider__slide img,
body.alles-figma-store .alles-product-slider__fallback,
body.alles-figma-store .alles-product-slider__fallback img {
	max-width: 430px !important;
	max-height: min(47vh, 430px) !important;
}

body.alles-figma-store .alles-product-slider__dots {
	bottom: -20px !important;
}

body.alles-figma-store .alles-bully-detail__summary {
	margin-top: 34px !important;
}

body.alles-figma-store .alles-bully-detail__summary .product_title,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__summary .product_title {
	margin-bottom: 28px !important;
	font-size: clamp(18px, 1.35vw, 24px) !important;
}

body.alles-figma-store .alles-bully-detail__summary .price,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__summary p.price,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__summary span.price {
	margin-bottom: 30px !important;
	font-size: clamp(19px, 1.35vw, 24px) !important;
}

body.alles-figma-store .alles-bully-detail__purchase,
body.alles-figma-store .alles-bully-detail__purchase form.cart,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart {
	width: 50px !important;
	min-height: 50px !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button {
	width: 50px !important;
	min-width: 50px !important;
	height: 50px !important;
	min-height: 50px !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after {
	font-size: 46px !important;
}

body.alles-figma-store .alles-bully-detail__links {
	display: none !important;
}

body.alles-figma-store .alles-bully-cart-item__remove,
body.alles-figma-store.woocommerce-cart .woocommerce a.remove,
body.alles-figma-store.woocommerce-cart table.cart td.product-remove a.remove {
	display: none !important;
}

body.alles-figma-store .alles-bully-cart-item__top {
	grid-template-columns: minmax(0, 1fr) !important;
	margin-bottom: 12px !important;
}

body.alles-figma-store .alles-bully-cart__items {
	gap: 50px !important;
}

body.alles-figma-store .alles-bully-cart-item {
	grid-template-columns: 76px minmax(0, 1fr) !important;
	column-gap: 22px !important;
	min-height: 100px !important;
}

body.alles-figma-store .alles-bully-cart-item__image,
body.alles-figma-store .alles-bully-cart-item__image a {
	width: 76px !important;
	height: 76px !important;
}

body.alles-figma-store .alles-bully-cart-item h2 {
	font-size: clamp(18px, 1.8vw, 23px) !important;
	line-height: 1.08 !important;
}

body.alles-figma-store .alles-bully-cart-item__price {
	margin-bottom: 44px !important;
	font-size: clamp(19px, 1.7vw, 24px) !important;
}

body.alles-figma-store .alles-bully-cart-item__qty {
	font-size: 17px !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced {
	gap: 19px !important;
	height: 34px !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced input.qty {
	width: 28px !important;
	height: 34px !important;
	min-height: 34px !important;
	font-size: 24px !important;
}

body.alles-figma-store .alles-bully-cart-item .quantity.alles-qty-enhanced button {
	width: 24px !important;
	height: 34px !important;
	min-height: 34px !important;
	font-size: 28px !important;
}

@media (max-width: 700px) {
	body.alles-figma-store .alles-bully-tile__image {
		width: min(72vw, 330px) !important;
		min-height: 0 !important;
	}

	body.alles-figma-store .alles-bully-tile__image img,
	body.alles-figma-store .alles-bully-tile__image .alles-hoodie-mock img {
		max-height: 340px !important;
	}

	body.alles-figma-store .alles-product-slider__stage {
		width: min(320px, calc(100vw - 92px)) !important;
		min-height: 320px !important;
	}

	body.alles-figma-store .alles-product-slider__slide img,
	body.alles-figma-store .alles-product-slider__fallback,
	body.alles-figma-store .alles-product-slider__fallback img {
		max-height: 320px !important;
	}
}

@media (max-width: 560px) {
	body.alles-figma-store .alles-cart-drawer__content .alles-bully-cart,
	body.alles-figma-store .alles-bully-cart {
		padding-right: 30px !important;
		padding-left: 30px !important;
	}

	body.alles-figma-store .alles-bully-cart__header {
		margin-bottom: 68px !important;
	}

	body.alles-figma-store .alles-bully-cart-item {
		grid-template-columns: 74px minmax(0, 1fr) !important;
		column-gap: 22px !important;
	}

	body.alles-figma-store .alles-bully-cart-item__image,
	body.alles-figma-store .alles-bully-cart-item__image a {
		width: 74px !important;
		height: 74px !important;
	}

	body.alles-figma-store .alles-bully-cart-item h2 {
		font-size: clamp(18px, 5.9vw, 24px) !important;
	}

	body.alles-figma-store .alles-bully-cart-item__price {
		font-size: clamp(20px, 6vw, 26px) !important;
	}

	body.alles-figma-store .alles-bully-cart-item__qty {
		font-size: 18px !important;
	}
}

@media (max-width: 380px) {
	body.alles-figma-store .alles-product-slider__stage {
		width: min(270px, calc(100vw - 76px)) !important;
		min-height: 270px !important;
	}

	body.alles-figma-store .alles-product-slider__slide img,
	body.alles-figma-store .alles-product-slider__fallback,
	body.alles-figma-store .alles-product-slider__fallback img {
		max-height: 270px !important;
	}

	body.alles-figma-store .alles-bully-cart-item {
		grid-template-columns: 66px minmax(0, 1fr) !important;
		column-gap: 18px !important;
	}

	body.alles-figma-store .alles-bully-cart-item__image,
	body.alles-figma-store .alles-bully-cart-item__image a {
		width: 66px !important;
		height: 66px !important;
	}
}

/* Pin the product add plus to the exact visual center. */
body.alles-figma-store .alles-bully-detail__purchase {
	display: grid !important;
	position: static !important;
	left: auto !important;
	width: 100% !important;
	height: 50px !important;
	place-items: center !important;
	align-self: center !important;
	justify-self: center !important;
	margin: 0 auto !important;
	transform: none !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart {
	display: grid !important;
	width: 50px !important;
	height: 50px !important;
	min-height: 50px !important;
	place-items: center !important;
	align-items: center !important;
	justify-items: center !important;
	margin: 0 auto !important;
	padding: 0 !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button {
	position: relative !important;
	float: none !important;
	clear: both !important;
	display: grid !important;
	width: 50px !important;
	height: 50px !important;
	min-width: 50px !important;
	min-height: 50px !important;
	place-items: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: transparent !important;
	text-indent: -9999px !important;
	overflow: hidden !important;
	box-shadow: none !important;
}

body.alles-figma-store .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after,
body.alles-figma-store.woocommerce div.product .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after {
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	inset: 0 !important;
	display: grid !important;
	width: 100% !important;
	height: 100% !important;
	place-items: center !important;
	color: #000 !important;
	font-size: 46px !important;
	line-height: 1 !important;
	text-indent: 0 !important;
	text-align: center !important;
	transform: none !important;
}

/* Final product page centering pass: keep the add plus on the same page axis as the gallery. */
body.alles-figma-store .alles-bully-detail {
	display: grid !important;
	width: 100vw !important;
	max-width: 100vw !important;
	grid-template-columns: minmax(0, 1fr) !important;
	justify-items: center !important;
	align-content: center !important;
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
}

body.alles-figma-store .alles-bully-detail > .alles-bully-detail__gallery {
	grid-column: 1 !important;
	justify-self: center !important;
}

body.alles-figma-store .alles-bully-detail > .alles-bully-detail__summary {
	grid-column: 1 !important;
	width: 100% !important;
	max-width: none !important;
	display: grid !important;
	justify-items: center !important;
	align-items: start !important;
	margin: 38px auto 0 !important;
	order: 2 !important;
	text-align: center !important;
}

body.alles-figma-store .alles-bully-detail > .alles-bully-detail__summary .product_title,
body.alles-figma-store.woocommerce div.product .alles-bully-detail > .alles-bully-detail__summary .product_title,
body.alles-figma-store .alles-bully-detail > .alles-bully-detail__summary .price,
body.alles-figma-store.woocommerce div.product .alles-bully-detail > .alles-bully-detail__summary p.price,
body.alles-figma-store.woocommerce div.product .alles-bully-detail > .alles-bully-detail__summary span.price {
	width: min(560px, calc(100vw - 40px)) !important;
	text-align: center !important;
}

body.alles-figma-store .alles-bully-detail > .alles-bully-detail__purchase {
	grid-column: 1 !important;
	display: grid !important;
	width: 100% !important;
	max-width: none !important;
	height: 58px !important;
	place-items: center !important;
	align-self: stretch !important;
	justify-self: stretch !important;
	margin: 0 auto !important;
	order: 3 !important;
	transform: none !important;
}

body.alles-figma-store .alles-bully-detail > .alles-bully-detail__purchase form.cart,
body.alles-figma-store.woocommerce div.product .alles-bully-detail > .alles-bully-detail__purchase form.cart {
	display: grid !important;
	width: 58px !important;
	height: 58px !important;
	min-height: 58px !important;
	place-items: center !important;
	place-self: center !important;
	margin: 0 auto !important;
	padding: 0 !important;
	transform: translateX(calc(-1 * clamp(64px, 16.5vw, 106px))) !important;
}

body.alles-figma-store .alles-bully-detail > .alles-bully-detail__purchase form.cart .single_add_to_cart_button,
body.alles-figma-store.woocommerce div.product .alles-bully-detail > .alles-bully-detail__purchase form.cart .single_add_to_cart_button {
	left: auto !important;
	right: auto !important;
	display: grid !important;
	width: 58px !important;
	height: 58px !important;
	min-width: 58px !important;
	min-height: 58px !important;
	place-items: center !important;
	place-self: center !important;
	margin: 0 auto !important;
	transform: none !important;
}

body.alles-figma-store .alles-bully-detail > .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after,
body.alles-figma-store.woocommerce div.product .alles-bully-detail > .alles-bully-detail__purchase form.cart .single_add_to_cart_button::after {
	font-size: 50px !important;
}

/* Brand mark pass: use the actual ALLES logo everywhere the theme chrome appears. */
body.alles-figma-store .alles-logo,
body.alles-figma-store .alles-bully-checkout__logo-link {
	display: inline-grid !important;
	place-items: center !important;
	gap: 0 !important;
	text-decoration: none !important;
}

body.alles-figma-store .alles-logo__image,
body.alles-figma-store .alles-logo--header .alles-logo__image,
body.alles-figma-store .alles-logo--footer .alles-logo__image,
body.alles-figma-store .alles-logo--checkout .alles-logo__image {
	display: block !important;
	width: 44px !important;
	height: 44px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	object-fit: contain !important;
	box-shadow: none !important;
	filter: none !important;
}

body.alles-figma-store .alles-logo--checkout .alles-logo__image {
	width: 58px !important;
	height: 58px !important;
}

body.alles-figma-store .alles-logo--footer .alles-logo__image {
	width: 36px !important;
	height: 36px !important;
}

body.alles-figma-store .alles-logo__wordmark {
	display: none !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__brand {
	display: grid !important;
	justify-items: center !important;
	margin-bottom: 48px !important;
}

body.alles-figma-store.woocommerce-checkout .alles-bully-checkout__brand a {
	font-size: 0 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
}

/* Unified larger brand/logo scale and larger collection product previews. */
:root {
	--alles-brand-logo-size: 68px;
	--alles-header-side-size: 44px;
}

body.alles-figma-store .alles-logo__image,
body.alles-figma-store .alles-logo--header .alles-logo__image,
body.alles-figma-store .alles-logo--footer .alles-logo__image,
body.alles-figma-store .alles-logo--checkout .alles-logo__image {
	width: var(--alles-brand-logo-size) !important;
	height: var(--alles-brand-logo-size) !important;
}

body.alles-figma-store .alles-bully-split {
	gap: clamp(28px, 5vw, 82px) !important;
	padding: clamp(48px, 6vh, 72px) clamp(16px, 3vw, 48px) 48px !important;
}

body.alles-figma-store .alles-bully-tile,
body.alles-figma-store li.product.alles-bully-tile,
body.alles-figma-store .alles-bully-tile__link {
	max-width: 760px !important;
}

body.alles-figma-store .alles-bully-tile__image {
	width: min(45vw, 640px) !important;
	min-height: 0 !important;
	margin-bottom: clamp(30px, 5.2vh, 54px) !important;
}

body.alles-figma-store .alles-bully-tile__image img,
body.alles-figma-store .alles-bully-tile__image .alles-hoodie-mock img {
	max-height: min(70vh, 700px) !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image {
	width: min(620px, 88vw) !important;
}

body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image img,
body.alles-figma-store.alles-collection-zoomed .alles-bully-tile__image .alles-hoodie-mock img {
	max-height: min(68vh, 660px) !important;
}

@media (max-width: 700px) {
	:root {
		--alles-brand-logo-size: 54px;
		--alles-header-side-size: 34px;
	}

	body.alles-figma-store .alles-bully-split {
		padding: 44px 18px 60px !important;
		gap: 68px !important;
	}

	body.alles-figma-store .alles-bully-tile__image {
		width: min(92vw, 520px) !important;
	}

	body.alles-figma-store .alles-bully-tile__image img,
	body.alles-figma-store .alles-bully-tile__image .alles-hoodie-mock img {
		max-height: min(68vh, 560px) !important;
	}
}

/* Header/logo guardrails: keep the brand centered and scale it with the viewport. */
body.alles-figma-store .alles-header-inner {
	grid-template-columns: minmax(var(--alles-header-side-size), 1fr) auto minmax(var(--alles-header-side-size), 1fr) !important;
	align-items: center !important;
	min-height: max(56px, calc(var(--alles-brand-logo-size) + 16px)) !important;
	padding: 12px clamp(14px, 3vw, 24px) 0 !important;
}

body.alles-figma-store .alles-brand-link {
	grid-column: 2 !important;
	justify-self: center !important;
	order: initial !important;
}

body.alles-figma-store .alles-back-link,
body.alles-figma-store .alles-menu-toggle {
	grid-column: 1 !important;
	justify-self: start !important;
	order: initial !important;
}

body.alles-figma-store .alles-header-actions {
	grid-column: 3 !important;
	justify-self: end !important;
	order: initial !important;
}

@media (max-width: 430px) {
	:root {
		--alles-brand-logo-size: 50px;
		--alles-header-side-size: 32px;
	}

	body.alles-figma-store .alles-header-inner {
		padding-inline: 12px !important;
	}
}
