/*
Theme Name: CateringW - order
Text Domain: cateringw
Version: 1.0.0
*/

:root {
	--bg: #f6efe5;
	--surface: #fffaf3;
	--surface-strong: #fff;
	--text: #231f1c;
	--muted: #6b625c;
	--line: #dccfbe;
	--accent: #8a1c2a;
	--accent-dark: #49111c;
	--shadow: 0 20px 45px rgba(35, 31, 28, 0.08);
	--radius: 22px;
	--shell: 1200px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	/* font-family: Georgia, "Times New Roman", serif; */
	color: var(--color-text);
	background-color: #060000;
}

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

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

.site-shell {
	width: min(calc(100% - 32px), var(--shell));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	background: rgba(251, 247, 241, 0.88);
	border-bottom: 1px solid rgba(245, 245, 245, 0.9);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 24px;
	align-items: center;
	padding: 20px 0;
}

.site-branding__title {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.site-branding__tagline {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.site-menu,
.shop-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-menu a,
.shop-menu a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	border: 1px solid transparent;
	border-radius: 999px;
	transition: 0.2s ease;
}
.shop-menu a {
	background: var(--surface-strong);
	border-color: var(--line);
	box-shadow: var(--shadow);
}

.cart-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface-strong);
	color: var(--text);
	box-shadow: var(--shadow);
	cursor: pointer;
	transition: 0.2s ease;
}

.cart-toggle:hover {
	transform: translateY(-1px);
	border-color: var(--accent);
}

.cart-toggle__icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
}

.cart-toggle__icon svg {
	width: 100%;
	height: 100%;
}

.cart-toggle__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	min-height: 26px;
	padding: 0 7px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
}

.cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	pointer-events: none;
}

.cart-drawer.is-open {
	pointer-events: auto;
}

.cart-drawer__overlay {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(35, 31, 28, 0.42);
	opacity: 0;
	transition: opacity 0.25s ease;
	cursor: pointer;
	color: var(--color-text);
}

.cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(100%, 420px);
	height: 100%;
	padding: 16px;
	background-color: #060000;
	box-shadow: -24px 0 60px rgba(35, 31, 28, 0.18);
	transform: translateX(100%);
	transition: transform 0.25s ease;
	overflow: hidden;
}

.cart-drawer.is-open .cart-drawer__overlay {
	opacity: 1;
}

.cart-drawer.is-open .cart-drawer__panel {
	transform: translateX(0);
}

.cart-drawer__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.cart-drawer__eyebrow {
	margin: 0 0 4px;
	color: var(--color-burgundy-hover);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
	font-weight: 700;
}

.cart-drawer__title {
	margin: 0;
	font-size: 1.75rem;
}

.cart-drawer__close {
	background: transparent;
	font-size: 3rem;
	cursor: pointer;
}

.cart-drawer__content {
	flex: 1;
	overflow-y: auto;
	min-height: 0;
}

.cart-drawer__footer {
	flex-shrink: 0;
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid var(--line);
	background: #060000;
}

.cart-drawer .woocommerce-mini-cart {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cart-drawer .woocommerce-mini-cart-item {
	display: flex;
	position: relative;
	display: flex;
	flex-direction: row;
	gap: 12px;
}

.cart-drawer .woocommerce-mini-cart-item a {
	display: inline-flex;
	align-items: flex-start;
	gap: 12px;
}

.cart-drawer__item-media {
	height: 100%;
}

.cart-drawer__item-image {
	display: block;
	height: 100%;
	min-height: 72px;
}

.cart-drawer__item-image img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 18px;
}

.cart-drawer__item-details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	padding-right: 34px;
}

.cart-drawer__item-title {
	margin: 0 0 8px;
	font-size: 0.98rem;
	line-height: 1.35;
}

.cart-drawer__item-title a {
	display: inline;
}

.cart-drawer__item-meta {
	display: inline-block;
	font-size: 0.95rem;
}

.cart-drawer .remove_from_cart_button,
.woocommerce a.remove {
	position: absolute;
	top: 12px;
	right: 0;
	width: 28px;
	height: 28px;
	color: var(--color-secondary) !important;
	font-size: 1.5rem;
	line-height: 28px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.woocommerce a.remove:hover {
	color: var(--color-text) !important;
	background-color: #b3b3b356;
}

.cart-drawer .quantity,
.cart-drawer .woocommerce-mini-cart__total,
.cart-drawer .woocommerce-mini-cart__empty-message {
	color: rgba(245, 245, 245, 0.8);
}

.cart-drawer .woocommerce-mini-cart__total {
	margin: 18px 0 12px;
	font-size: 1rem;
}
.menu-item:hover a {
	text-decoration-line: underline;
}

.cart-drawer .woocommerce-mini-cart__total strong,
.cart-drawer .woocommerce-mini-cart__total span {
	font-size: 1.325rem;
}

.cart-drawer .woocommerce-mini-cart__buttons {
	display: grid;
	gap: 10px;
	margin: 0;
}

.cart-drawer .woocommerce-mini-cart__buttons .button,
.cart-drawer .woocommerce-mini-cart__buttons a.button,
.cart-drawer .woocommerce-mini-cart__buttons a.checkout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;

	background: none;
	border: 2px solid var(--color-gold-light);
	color: var(--color-gold-light);
}

.cart-drawer .woocommerce-mini-cart__buttons .button:hover,
.cart-drawer .woocommerce-mini-cart__buttons a.button:hover,
.cart-drawer .woocommerce-mini-cart__buttons a.checkout:hover {
	background: var(--color-gold-light);
	border: 1px solid var(--color-gold-light);
	color: var(--text);
}

.cart-drawer .woocommerce-mini-cart__buttons .button.checkout {
	border: 1px solid var(--color-burgundy);
	background: var(--color-burgundy);
	color: #fff;
}
.cart-drawer .woocommerce-mini-cart__buttons .button.checkout:hover {
	border: 1px solid var(--color-burgundy-hover);
	background: var(--color-burgundy-hover);

	color: #fff;
}

.woocommerce-cart .woocommerce-cart-form {
	margin-top: 28px;
}

.cateringw-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
	gap: 28px;
	align-items: start;
}

.woocommerce-cart .woocommerce-cart-form__contents {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

.woocommerce-cart .woocommerce-cart-form__contents tbody,
.woocommerce-cart .woocommerce-cart-form__contents tr,
.woocommerce-cart .woocommerce-cart-form__contents td {
	display: block;
	width: 100%;
}

.woocommerce-cart .woocommerce-cart-form__contents .product-row,
.woocommerce-cart .woocommerce-cart-form__contents .actions {
	padding: 0;
	border: 0;
}

.cateringw-cart-item {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 18px;
	padding: 8px;
}

.cateringw-cart-item__media {
	align-self: stretch;
}

.cateringw-cart-item__image {
	display: block;
	aspect-ratio: 1 / 1;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.cateringw-cart-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cateringw-cart-item__content {
	min-width: 0;
}

.cateringw-cart-item__top {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.cateringw-cart-item__title-wrap {
	min-width: 0;
}

.cateringw-cart-item__title {
	margin: 0 0 8px;
	font-size: 1.1rem;
	line-height: 1.3;
}

.cateringw-cart-item__title a {
	color: inherit;
	text-decoration: none;
}

.cateringw-cart-item__meta {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.4;
}

.cateringw-cart-item__remove {
	flex-shrink: 0;
}

.cateringw-cart-item__remove .remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(191, 90, 54, 0.1);
	color: var(--color-burgundy);
	font-size: 1.4rem;
	line-height: 1;
	text-decoration: none;
}

.cateringw-cart-item__bottom {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 16px;
	align-items: end;
}

.cateringw-cart-item__label {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cateringw-cart-item__price,
.cateringw-cart-item__subtotal {
	font-weight: 600;
}

.cateringw-cart-item__quantity .quantity {
	display: inline-flex;
	align-items: center;
}

.cateringw-cart-item__quantity .qty {
	width: 84px;
}

.cateringw-cart-quantity {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.cateringw-cart-quantity__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: inherit;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.cateringw-cart-quantity__button:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

.cateringw-cart-quantity__button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.cateringw-cart-quantity__input {
	width: 84px;
	min-height: 36px;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: inherit;
	font-weight: 600;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

.cateringw-cart-quantity__input::-webkit-outer-spin-button,
.cateringw-cart-quantity__input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.cateringw-cart-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
}

.cateringw-cart-actions .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cateringw-cart-actions .input-text {
	min-width: 220px;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
}

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

.woocommerce-cart .cart-collaterals {
	position: sticky;
	top: 110px;
}

.cateringw-cart-totals h2 {
	margin-top: 0;
	margin-bottom: 18px;
}

.cateringw-cart-totals .shop_table {
	width: 100%;
	border-collapse: collapse;
}

.cateringw-cart-totals .shop_table th,
.cateringw-cart-totals .shop_table td {
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

.cateringw-cart-totals .shop_table td:last-child {
	text-align: right;
}

.cateringw-cart-totals .wc-proceed-to-checkout {
	margin-top: 20px;
}

.cateringw-cart-totals .checkout-button {
	width: 100%;
}

/* WooCommerce cart block tweaks */
.wp-block-woocommerce-cart .wc-block-components-product-metadata__description,
.wp-block-woocommerce-cart .wc-block-components-product-details__description {
	display: none;
}

.wp-block-woocommerce-cart [class*="savings"],
.wp-block-woocommerce-cart
	[class*="discount"]
	.wc-block-components-formatted-money-amount,
.wp-block-woocommerce-cart [class*="discount"] {
	color: var(--color-gold);
}

@media (max-width: 991px) {
	
	.cateringw-cart-layout {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.woocommerce-cart .cart-collaterals {
		position: static;
	}
}

@media (max-width: 640px) {
	.cateringw-cart-item__media {
		max-width: 140px;
	}

	.cateringw-cart-actions {
		padding: 18px;
	}

	.cateringw-cart-actions .coupon,
	.cateringw-cart-actions .input-text,
	.cateringw-cart-actions .button {
		width: 100%;
	}
}

body.cart-drawer-open {
	overflow: hidden;
}

.site-main {
	padding: 32px 0 48px;
}

.hero {
	padding: 40px 0 18px;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	border: 1px solid var(--color-burgundy);
	transition: 0.2s ease;
}
.button--primary:hover {
	background: var(--color-burgundy);
	border-color: var(--color-burgundy);
}

.button--ghost {
	background: transparent;
}

.button--ghost:hover {
	background: rgba(191, 90, 54, 0.08);
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin-top: 28px;
}

.content-card,
.content-empty {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgb(68, 0, 0);
	box-shadow: var(--shadow);
}

.content-card__title {
	margin-top: 0;
}

.site-footer {
	padding: 22px 0 44px;
	color: var(--muted);
}

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

@media (max-width: 640px) {
	.hero__content {
		padding: 28px;
	}

	.site-main {
		padding-top: 28px;
	}

	.cart-toggle__label {
		display: none;
	}

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

.woocommerce ul.products li.product a img {
	border-radius: 16px;
	overflow: hidden;
}

/* .custom-product-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fffaf3;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.custom-product-card__image {
    display: block;
}

.custom-product-card__image img {
    display: block;
    width: 100%;
}

.custom-product-card__content {
    padding: 16px 18px 18px;
}

.custom-product-card__title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.3;
}

.custom-product-card__price {
    margin-bottom: 10px;
}

.custom-product-card__description {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, max-height 0.25s ease, transform 0.25s ease, margin 0.25s ease, visibility 0.25s ease;
    margin: 0;
}

.custom-product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 22px 40px rgba(35, 31, 28, 0.16);
    z-index: 4;
}

.custom-product-card:hover .custom-product-card__description {
    opacity: 1;
    visibility: visible;
    max-height: 120px;
    transform: translateY(0);
    margin: 0 0 14px;
} */

.woocommerce ul.products li.product {
	transition: transform 0.3s ease;
}

.cateringw-product-card {
	position: relative;
}

.cateringw-product-card__inner {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #fffaf3;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.cateringw-product-card__media {
	position: relative;
}

.cateringw-product-card__media .onsale {
	z-index: 3;
}

.cateringw-product-card__media a,
.cateringw-product-card__media img,
.cateringw-product-card__inner > a {
	display: block;
}

.cateringw-product-card__overlay {
	display: none;
}

.cateringw-product-card__content {
	position: relative;
	z-index: 2;
	padding: 16px 18px 18px;
	background: #fffaf3;
	transition: none;
}

.cateringw-product-card__hover {
	position: relative;
	padding: 0 18px 0;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(-6px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		max-height 0.25s ease,
		padding-bottom 0.25s ease;
}

.cateringw-product-card__description {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.woocommerce ul.products li.product:hover {
	z-index: 4;
}

.woocommerce ul.products li.product:hover .cateringw-product-card__inner {
	transform: scale(1.03);
	box-shadow: 0 22px 40px rgba(35, 31, 28, 0.16);
}

.woocommerce ul.products li.product:hover .cateringw-product-card__hover {
	opacity: 1;
	max-height: 120px;
	padding-bottom: 18px;
	transform: translateY(0);
}

.woocommerce ul.products li.product .button {
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-burgundy);
	color: #f5f5f5;
	font-weight: 400;
}
.woocommerce ul.products li.product .button:hover {
	background: var(--color-burgundy-hover);
}

.cateringw-shop-layout {
	display: grid;
	grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.cateringw-shop-sidebar {
	position: sticky;
	top: 110px;
}

.cateringw-shop-sidebar__section .cateringw-price-filter {
	margin-bottom: 0;
}

.cateringw-shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.cateringw-shop-toolbar .woocommerce-result-count,
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
	.woocommerce-breadcrumb,
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
	.woocommerce-breadcrumb
	a {
	margin: 0;
	color: #a8a8a8;
	margin-bottom: 8px;
}

.cateringw-shop-toolbar .woocommerce-ordering {
	margin: 0 0 0 auto;
}

.cateringw-shop-toolbar .woocommerce-ordering select {
	min-width: 220px;
}
.cateringw-shop-toolbar .woocommerce-ordering option {
	color: #060000;
}

.cateringw-price-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
}

.cateringw-price-filter__group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 180px;
}

.cateringw-price-filter__group--slider {
	flex: 1 1 320px;
}

.cateringw-price-filter__heading {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 18px;
	color: var(--color-gold-light);
}

.cateringw-price-filter__label {
	font-size: 0.92rem;
}

.cateringw-price-filter__values {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.cateringw-price-filter__slider {
	position: relative;
	margin-top: 10px;
}

.cateringw-price-filter__slider.noUi-target {
	height: 8px;
	border: 0;
	border-radius: 999px;
	background: rgba(35, 31, 28, 0.12);
	box-shadow: none;
}

.cateringw-price-filter__slider .noUi-connect {
	background: var(--color-burgundy);
}

.cateringw-price-filter__slider .noUi-handle {
	top: -7px;
	right: -11px;
	width: 22px;
	height: 22px;
	border: 2px solid var(--color-burgundy);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 8px 18px rgba(35, 31, 28, 0.15);
	cursor: pointer;
}
.noUi-handle {
	width: 20px;
	height: 20px;
}
.noUi-connects {
	background: var(--color-secondary);
}
.cateringw-price-filter__slider .noUi-handle::before,
.cateringw-price-filter__slider .noUi-handle::after {
	display: none;
}

.cateringw-price-filter__slider .noUi-touch-area {
	cursor: pointer;
}

.cateringw-price-filter__slider.noUi-horizontal .noUi-tooltip {
	bottom: -34px;
	display: none;
}

.cateringw-price-filter__slider .noUi-handle:focus-visible {
	box-shadow: 0 0 0 4px rgba(191, 90, 54, 0.18);
}

.cateringw-price-filter__hidden {
	display: none;
}

.cateringw-price-filter__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.cateringw-price-filter__checkbox {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	font-weight: 500;
}

.cateringw-price-filter__checkbox input {
	width: 18px;
	height: 18px;
	border-radius: 999px;
	overflow: hidden;
	accent-color: var(--color-burgundy-hover);
}

.cateringw-price-filter__button {
	cursor: pointer;
	border-radius: 999px;
}

.cateringw-price-filter__reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
}

.cateringw-shop-categories__title {
	margin: 0 0 14px;
	font-size: 1.05rem;
}

.cateringw-shop-categories__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.cateringw-shop-categories__link {
	display: block;
	color: var(--color-secondary);
	transition: 0.2s ease;
}
.header-navigation-items-wrapper {
	display: block;
}
.header-navigation-hamburger {
	display: none;
	background: transparent;
	border: 0;
	padding: 8px;
	border-radius: 10px;
	color: inherit;
	cursor: pointer;
}

.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 60;
	pointer-events: none;
}

.mobile-nav__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.mobile-nav__panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(86vw, 300px);
	background: black;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	transform: translateX(100%);
	transition: transform 0.25s ease;
	display: flex;
	flex-direction: column;
}

.mobile-nav__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav__title {
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 700;
}

.mobile-nav__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: inherit;
	cursor: pointer;
}

.mobile-nav__content {
	padding: 10px 10px 18px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.menu-item {
	text-transform: uppercase;
}
.mobile-nav__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.mobile-nav.is-open {
	pointer-events: auto;
}

.mobile-nav.is-open .mobile-nav__overlay {
	opacity: 1;
}

.mobile-nav.is-open .mobile-nav__panel {
	transform: translateX(0);
}

body.is-mobile-nav-open {
	overflow: hidden;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.cateringw-shop-categories__link:hover,
.cateringw-shop-categories__link.is-active {
	color: var(--color-gold-light);
}
.mobile-nav {
	display: none;
	z-index: 1200;
}
@media (max-width: 780px) {
	.cateringw-shop-layout {
		grid-template-columns: 1fr;
	}
	.header-navigation-items-wrapper {
		display: none;
	}
	.header-navigation-hamburger,
	.mobile-nav {
		display: block;
	}
	.cateringw-shop-sidebar {
		position: static;
	}
	.cateringw-shop-categories__list {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.cateringw-shop-categories__list li {
		flex: 0 0 auto;
	}
	.cateringw-shop-categories__link {
		align-items: center;
		justify-content: center;
		padding: 10px 18px;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.05);
		color: var(--color-text);
		font-weight: 600;
		white-space: normal;
		word-break: break-word;
		cursor: pointer;
		transition:
			transform 0.2s ease,
			border-color 0.2s ease,
			background-color 0.2s ease,
			opacity 0.2s ease;
	}
	.cateringw-shop-categories__link:hover,
	.cateringw-shop-categories__link.is-active {
		border-color: var(--accent);
		background: var(--accent);
		color: var(--color-text);
	}
}

@media (max-width: 640px) {
	.cateringw-shop-sidebar {
		position: static;
	}

	.cateringw-shop-toolbar {
		align-items: stretch;
	}

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

	.cateringw-price-filter__group,
	.cateringw-price-filter__actions {
		width: 100%;
	}

	.cateringw-price-filter__button,
	.cateringw-price-filter__reset {
		width: 100%;
	}
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
	width: 80px;
	height: 80px;
	box-shadow: none;
	margin: 0;
}
.woocommerce ul.cart_list li::after,
.woocommerce ul.cart_list li::before,
.woocommerce ul.product_list_widget li::after,
.woocommerce ul.product_list_widget li::before,
.woocommerce-page ul.cart_list li::after,
.woocommerce-page ul.cart_list li::before,
.woocommerce-page ul.product_list_widget li::after,
.woocommerce-page ul.product_list_widget li::before {
	content: none;
	display: none;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper
	.wc-block-components-sale-badge {
	color: var(--color-gold);
}
.wc-block-components-button__text {
	background-color: var(--color-burgundy);
	border-radius: 999px;
	display: flex;
	width: 100%;
	padding: 16px;
}
.wc-block-components-button__text:hover {
	background-color: var(--accent);
}

@container (min-width: 700px) {
	.wc-block-cart__main .wc-block-cart-items td {
		border: 0;
	}
	.wc-block-cart__main .wc-block-cart-items {
		border: 0;
	}
}
.editor-styles-wrapper
	table.wc-block-cart-items
	.wc-block-cart-items__row
	.wc-block-cart-item__image
	img,
table.wc-block-cart-items
	.wc-block-cart-items__row
	.wc-block-cart-item__image
	img {
	width: 80px;
	height: 80px;
	border-radius: 18px;
}
.wc-block-cart__main .wc-block-cart-items td {
	padding: 0;
}
.wc-block-cart-items__row {
	margin-bottom: 18px;
}

.wc-block-cart-items__row:last-child {
	margin-bottom: 0;
}

.wc-block-cart-items__row .wc-block-cart-item__image {
	margin-right: 18px;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 18px;
}
#add_payment_method table.cart input,
.woocommerce-cart table.cart input,
.woocommerce-checkout table.cart input::-webkit-inner-spin-button,
#add_payment_method table.cart input,
.woocommerce-cart table.cart input,
.woocommerce-checkout table.cart input::-webkit-outer-spin-button {
	-webkit-appearance: none;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: auto;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button.alt {
	background-color: var(--color-burgundy);
	border-radius: 999px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button.alt:hover {
	background-color: var(--color-burgundy-hover);
}
.woocommerce table.shop_table {
	border: 0;
	margin: 0;
}
.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart-billing {
	width: 100%;
	max-width: min(1100px, 100%);
	margin: 0 auto 0 auto;
}

.cateringw-time-slots {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.cateringw-time-slot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	color: inherit;
	font: inherit;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
	color: rgba(245, 245, 245, 0.9);
}

.cateringw-time-slot:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(245, 245, 245, 0.8);
}

.cateringw-time-slot.is-active {
	border-color: var(--color-burgundy);
	background: var(--color-burgundy);
	box-shadow: 0 0 0 2px rgba(83, 27, 45, 0.24);
	color: rgba(245, 245, 245, 1);
}
.woocommerce ul#shipping_method li label {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 8px 12px 8px 12px;
}
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-radius: 999px;
	background-color: rgba(245, 245, 245, 0.1);
	color: var(--color-text);
	border: none;
	/* margin: 12px; */
	outline: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 1.5rem 0.5rem 3.5rem;
}

.woocommerce-notices-wrapper.cateringw-toast-notices {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	width: min(640px, calc(100vw - 32px));
	z-index: 999999;
	display: grid;
	gap: 12px;
	pointer-events: none;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	width: min(640px, calc(100vw - 32px));
	z-index: 999999;
	display: grid;
	gap: 12px;
	pointer-events: none;
}

.woocommerce-notices-wrapper.cateringw-toast-notices .woocommerce-message,
.woocommerce-notices-wrapper.cateringw-toast-notices .woocommerce-info,
.woocommerce-notices-wrapper.cateringw-toast-notices .woocommerce-error {
	margin: 0;
	pointer-events: auto;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	position: relative;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .woocommerce-message,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .woocommerce-info,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .woocommerce-error,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .cateringw-toast-item {
	margin: 0;
	pointer-events: auto;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	position: relative;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .cateringw-toast-item > .woocommerce-message,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .cateringw-toast-item > .woocommerce-info,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .cateringw-toast-item > .woocommerce-error {
	margin: 0;
}

.woocommerce-notices-wrapper.cateringw-toast-notices ul.woocommerce-error,
.woocommerce-notices-wrapper.cateringw-toast-notices ul.woocommerce-info,
.woocommerce-notices-wrapper.cateringw-toast-notices ul.woocommerce-message,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices ul.woocommerce-error,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices ul.woocommerce-info,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices ul.woocommerce-message {
	display: block;
}

.woocommerce-notices-wrapper.cateringw-toast-notices ul.woocommerce-error li,
.woocommerce-notices-wrapper.cateringw-toast-notices ul.woocommerce-info li,
.woocommerce-notices-wrapper.cateringw-toast-notices ul.woocommerce-message li,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices ul.woocommerce-error li,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices ul.woocommerce-info li,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices ul.woocommerce-message li {
	display: list-item;
}

.woocommerce-notices-wrapper.cateringw-toast-notices .woocommerce-message.is-hiding,
.woocommerce-notices-wrapper.cateringw-toast-notices .woocommerce-info.is-hiding,
.woocommerce-notices-wrapper.cateringw-toast-notices .woocommerce-error.is-hiding {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .woocommerce-message.is-hiding,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .woocommerce-info.is-hiding,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .woocommerce-error.is-hiding,
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .cateringw-toast-item.is-hiding {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.woocommerce-notices-wrapper.cateringw-toast-notices .cateringw-toast-close {
	margin-left: 12px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 0;
	color: currentColor;
	background: rgba(245, 245, 245, 0.12);
	cursor: pointer;
	flex: 0 0 auto;
	line-height: 1;
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout.cateringw-toast-notices .cateringw-toast-close {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
}

.woocommerce-notices-wrapper.cateringw-toast-notices .cateringw-toast-close:hover {
	background: rgba(245, 245, 245, 0.18);
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
	top: auto;
}
.woocommerce form .form-row .input-text {
	background-color: rgba(245, 245, 245, 0.05);
	border: 1px solid rgba(245, 245, 245, 0.1);
	border-radius: 24px;
	color: var(--color-text);
}
.woocommerce
	div.product
	div.images
	.woocommerce-product-gallery__image--placeholder {
	border-radius: 32px;
	overflow: hidden;
}

.single-product div.product {
	--product-gallery-sticky-top: 100px;
	/* display: grid; */
	/* grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); */
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}
.product-grid {
	display: grid;
	grid-template-columns: minmax(0, 500px) minmax(320px, 1fr);
	gap: 4rem;
}
@media (max-width: 1000px) {
	.product-grid {
		grid-template-columns: minmax(0, 500px) minmax(320px, 50%);
		gap: 3rem;
	}
}
@media (max-width: 800px) {
	.product-grid {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}
}
.single-product div.product div.images,
.single-product div.product div.summary {
	float: none;
	width: auto;
	margin: 0;
}

.single-product div.product div.summary {
	min-width: 0;
}
.woocommerce div.product div.images.woocommerce-product-gallery {
	top: 0;
}
.single-product .variations tr {
	border: 0;
}
.single-product div.product div.images,
.single-product div.product .woocommerce-product-gallery {
	width: 100%;
	max-width: 500px;
}

.single-product .woocommerce-product-gallery {
	position: sticky;
	top: var(--product-gallery-sticky-top);
}

.single-product .woocommerce-product-gallery .flex-viewport,
.single-product .woocommerce-product-gallery__wrapper {
	margin: 0;
	border-radius: 32px;
	overflow: hidden;
}

.single-product .woocommerce-product-gallery .flex-viewport {
	width: 100%;
	max-width: 500px;
}

.single-product .woocommerce-product-gallery__image a,
.single-product .woocommerce-product-gallery__image--placeholder a,
.single-product .woocommerce-product-gallery__image img,
.single-product .woocommerce-product-gallery__image--placeholder img {
	display: block;
	width: 100%;
}

.single-product .woocommerce-product-gallery__image img,
.single-product .woocommerce-product-gallery__image--placeholder img {
	width: 100%;
	height: 500px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.single-product .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.single-product .flex-control-thumbs li {
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
}

.single-product .flex-control-thumbs img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 18px;
}

.cateringw-product-gallery__controls {
	display: none;
}

.cateringw-product-gallery__nav,
.cateringw-product-lightbox__nav,
.cateringw-product-lightbox__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: rgba(32, 16, 20, 0.72);
	color: #fff;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		opacity 0.2s ease;
}

.cateringw-product-gallery__nav {
	pointer-events: auto;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.cateringw-product-gallery__nav:hover,
.cateringw-product-lightbox__nav:hover,
.cateringw-product-lightbox__close:hover {
	background: rgba(83, 27, 45, 0.92);
	transform: translateY(-1px);
}

.cateringw-product-gallery__nav:disabled,
.cateringw-product-lightbox__nav:disabled {
	opacity: 0.35;
	cursor: default;
	transform: none;
}

.cateringw-product-gallery__thumbs {
	display: none;
}

.cateringw-product-gallery__thumb {
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	cursor: pointer;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		opacity 0.2s ease;
}

.cateringw-product-gallery__thumb:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.28);
}

.cateringw-product-gallery__thumb.is-active {
	border-color: var(--color-burgundy);
	box-shadow: 0 0 0 2px rgba(83, 27, 45, 0.28);
}

.cateringw-product-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100px;
	object-fit: cover;
}
.cateringw-product-lightbox {
	display: none;
}

@media (max-width: 960px) {
	.single-product div.product {
		grid-template-columns: 1fr;
	}

	.single-product .woocommerce-product-gallery {
		position: static;
	}
}

@media (max-width: 640px) {
	.single-product .woocommerce-product-gallery__image img,
	.single-product .woocommerce-product-gallery__image--placeholder img {
		height: auto;
	}
}
.woocommerce div.product div.images.woocommerce-product-gallery {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 auto;
}
.woocommerce div.product .product_title {
	font-size: var(--text-4xl);
	font-weight: 500;
}

.single-product form.cart,
.single-product .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.single-product form.cart .quantity,
.single-product .woocommerce-variation-add-to-cart .quantity {
	margin: 0;
}
.woocommerce #content div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
	margin-top: 3rem;
}
.single-product form.cart .single_add_to_cart_button,
.single-product .woocommerce-variation-add-to-cart .single_add_to_cart_button {
	min-height: 46px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background-color: var(--color-burgundy);
	color: var(--color-text);
	font-weight: 500;
	flex: 1;
}

.single-product .variations {
	width: 100%;
	max-width: 100%;
	margin-top: 20px;
	border-collapse: separate;
	border-spacing: 0 14px;
	table-layout: fixed;
}

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

.single-product .variations tr {
	margin-bottom: 14px;
}

.single-product .variations th,
.single-product .variations td {
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 0;
	text-align: left;
	vertical-align: top;
}

.single-product .variations td.value,
.single-product .single_variation_wrap,
.single-product .variations_form {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.single-product .variations .label {
	padding-right: 0;
	margin-bottom: 8px;
}

.single-product .variations .label label {
	display: inline-block;
	padding-top: 12px;
	font-weight: 700;
}

.cateringw-variation-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
	width: 100%;
	max-width: 100%;
}

.cateringw-variation-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	min-height: 46px;
	padding: 10px 18px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: inherit;
	font-weight: 600;
	line-height: 1.2;
	white-space: normal;
	word-break: break-word;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		opacity 0.2s ease;
}

.cateringw-variation-tag:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.09);
}

.cateringw-variation-tag.is-selected {
	border-color: var(--color-burgundy);
	background: var(--color-burgundy);
	color: var(--color-text);
}

.cateringw-variation-tag:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	transform: none;
}

.single-product .variations select {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button {
	padding: var(--text-xl);
	border-radius: 999px;
	background-color: rgba(73, 17, 28, 0.4);
	color: var(--color-text);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button:hover {
	background-color: rgba(73, 17, 28, 0.6);
	color: var(--color-text);
}
.woocommerce-variation-price {
	margin-bottom: 1rem;
}
.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
	content: none;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	#respond
	input#submit.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	a.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	button.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
	input.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	#respond
	input#submit.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	a.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	button.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
		:not(.edit-post-visual-editor)
	)
	.woocommerce
	input.button.alt:disabled[disabled]:hover {
	background-color: rgba(73, 17, 28, 0.6);
	color: var(--color-text);
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
	div.product
	span.price {
	color: #f1d77a;
	font-size: var(--text-2xl);
	padding: 0.5rem 0;
}
.woocommerce-product-details__short-description p {
	color: rgba(245, 245, 245, 0.8);
}
.woocommerce div.product form.cart .variations {
	margin: 0;
}
.single-product form.cart,
.single-product .woocommerce-variation-add-to-cart {
	margin: 0;
	gap: 0;
}
.single-product .variations .label label {
	padding: 0;
}
/* .woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	background: var(--accent);
	color: var(--color-text);
} */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--color-text);
	border-radius: 999px;
	margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0.725rem;
	padding: 0;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	width: 100%;
	margin: 0;
	margin-bottom: 2em;
}
.woocommerce .products ul,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3%;
}
@media (max-width: 1020px) {
	.woocommerce .products ul,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 850px) {
	.woocommerce .products ul,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}
.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
	content: none;
}
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
	width: 100%;
	float: none;
	clear: both;
}
.mobile-cart-toggle,
.mobile-filters-toggle,
.filters-panel__content,
.filters-panel__overlay {
	display: none;
}
.onlyMobile {
	display: none;
	visibility: hidden;
}
.woocommerce div.product form.cart div.quantity {
	margin: 0 10px 0 0;
}

@media (max-width: 780px) {
	.mobile-cart-toggle,
	.mobile-filters-toggle {
		position: fixed;
		z-index: 100;
		bottom: 20px;
		right: 20px;
		color: var(--color-text);
		border-radius: 999px;
		padding: 15px 20px 15px 20px;
		background-color: var(--color-burgundy);
		display: flex;
		gap: 4px;
		flex-direction: row;
		box-shadow: 1px 2px 18px 0px rgba(0, 0, 0, 0.5);
		cursor: pointer;
	}
	.mobile-filters-toggle {
		right: initial;
		left: 20px;
		background-color: var(--color-text);
		color: #231f1c;
	}
	.filters-panel__content {
		display: block;
		position: fixed;
		transform: translateX(-100%);
		top: 0;
		left: 0;
		width: 80%;
		max-width: 300px;
		height: 100%;
		background: #060000;
		box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease-in-out;
		z-index: 1000;
		padding: 20px;
		overflow-y: auto;
	}
	.filters-panel__content.is-open {
		transform: translateX(0%);
	}
	.filters-panel__overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease-in-out;
		z-index: 999;
	}
	.filters-panel__overlay.is-open {
		opacity: 1;
		visibility: visible;
	}
	.cateringw-shop-sidebar
		> .cateringw-shop-sidebar__section
		> .cateringw-price-filter,
	.menu-cart-link {
		display: none;
	}
	.onlyMobile {
		display: block;
		visibility: visible;
	}
	.single-product form.cart,
	.single-product .woocommerce-variation-add-to-cart {
		display: flex;
		flex-direction: column;
	}
	.woocommerce div.product form.cart .button {
		width: 100%;
		margin-top: 1rem;
	}
	.woocommerce div.product form.cart div.quantity {
		margin: 0;
		width: 100%;
	}
}
.filters-panel__close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
}
.filters-panel__content .cateringw-shop-categories__list {
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: scroll;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--color-text);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		opacity 0.2s ease;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover {
	color: var(--color-text);
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.09);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--color-burgundy);
	border: 1px solid var(--color-burgundy);
	color: var(--color-text);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	overflow: visible;
}
.product_meta {
	display: flex;
	flex-direction: column;
	color: rgba(245, 245, 245, 0.8);
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
	font-size: var(--text-xl);
}
.related_title {
	color: rgba(245, 245, 245, 1);
	margin-bottom: 12px;
	font-size: var(--text-2xl);
}
.woocommerce div.product form.cart {
	margin-top: 1.5em;
}
.woocommerce-checkout {
	--checkout-sidebar-width: 40%;
	--checkout-main-width: 60%;
	--checkout-card-bg: rgba(245, 245, 245, 0.08);
	--checkout-card-border: rgba(245, 245, 245, 0.12);
	--checkout-divider: rgba(245, 245, 245, 0.1);
}

.woocommerce-checkout .cateringw-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, var(--checkout-main-width)) minmax(
			320px,
			var(--checkout-sidebar-width)
		);
	gap: 28px;
	align-items: start;
}

.woocommerce-checkout .cateringw-checkout-main,
.woocommerce-checkout .cateringw-checkout-sidebar {
	min-width: 0;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: auto;
}

.woocommerce-checkout .cateringw-checkout-summary-card {
	position: sticky;
	top: 100px;
	padding: 24px;
	border: 1px solid var(--checkout-card-border);
	border-radius: 32px;
	background: var(--checkout-card-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.cateringw-checkout-summary-card__header {
	margin-bottom: 20px;
}

.cateringw-checkout-summary-card__eyebrow {
	margin: 0 0 6px;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(245, 245, 245, 0.65);
}

.cateringw-checkout-summary-card__header h3 {
	margin: 0;
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 500;
}

.woocommerce-checkout .cateringw-review-order-table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-checkout .cateringw-review-order-table tbody tr,
.woocommerce-checkout .cateringw-review-order-table tfoot tr {
	border-bottom: 1px solid var(--checkout-divider);
}

.woocommerce-checkout .cateringw-review-order-table tbody tr:last-child,
.woocommerce-checkout .cateringw-review-order-table tfoot tr:last-child {
	border-bottom: 0;
}

.woocommerce-checkout .cateringw-review-order-table th,
.woocommerce-checkout .cateringw-review-order-table td {
	padding: 14px 0;
	vertical-align: top;
}

.woocommerce-checkout .cateringw-review-order-table tbody .product-name {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-right: 16px;
	font-weight: 500;
}

.woocommerce-checkout .cateringw-review-order-table tbody .product-total,
.woocommerce-checkout .cateringw-review-order-table tfoot td {
	text-align: right;
	white-space: nowrap;
}

.woocommerce-checkout .cateringw-review-order-table .product-quantity {
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(245, 245, 245, 0.65);
}

.woocommerce-checkout .cateringw-review-order-table dl.variation {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(245, 245, 245, 0.65);
}

.woocommerce-checkout .cateringw-review-order-table tfoot th {
	font-weight: 500;
	color: rgba(245, 245, 245, 0.75);
}

.woocommerce-checkout .cateringw-review-order-table .order-total th,
.woocommerce-checkout .cateringw-review-order-table .order-total td {
	padding-top: 18px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-text);
}

.woocommerce-checkout .woocommerce-checkout-payment {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
	background: none;
	border-radius: 0;
}

.woocommerce-checkout .wc_payment_methods {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.woocommerce-checkout .wc_payment_method {
	padding: 0;
}

.woocommerce-checkout .wc_payment_method:last-child {
	border-bottom: 0;
}

.woocommerce-checkout #place_order {
	width: 100%;
	min-height: 54px;
	border-radius: 999px;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 16px;
}

.woocommerce-checkout .cateringw-checkout-auth-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	align-items: start;
	max-width: min(1100px, 100%);
    margin: 0 auto 24px auto;
}

.woocommerce-checkout .cateringw-checkout-auth-row__col .woocommerce-info,
.woocommerce-checkout .cateringw-checkout-auth-row__col .woocommerce-message,
.woocommerce-checkout .cateringw-checkout-auth-row__col .woocommerce-error {
	margin: 0 0 12px;
}

.woocommerce-checkout .cateringw-checkout-login-card {
	padding: 18px 20px;
	border-radius: 24px;
	background: rgba(245, 245, 245, 0.1);
}

.woocommerce-checkout .cateringw-checkout-login-card__title {
	margin: 0 0 6px;
	font-weight: 600;
}

.woocommerce-checkout .cateringw-checkout-login-card__subtitle {
	margin: 0 0 14px;
	color: rgba(245, 245, 245, 0.72);
}

.woocommerce-checkout .cateringw-checkout-login-card__button {
	width: 100%;
	border-radius: 999px;
	min-height: 44px;
}

.woocommerce-checkout .cateringw-coupon-notices .woocommerce-error,
.woocommerce-checkout .cateringw-coupon-notices .woocommerce-message,
.woocommerce-checkout .cateringw-coupon-notices .woocommerce-info {
	margin: 0;
}

.woocommerce-checkout .cateringw-coupon-notices .woocommerce-error,
.woocommerce-checkout .cateringw-coupon-notices .woocommerce-message,
.woocommerce-checkout .cateringw-coupon-notices .woocommerce-info {
	padding: 12px 14px;
	border-radius: 18px;
}

.woocommerce-checkout .cateringw-coupon-notices ul {
	margin: 0;
	padding-left: 18px;
}

.woocommerce-checkout .cateringw-checkout-consents {
	margin-top: 12px;
}

.woocommerce-checkout .cateringw-checkout-consents .form-row {
	margin: 0;
}

.woocommerce-checkout .cateringw-checkout-consents label {
	display: inline;
	color: rgba(245, 245, 245, 0.85);
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper label,
.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
	color: rgba(245, 245, 245, 0.85);
}

.woocommerce-checkout .cateringw-checkout-consents a, .woocommerce-terms-and-conditions-checkbox-text > a {
	color: rgba(245, 245, 245, 1);
	font-weight: 600;
	text-decoration: underline;
}

/* Checkout: hide global notice "alert" blocks, keep field-level invalid highlighting. */
.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
	display: none;
}

.woocommerce-checkout .cateringw-checkout-consents__error {
	margin-top: 8px;
	font-size: 0.9rem;
	color: #ff6b6b;
}

.cateringw-checkout-modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 9999;
}

.cateringw-checkout-modal.is-open {
	display: grid;
	place-items: center;
}

.cateringw-checkout-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.cateringw-checkout-modal__dialog {
	position: relative;
	width: min(560px, calc(100vw - 32px));
	max-height: calc(100vh - 32px);
	overflow: auto;
	padding: 22px 22px 18px;
	border: 1px solid var(--checkout-card-border);
	border-radius: 28px;
	background: rgba(16, 16, 16, 0.92);
}

.cateringw-checkout-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.cateringw-checkout-modal__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
}

.cateringw-checkout-modal__close {
	border: 0;
	background: transparent;
	color: var(--color-text);
	font-size: 28px;
	line-height: 1;
	padding: 6px 10px;
	cursor: pointer;
}

.cateringw-checkout-modal-open {
	overflow: hidden;
}

@media (max-width: 960px) {
	.woocommerce-checkout .cateringw-checkout-layout {
		grid-template-columns: 1fr;
	}

	.woocommerce-checkout .cateringw-checkout-auth-row {
		grid-template-columns: 1fr;
	}

	.woocommerce-checkout .cateringw-checkout-summary-card {
		position: static;
	}
}

.cateringw-event-date-picker .form-row {
	margin: 0;
	display: none;
}

.cateringw-event-date-picker input[type="hidden"] {
	display: none;
}

.cateringw-inline-calendar .flatpickr-calendar {
	width: 50%;
	min-width: 320px;
	padding: 16px;
	border: 1px solid rgba(245, 245, 245, 0.12);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: none;
	color: var(--color-text);
}

.cateringw-inline-calendar .flatpickr-weekdays,
.cateringw-inline-calendar .flatpickr-days,
.cateringw-inline-calendar .dayContainer,
.cateringw-inline-calendar .flatpickr-weekdaycontainer {
	width: 100%;
	max-width: 100%;
}

.cateringw-inline-calendar .flatpickr-weekdaycontainer,
.cateringw-inline-calendar .dayContainer {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	background: none;
	color: rgba(245, 245, 245, 0.8);
	padding: 0;
	font-size: 0.725rem;
	margin: 4px 0 12px 0
}
.cateringw-inline-calendar .flatpickr-months {
	margin-bottom: 10px;
}
#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
	margin-bottom: 8px;
}
#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
	top: -29px;
	left: 28px;
	border: 1em solid rgb(73 17 28 / 50%);
	border-right-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent;
	margin: 0;
	content: none;
}
.cateringw-inline-calendar .flatpickr-months .flatpickr-month,
.cateringw-inline-calendar
	.flatpickr-current-month
	.flatpickr-monthDropdown-months,
.cateringw-inline-calendar .flatpickr-current-month input.cur-year,
.cateringw-inline-calendar .flatpickr-weekdays,
.cateringw-inline-calendar span.flatpickr-weekday {
	color: var(--color-text);
	fill: var(--color-text);
}

.cateringw-inline-calendar .flatpickr-prev-month,
.cateringw-inline-calendar .flatpickr-next-month {
	fill: var(--color-text);
}

.cateringw-inline-calendar .flatpickr-day {
	width: 100%;
	max-width: none;
	height: 42px;
	line-height: 42px;
	margin: 0;
	border-radius: 14px;
	color: var(--color-text);
}

.cateringw-inline-calendar .flatpickr-day:hover,
.cateringw-inline-calendar .flatpickr-day:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.08);
}

.cateringw-inline-calendar .flatpickr-day.selected,
.cateringw-inline-calendar .flatpickr-day.startRange,
.cateringw-inline-calendar .flatpickr-day.endRange {
	background: var(--color-burgundy);
	border-color: var(--color-burgundy);
}

.cateringw-inline-calendar .flatpickr-day.today {
	border-color: rgba(255, 255, 255, 0.35);
}

.cateringw-inline-calendar .flatpickr-day.flatpickr-disabled,
.cateringw-inline-calendar .flatpickr-day.prevMonthDay,
.cateringw-inline-calendar .flatpickr-day.nextMonthDay {
	color: rgba(245, 245, 245, 0.3);
}

@media (max-width: 767px) {
	.cateringw-inline-calendar .flatpickr-calendar {
		width: 100%;
		min-width: 0;
	}
}
.woocommerce form .form-row {
	padding: 0;
	margin: 0;
}
.woocommerce form .form-row label {
	line-height: 1;
}
.flatpickr-calendar,
.flatpickr-rContainer,
.flatpickr-days {
	width: 100%;
}
.flatpickr-calendar {
	width: 100%;
}
.dayContainer {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	width: 100%;
}
.woocommerce form .start-hour .form-row {
	display: none;
}
.is-hidden-field {
	display: none !important;
}
.woocommerce .col2-set,
.woocommerce-page .col2-set {
	display: flex;
	gap: 16px;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
	display: flex;
	flex-direction: column;
}
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
	display: flex;
	flex-direction: column;
}
.woocommerce ul.order_details {
	margin: 0 auto 0 auto;
}
.icon-logo a img {
	height: 100px;
	width: auto;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 23%;
}
.woocommerce-account .woocommerce-MyAccount-content {
	width: 75%;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	background-color: rgba(245, 245, 245, 0.1);
	border: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	border-radius: var(--radius-3xl);
	max-width: 600px;
}
.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
	color: rgba(245, 245, 245, 0.39);
}
.woocommerce form .show-password-input::before,
.woocommerce-page form .show-password-input::before {
	background-image: url("./assets/svg/eye-off.svg");
}
.woocommerce form .show-password-input.display-password::before,
.woocommerce-page form .show-password-input.display-password::before {
	background-image: url("./assets/svg/eye.svg");
}
.woocommerce table.shop_table {
	border-radius: 24px;
}
.woocommerce .col2-set::after,
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::after,
.woocommerce-page .col2-set::before {
	content: none;
}
woocommerce .woocommerce-customer-details address {
	border: none;
}
.blockOverlay {
	opacity: 0.3 !important;
	backdrop-filter: blur(10px) !important;
	-webkit-backdrop-filter: blur(10px) !important;
}
.mobile-nav__menu a {
	display: block;
	padding: 12px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--color-text);
	font-size: var(--text-lg);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.mobile-nav__menu a:hover,
.mobile-nav__menu a:focus-visible {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.18);
	transform: translateY(-1px);
}
.checkout {
	grid-row: 1;
}
@media (max-width: 768px) {
	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		content: none !important;
	}
}
@media (max-width: 680px) {
	.cateringw-cart-item__bottom {
		gap: 8px;
		grid-template-columns: 1fr auto 1fr;
	}
	.cateringw-cart-item__top {
		margin-bottom: 8px;
	}
	.cateringw-cart-item {
		gap: 8px;
	}
}
@media (max-width: 610px) {
	.cateringw-cart-item__bottom {
		grid-template-columns: 1fr 1fr;
	}
	.cateringw-cart-item__quantity {
		grid-area: 2 / 1 / 3 / 3;
	}
	.cateringw-cart-item {
		gap: 4px;
	}
}
@media (max-width: 420px) {
	.site-shell {
		width: 100%;
	}
}
form.woocommerce-checkout {
	max-width: min(1100px, 100%);
	margin: 0 auto;
}
.woocommerce form.checkout_coupon {
	background: none;
}
.checkout_coupon_custom {
	gap:0 !important;
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
}
.coupon_grid {
	display: grid;
    grid-template-columns: auto max(100px);
}
.coupon-error-notice {
	grid-column-start: 1;
	grid-column-end: 3;
	color: rgba(245, 245, 245, 0.7) !important;
}
.woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
	margin-left: 40px !important;
}
.woocommerce-checkout .cateringw-coupon-notices .woocommerce-error {
	padding: 4px 0;
}
.withoutWidthLimit {
	max-width: 100% !important;
}
.added_to_cart {
	display: none !important; 
}
