.awd-order-menu {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	font-family: var(--ast-heading-font-family, inherit);
}

.awd-order-menu:focus,
.awd-order-menu:focus-visible,
.awd-order-menu-catalog {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.awd-order-menu * {
	box-sizing: border-box;
}

.awd-order-section {
	margin: 0 0 42px;
}

.awd-order-tabbed-catalog {
	display: grid;
	gap: 18px;
	padding: 18px 0;
}

.awd-order-level-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 4px;
	border: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .14));
	border-radius: 999px;
	background: rgba(255, 250, 242, .72);
	box-shadow: 0 10px 24px var(--awd-order-shadow-color, rgba(16, 35, 26, .06));
}

.awd-order-subcategory-tabs {
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.awd-order-level-tab {
	flex: 1 1 140px;
	min-height: 38px;
	padding: 8px 16px;
	border: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .18));
	border-radius: 999px;
	background: #fffaf2;
	color: var(--awd-order-text-color, #10231a);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.15;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}

.awd-order-level-tab.is-active {
	border-color: var(--awd-order-accent-color, #006c38);
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
	box-shadow: 0 8px 18px var(--awd-order-shadow-color, rgba(16, 35, 26, .12));
}

.awd-order-category-tabs .awd-order-level-tab {
	border-color: transparent;
	background: transparent;
}

.awd-order-category-tabs .awd-order-level-tab.is-active {
	border-color: var(--awd-order-accent-color, #006c38);
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
}

.awd-order-subcategory-tabs .awd-order-level-tab {
	flex: 0 1 auto;
	min-height: 36px;
}

.awd-order-category-panel,
.awd-order-subcategory-panel-tab {
	display: none;
}

.awd-order-category-panel.is-active,
.awd-order-subcategory-panel-tab.is-active {
	display: grid;
	gap: 18px;
}

.awd-order-tabbed-items {
	display: grid;
	gap: 16px;
}

.awd-order-category {
	margin: 0 0 20px;
	color: var(--awd-order-category-color, #006c38);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.1;
}

.awd-order-subcategory {
	margin: 0;
	color: var(--awd-order-subcategory-color, #10231a);
	font-size: 24px;
	line-height: 1.25;
}

.awd-order-subsection {
	margin: 0 0 30px;
}

.awd-order-subcategory-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	font: inherit;
	appearance: none;
}

.awd-order-subcategory-trigger,
.awd-order-subcategory-trigger:hover,
.awd-order-subcategory-trigger:focus,
.awd-order-subcategory-trigger:focus-visible,
.awd-order-subcategory-trigger:active {
	color: inherit !important;
	text-decoration: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.awd-order-subcategory-trigger .awd-order-subcategory,
.awd-order-subcategory-trigger:hover .awd-order-subcategory,
.awd-order-subcategory-trigger:focus .awd-order-subcategory,
.awd-order-subcategory-trigger:active .awd-order-subcategory {
	color: var(--awd-order-subcategory-color, #10231a) !important;
	text-decoration: none !important;
}

.awd-order-subcategory-trigger-icon {
	position: relative;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .18));
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 8px 20px var(--awd-order-shadow-color, rgba(16, 35, 26, .06));
}

.awd-order-subcategory-trigger-icon::before,
.awd-order-subcategory-trigger-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 2px;
	background: var(--awd-order-accent-color, #006c38);
	border-radius: 1px;
	transition: transform 180ms ease;
}

.awd-order-subcategory-trigger-icon::before {
	transform: translate(-85%, -50%) rotate(45deg);
}

.awd-order-subcategory-trigger-icon::after {
	transform: translate(-15%, -50%) rotate(-45deg);
}

.awd-order-subcategory-trigger[aria-expanded="true"] .awd-order-subcategory-trigger-icon::before {
	transform: translate(-85%, -50%) rotate(-45deg);
}

.awd-order-subcategory-trigger[aria-expanded="true"] .awd-order-subcategory-trigger-icon::after {
	transform: translate(-15%, -50%) rotate(45deg);
}

.awd-order-subcategory-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 220ms ease;
}

.awd-order-subcategory-panel.is-open {
	grid-template-rows: 1fr;
}

.awd-order-subcategory-panel > .awd-order-grid {
	min-height: 0;
	overflow: hidden;
}

.awd-order-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}

.awd-order-card {
	flex: 0 1 calc((100% - 36px) / 3);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-width: min(100%, 240px);
	border: 1px solid rgba(0, 108, 56, .14);
	border-radius: 18px;
	border-color: var(--awd-order-border-color, rgba(0, 108, 56, .14));
	background: var(--awd-order-card-background, #fff);
	box-shadow: 0 12px 30px var(--awd-order-shadow-color, rgba(16, 35, 26, .08));
}

@media (max-width: 520px) {
	.awd-order-card {
		flex-basis: 100%;
		min-width: 0;
	}
}

.awd-order-card-unavailable {
	opacity: .55;
}

.awd-order-card-unavailable-label {
	margin-top: 6px;
	color: #b42318;
	font-size: 13px;
	font-weight: 600;
}

/* Off for one channel only -- still addable, so a softer amber warning
   instead of the full "unavailable" red used when it can't be ordered at all. */
.awd-order-card-unavailable-label.awd-order-card-warning-label {
	color: #9a6700;
}

.awd-order-card-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--awd-order-placeholder-color, #e9f8ee);
}

.awd-order-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.awd-order-card-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--awd-order-accent-color, #006c38);
	font-size: 42px;
	font-weight: 800;
}

.awd-order-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 18px;
}

.awd-order-card-title {
	margin: 0 0 8px;
	color: var(--awd-order-text-color, #10231a);
	font-size: 22px;
	line-height: 1.25;
}

.awd-order-card-description {
	color: var(--awd-order-description-color, #4c5d55);
	font-size: 15px;
	line-height: 1.5;
}

.awd-order-card-description p {
	margin: 0 0 10px;
}

.awd-order-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 16px;
}

.awd-order-card-price {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
	font-weight: 800;
	white-space: nowrap;
}

.awd-order-add,
.awd-order-qty button {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid rgba(0, 108, 56, .18);
	border-radius: 999px;
	background: #fff;
	border-color: var(--awd-order-border-color, rgba(0, 108, 56, .18));
	color: var(--awd-order-accent-color, #006c38);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.awd-order-add {
	position: relative;
	font-size: 0;
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
}

/* A "+" drawn from two centered bars instead of the "+" text glyph -- glyph
   centering depends on the font's own metrics (cap height, baseline), which
   is why the old content:"+" version always sat slightly off-center and
   needed a fragile manual translateY() nudge. Two bars centered by exact
   pixel math can't be off. */
.awd-order-add::before,
.awd-order-add::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	border-radius: 1px;
}

.awd-order-add::before {
	width: 14px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.awd-order-add::after {
	width: 2px;
	height: 14px;
	transform: translate(-50%, -50%);
}

.awd-order-cart {
	position: fixed;
	z-index: 2147482000;
	width: min(380px, calc(100vw - 32px));
	max-height: var(--awd-order-cart-max-height, calc(100vh - 48px));
	max-height: var(--awd-order-cart-max-height, calc(100dvh - 48px));
	overflow: auto;
	padding: 0 18px 18px;
	border: 1px solid rgba(0, 108, 56, .14);
	border-radius: 18px;
	border-color: var(--awd-order-border-color, rgba(0, 108, 56, .14));
	background: var(--awd-order-card-background, #fff);
	box-shadow: 0 14px 34px var(--awd-order-shadow-color, rgba(16, 35, 26, .10));
	font-family: inherit;
	opacity: 0;
	pointer-events: none;
	transform: translate(var(--awd-order-cart-x-closed, calc(100% + 32px)), var(--awd-order-cart-y-closed, 0));
	transition: opacity 180ms ease, transform 220ms ease;
}

.awd-order-cart.is-dragged {
	right: auto;
	max-height: calc(100vh - 24px);
	max-height: calc(100dvh - 24px);
	transform: none;
}

.awd-order-cart.is-dragging {
	cursor: grabbing;
	transition: none;
	user-select: none;
}

.awd-order-menu.has-cart.is-cart-open .awd-order-cart {
	opacity: 1;
	pointer-events: auto;
	transform: translate(var(--awd-order-cart-x-open, 0), var(--awd-order-cart-y-open, 0));
}

.awd-order-menu.has-cart.is-cart-open .awd-order-cart.is-dragged {
	transform: none;
}

.awd-order-cart-x-left .awd-order-cart {
	left: 24px;
	right: auto;
	--awd-order-cart-x-closed: calc(-100% - 32px);
	--awd-order-cart-x-open: 0;
}

.awd-order-cart-x-center .awd-order-cart {
	left: 50%;
	right: auto;
	--awd-order-cart-x-closed: -50%;
	--awd-order-cart-x-open: -50%;
}

.awd-order-cart-x-right .awd-order-cart {
	left: auto;
	right: 24px;
	--awd-order-cart-x-closed: calc(100% + 32px);
	--awd-order-cart-x-open: 0;
}

.awd-order-cart-y-top .awd-order-cart {
	top: var(--awd-order-cart-top, 24px);
	bottom: auto;
	--awd-order-cart-max-height: calc(100vh - var(--awd-order-cart-top, 24px) - 24px);
	--awd-order-cart-max-height: calc(100dvh - var(--awd-order-cart-top, 24px) - 24px);
}

.awd-order-cart-y-center .awd-order-cart {
	top: 50%;
	bottom: auto;
	--awd-order-cart-y-closed: -50%;
	--awd-order-cart-y-open: -50%;
	--awd-order-cart-max-height: calc(100vh - 48px);
	--awd-order-cart-max-height: calc(100dvh - 48px);
}

.awd-order-cart-y-bottom .awd-order-cart {
	top: auto;
	/* 30px above the mobile-cart pill (bottom:18px, 48px tall -> its top
	   edge sits at 66px), not the pill's own bottom offset -- and grows
	   upward from there since it's anchored by `bottom`, capped by
	   max-height so it never runs into the page header (scrolls instead). */
	bottom: 96px;
	--awd-order-cart-max-height: calc(100vh - 24px - 96px);
	--awd-order-cart-max-height: calc(100dvh - 24px - 96px);
}

.awd-order-cart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 -18px 18px;
	padding: 18px 18px 16px 20px;
	border-radius: 18px 18px 0 0;
	background: var(--awd-order-accent-color, #006c38);
	cursor: grab;
}

.awd-order-cart-head h3 {
	margin: 0;
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
}

.awd-order-cart-clear {
	border: 0;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	cursor: pointer;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 999px;
	transition: background .15s ease, transform .15s ease;
}

.awd-order-cart-clear:hover {
	background: rgba(255, 255, 255, 0.22);
}

.awd-order-cart-clear:active {
	transform: scale(0.97);
}

.awd-order-cart-head-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.awd-order-cart-collapse {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	cursor: pointer;
	padding: 0;
	transition: background .15s ease, transform .15s ease;
}

.awd-order-cart-collapse:hover {
	background: rgba(255, 255, 255, 0.22);
}

.awd-order-cart-collapse:active {
	transform: scale(0.92);
}

.awd-order-cart-empty {
	padding: 18px;
	border-radius: 14px;
	background: var(--awd-order-placeholder-color, #e9f8ee);
	color: var(--awd-order-description-color, #4c5d55);
	text-align: center;
}

.awd-order-cart-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .12));
	cursor: pointer;
}

.awd-order-cart-fee {
	cursor: default;
}

.awd-order-cart-fee strong {
	color: var(--awd-order-text-color, #10231a);
	font-size: 14px;
	font-weight: 800;
}

.awd-order-cart-item-title {
	color: var(--awd-order-text-color, #10231a);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.awd-order-cart-item-price {
	color: var(--awd-order-description-color, #4c5d55);
	font-size: 13px;
}

.awd-order-cart-item-warning {
	margin-top: 2px;
	color: #b42318;
	font-size: 12px;
	font-weight: 600;
}

.awd-order-cart-item-options {
	display: grid;
	gap: 2px;
	margin: 4px 0;
	color: var(--awd-order-description-color, #4c5d55);
	font-size: 12px;
	line-height: 1.35;
}

.awd-order-qty {
	display: flex;
	align-items: center;
	gap: 8px;
}

.awd-order-qty span {
	min-width: 22px;
	text-align: center;
	font-weight: 800;
}

.awd-order-cart-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 16px 0;
	padding-top: 12px;
	color: var(--awd-order-text-color, #10231a);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.15;
}

.awd-order-cart-vat {
	margin: -10px 0 16px;
	color: var(--awd-order-description-color, #4c5d55);
	font-size: 12px;
	font-weight: 600;
	text-align: right;
}

.awd-order-minimum-warning {
	margin: -8px 0 16px;
	padding: 9px 11px;
	border-radius: 8px;
	background: rgba(180, 35, 24, .08);
	color: #b42318;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}

.awd-order-minimum-warning[hidden] {
	display: none;
}

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

.awd-order-checkout label {
	display: grid;
	gap: 6px;
	color: var(--awd-order-text-color, #10231a);
	font-weight: 800;
}

.awd-order-scheduled-fields {
	display: grid;
	gap: 12px;
}

.awd-order-scheduled-fields[hidden] {
	display: none;
}

.awd-order-basket-fields {
	display: grid;
	gap: 12px;
}

.awd-order-step-divider {
	margin: 4px 0 8px;
	border: none;
	border-top: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .12));
}

.awd-order-delivery-fields {
	display: grid;
	gap: 12px;
}

.awd-order-delivery-fields[hidden] {
	display: none;
}

.awd-order-time-input {
	font-variant-numeric: tabular-nums;
}

.awd-order-tip {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--awd-order-accent-color, #006c38);
	font-weight: 800;
}

.awd-order-tip legend {
	padding: 0;
}

.awd-order-tip-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.awd-order-tip-option {
	display: flex !important;
	grid-template-columns: none !important;
	flex-direction: row;
	align-items: center;
	gap: 8px !important;
	min-width: 0;
	padding: 9px 10px;
	border: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .28));
	border-radius: 12px;
	background: var(--awd-order-card-background, #fff);
	color: var(--awd-order-text-color, #10231a) !important;
	font-size: 13px;
	font-weight: 700 !important;
}

.awd-order-tip-custom[hidden] {
	display: none;
}

.awd-order-type-toggle {
	display: flex;
	gap: 3px;
	padding: 3px;
	border: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .28));
	border-radius: 999px;
	background: var(--awd-order-card-background, #fff);
}

.awd-order-type-option {
	position: relative;
	flex: 1 1 0;
	display: flex !important;
	grid-template-columns: none !important;
	margin: 0 !important;
}

.awd-order-type-option input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.awd-order-type-option span {
	flex: 1 1 0;
	text-align: center;
	padding: 9px 14px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 13px;
	color: var(--awd-order-text-color, #10231a);
	transition: background .15s ease, color .15s ease;
}

.awd-order-type-option input:checked + span {
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
}

.awd-order-type-option input:focus-visible + span {
	outline: 2px solid var(--awd-order-accent-color, #006c38);
	outline-offset: 2px;
}

.awd-order-consent {
	display: flex !important;
	grid-template-columns: none !important;
	flex-direction: row;
	align-items: flex-start;
	gap: 8px !important;
	font-weight: 600 !important;
	font-size: 13px;
	color: var(--awd-order-description-color, #4c5d55) !important;
	min-width: 0;
}

.awd-order-consent span {
	display: block;
	min-width: 0;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.awd-order-checkout input,
.awd-order-checkout select,
.awd-order-checkout textarea {
	width: 100%;
	border: 1px solid rgba(0, 108, 56, .28);
	border-color: var(--awd-order-border-color, rgba(0, 108, 56, .28));
	border-radius: 12px;
	padding: 10px 12px;
	background: var(--awd-order-card-background, #fff);
	color: var(--awd-order-text-color, #10231a);
	font-family: inherit;
	font-size: inherit;
	font-weight: 400;
	line-height: 1.35;
}

.awd-order-phone-control {
	display: grid;
	grid-template-columns: minmax(96px, .34fr) minmax(0, 1fr);
	gap: 8px;
}

.awd-order-checkout .awd-order-consent input[type="checkbox"] {
	width: 16px;
	min-width: 16px;
	height: 16px;
	min-height: 16px;
	margin: 2px 0 0;
	padding: 0;
	flex: 0 0 16px;
	accent-color: var(--awd-order-accent-color, #006c38);
}

.awd-order-checkout .awd-order-tip input[type="radio"] {
	width: 16px;
	min-width: 16px;
	height: 16px;
	min-height: 16px;
	margin: 0;
	padding: 0;
	flex: 0 0 16px;
	accent-color: var(--awd-order-accent-color, #006c38);
}

.awd-order-submit {
	width: 100%;
	border: 0;
	border-radius: 999px;
	padding: 13px 18px;
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
	cursor: pointer;
	font-weight: 900;
}

.awd-order-status {
	color: var(--awd-order-accent-color, #006c38);
	font-weight: 700;
}

.awd-order-step {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.awd-order-step[hidden] {
	display: none;
}

.awd-order-continue {
	width: 100%;
	border: 0;
	border-radius: 999px;
	padding: 13px 18px;
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
	cursor: pointer;
	font-weight: 900;
}

.awd-order-back {
	align-self: flex-start;
	border: 0;
	background: none;
	padding: 0;
	color: var(--awd-order-accent-color, #006c38);
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
}

.awd-order-status.is-error {
	color: #c21d12;
}

.awd-order-status.is-neutral {
	color: #647067;
}

.awd-order-mobile-cart {
	position: fixed;
	right: 18px;
	bottom: 24px;
	z-index: 2147482000;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-width: 240px;
	min-height: 52px;
	border: 0;
	border-radius: 999px;
	padding: 13px 20px;
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
	box-shadow: 0 16px 40px var(--awd-order-shadow-color, rgba(16, 35, 26, .24));
	font: inherit;
	font-weight: 900;
}

.awd-order-menu.has-cart .awd-order-mobile-cart {
	display: flex !important;
}

.awd-order-options-modal {
	position: fixed;
	inset: 0;
	z-index: 2147482100;
	display: grid;
	place-items: center;
	padding: 18px;
	background: rgba(16, 35, 26, .34);
	font-family: inherit;
}

.awd-order-options-dialog {
	width: min(520px, calc(100vw - 28px));
	max-height: min(760px, calc(100vh - 40px));
	max-height: min(760px, calc(100dvh - 40px));
	overflow: auto;
	border: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .14));
	border-radius: 18px;
	background: var(--awd-order-card-background, #fff);
	box-shadow: 0 20px 60px rgba(16, 35, 26, .22);
	color: var(--awd-order-text-color, #10231a);
	font-family: inherit;
}

.awd-order-options-head,
.awd-order-options-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px;
}

.awd-order-options-head {
	border-radius: 18px 18px 0 0;
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
}

.awd-order-options-head h3 {
	margin: 0;
	color: #fff;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.2;
}

.awd-order-options-head button {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .34);
	border-radius: 999px;
	background: rgba(255, 255, 255, .16);
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 18px;
	font-weight: 700;
}

.awd-order-options-product {
	padding: 14px 16px 0;
	color: var(--awd-order-description-color, #4c5d55);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

.awd-order-options-list {
	display: grid;
	gap: 14px;
	padding: 16px;
}

.awd-order-option-group {
	margin: 0;
	padding: 16px;
	border: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .14));
	border-radius: 14px;
	background: rgba(233, 248, 238, .42);
}

.awd-order-option-group-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin: 0 0 12px;
	color: var(--awd-order-text-color, #10231a);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
}

.awd-order-option-group-title small {
	padding: 2px 7px;
	border-radius: 999px;
	background: var(--awd-order-placeholder-color, #e9f8ee);
	color: var(--awd-order-accent-color, #006c38);
	font-size: 11px;
}

.awd-order-option-choice {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 34px;
	margin: 0;
	padding: 6px 0;
	color: var(--awd-order-text-color, #10231a);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
}

.awd-order-option-choice input {
	appearance: none;
	width: 18px;
	height: 18px;
	margin: 0;
	border: 1.5px solid var(--awd-order-accent-color, #006c38);
	border-radius: 999px;
	background: #fff;
	accent-color: var(--awd-order-accent-color, #006c38);
}

.awd-order-option-choice input[type="checkbox"] {
	border-radius: 5px;
}

.awd-order-option-choice input:checked {
	box-shadow: inset 0 0 0 4px #fff;
	background: var(--awd-order-accent-color, #006c38);
}

.awd-order-option-choice input[type="checkbox"]:checked {
	box-shadow: none;
	background: var(--awd-order-accent-color, #006c38);
}

.awd-order-option-choice .awd-order-option-price {
	color: var(--awd-order-accent-color, #006c38);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.awd-order-options-error {
	min-height: 18px;
	padding: 0 16px;
	color: #c21d12;
	font-weight: 700;
}

.awd-order-options-actions {
	border-top: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .14));
	border-bottom: 0;
}

.awd-order-options-actions button {
	border: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .18));
	border-radius: 999px;
	padding: 10px 16px;
	background: #fff;
	color: var(--awd-order-accent-color, #006c38);
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 800;
}

.awd-order-options-actions [data-awd-options-confirm] {
	border-color: var(--awd-order-accent-color, #006c38);
	background: var(--awd-order-accent-color, #006c38);
	color: #fff;
}

.awd-stripe-modal[hidden] {
	display: none !important;
}

body.awd-stripe-modal-open {
	overflow: hidden;
}

.awd-stripe-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: grid;
	place-items: center;
	padding: 20px;
}

.awd-stripe-modal-backdrop {
	appearance: none;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
	background: rgba(9, 24, 17, .68);
	cursor: default;
}

.awd-stripe-modal-panel {
	position: relative;
	z-index: 1;
	width: min(100%, 720px);
	max-height: calc(100vh - 40px);
	max-height: calc(100dvh - 40px);
	overflow: auto;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.awd-stripe-modal-head {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--awd-order-border-color, rgba(0, 108, 56, .14));
	background: #fff;
}

.awd-stripe-modal-head h3 {
	margin: 0;
	color: var(--awd-order-text-color, #10231a);
	font-size: 18px;
}

.awd-stripe-modal-close {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: #eef3ef;
	color: #10231a;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
}

.awd-stripe-modal-status {
	padding: 12px 18px 0;
	color: #647067;
	font-size: 14px;
}

.awd-stripe-checkout {
	min-height: 320px;
	padding: 8px 14px 18px;
}

@media (max-width: 520px) {
	.awd-stripe-modal {
		padding: 0;
		place-items: stretch;
	}

	.awd-stripe-modal-panel {
		width: 100%;
		max-height: 100vh;
		max-height: 100dvh;
		border-radius: 0;
	}
}

@media (max-width: 900px) {
	.awd-order-cart {
		top: auto;
		right: 12px;
		bottom: 88px;
		left: 12px;
		width: auto;
		max-height: calc(100vh - 24px - 88px);
		max-height: calc(100dvh - 24px - 88px);
	}
}

@media (max-width: 520px) {
	.awd-order-mobile-cart {
		right: 12px;
		bottom: 12px;
		width: calc(50vw - 18px);
		min-width: 0;
		min-height: 52px;
		justify-content: center;
		gap: 10px;
		padding: 12px 14px;
		font-size: 14px;
	}

	/* !important below: the open-state rule
	   (.awd-order-menu.has-cart.is-cart-open .awd-order-cart, 4 chained
	   classes) sets `transform: translate(var(--awd-order-cart-x-open),
	   var(--awd-order-cart-y-open))`, whose custom-property values come
	   from whichever awd-order-cart-x-*/y-* anchor class this instance
	   has (left/center/right, top/center/bottom) -- that selector is MORE
	   specific than this plain .awd-order-cart media-query rule, so it
	   silently won regardless of source order and put the cart back at
	   its desktop x-anchor offset (e.g. x-left's translate(0, ...), which
	   on a narrow screen runs the cart off the left edge instead of
	   centering it). Forcing centering here, regardless of open/closed
	   state or which x-/y- anchor is configured, is the same fix already
	   applied to the reservation drawer for the identical bug. */
	.awd-order-cart,
	.awd-order-menu.has-cart.is-cart-open .awd-order-cart {
		right: auto !important;
		left: 50% !important;
		bottom: 76px !important;
		width: calc(100vw - 20px) !important;
		max-height: calc(100vh - 20px - 76px) !important;
		max-height: calc(100dvh - 20px - 76px) !important;
		transform: translateX(-50%) !important;
	}
}
