.combo-page {
	--combo-green: #159875;
	--combo-green-dark: #0d8364;
	--combo-lime: #31df34;
	--combo-lime-hover: #29ce2d;
	--combo-red: #ff1534;
	--combo-text: #0b0b0d;
	--combo-muted: #7c7b84;
	--combo-border: #d7d7d9;
	--combo-background: #f6f6f7;
	flex: 1 0 auto;
	background: var(--combo-background);
	color: var(--combo-text);
	padding: 32px 0 0;
}

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

.combo-page [hidden] {
	display: none !important;
}

.combo-page button {
	font-family: inherit;
}

.combo-page__container,
.combo-mobile-summary__inner {
	max-width: 1210px;
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 15px;
}

.combo-hero {
	text-align: center;
	margin-bottom: 36px;
}

.combo-hero__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(420px, 100%);
	min-height: 54px;
	margin: 0 auto 22px;
	padding: 11px 28px;
	border-radius: 999px;
	background: var(--combo-green);
	color: #fff;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.2;
}

.combo-hero__title {
	margin: 0;
	font-size: clamp(30px, 2.8vw, 38px);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -0.03em;
}

.combo-hero__title span {
	color: var(--combo-green);
}

.combo-hero__description {
	margin: 10px 0 0;
	color: var(--combo-muted);
	font-size: 20px;
	line-height: 1.35;
}

.combo-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 335px;
	gap: 24px;
	align-items: start;
}

.combo-page__main {
	min-width: 0;
}

.combo-tier-card {
	border: 1.5px solid var(--combo-green);
	border-radius: 25px;
	padding: 25px 28px 27px;
}

.combo-tier-card__heading {
	display: block;
	min-height: 34px;
	color: var(--combo-green);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

.combo-tier-card__icon {
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-right: 10px;
	object-fit: contain;
	vertical-align: middle;
}

.combo-tier-progress {
	position: relative;
	height: 19px;
	margin: 25px 0 27px;
}

.combo-tier-progress__track {
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	height: 9px;
	border-radius: 999px;
	background: #d9d9dc;
	overflow: hidden;
}

.combo-tier-progress__track > span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--combo-green);
	transition: width .25s ease;
}

.combo-tier-progress__marker {
	position: absolute;
	top: 0;
	left: var(--combo-tier-position);
	z-index: 1;
	width: 19px;
	height: 19px;
	transform: translateX(-50%);
	border: 4px solid #fff;
	border-radius: 50%;
	background: #d9d9dc;
	box-shadow: 0 0 0 1px #d9d9dc;
	transition: background-color .2s ease, box-shadow .2s ease;
}

.combo-tier-progress__marker.is-reached {
	background: var(--combo-green);
	box-shadow: 0 0 0 2px var(--combo-green);
}

.combo-tier-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.combo-tier {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-width: 0;
	padding: 0 10px;
	color: var(--combo-muted);
	text-align: center;
}

.combo-tier + .combo-tier {
	border-left: 2px solid #d5d5d7;
}

.combo-tier.is-active {
	color: var(--combo-green);
}

.combo-tier__label {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.combo-tier__discount {
	font-size: 39px;
	font-weight: 700;
	line-height: 1;
}

.combo-products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 20px;
}

.combo-product {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 270px;
	padding: 14px 14px 12px;
	border: 2px solid #D5D5D5;
	border-radius: 24px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.combo-product.is-selected {
	border-color: #18936F;
}

.combo-product:focus-within {
	box-shadow: 0 0 0 3px rgb(21 152 117 / 15%);
}

.combo-product__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 154px;
	margin-bottom: 5px;
}

.combo-product__image {
	display: block;
	width: 100%;
	max-width: 180px;
	height: 166px;
	object-fit: contain;
}

.combo-product__name {
	display: -webkit-box;
	overflow: hidden;
	max-height: 3.45em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	margin: auto 0 12px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.15;
	text-align: center;
	text-overflow: ellipsis;
}

.combo-product__actions {
	margin-top: auto;
}

.combo-page .combo-product__add,
.combo-page .combo-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border: 0;
	background: var(--combo-lime);
	color: #050505;
	font-weight: 800;
	line-height: 1.15;
	cursor: pointer;
	transition: background-color .2s ease, opacity .2s ease, transform .1s ease;
}

.combo-product__add {
	min-height: 38px;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 15px;
}

.combo-product__add:hover,
.combo-submit:hover {
	background: var(--combo-lime-hover);
}

.combo-product__add:active,
.combo-submit:active {
	transform: translateY(1px);
}

.combo-product__add:disabled,
.combo-submit:disabled {
	opacity: .45;
	cursor: not-allowed;
	transform: none;
}

.combo-quantity {
	display: grid;
	grid-template-columns: 38px minmax(42px, 1fr) 38px;
	height: 38px;
	overflow: hidden;
	border-radius: 999px;
	background: var(--combo-green);
	color: #fff;
}

.combo-quantity button,
.combo-quantity span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 15px;
	font-weight: 700;
}

.combo-quantity button {
	padding: 0;
	cursor: pointer;
}

.combo-quantity button:first-child {
	border-right: 2px solid rgb(255 255 255 / 75%);
}

.combo-quantity button:last-child {
	border-left: 2px solid rgb(255 255 255 / 75%);
}

.combo-quantity button:disabled {
	opacity: .4;
	cursor: default;
}

.combo-summary {
	position: sticky;
	top: var(--combo-summary-sticky-top, 15px);
	overflow: hidden;
	border: 1.5px solid var(--combo-border);
	border-radius: 24px;
	background: var(--combo-background);
}

.combo-summary__header,
.combo-summary__items,
.combo-summary__empty,
.combo-summary__discount-notice,
.combo-summary__totals,
.combo-summary__footer {
	padding-right: 20px;
	padding-left: 20px;
}

.combo-summary__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 62px;
	border-bottom: 1px solid var(--combo-border);
	font-size: 17px;
}

.combo-summary__header strong:last-child {
	color: var(--combo-green);
}

.combo-summary__items {
	max-height: 292px;
	overflow-y: auto;
}

.combo-summary__empty {
	padding-top: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--combo-border);
	color: var(--combo-muted);
	font-size: 14px;
	text-align: center;
}

.combo-summary-item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid var(--combo-border);
}

.combo-summary-item > img {
	display: block;
	width: 58px;
	height: 58px;
	border-radius: 10px;
	background: #fff;
	object-fit: contain;
}

.combo-summary-item__body {
	display: flex;
	align-self: stretch;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.combo-summary-item__name {
	display: -webkit-box;
	overflow: hidden;
	max-height: 2.5em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	font-size: 12px;
	line-height: 1.25;
	text-overflow: ellipsis;
}

.combo-summary-item__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
}

.combo-quantity--small {
	grid-template-columns: 26px 32px 26px;
	width: max-content;
	height: 32px;
	border: 1px solid var(--combo-border);
	border-radius: 9px;
	background: #fff;
	color: #6f6e76;
}

.combo-quantity--small button:first-child,
.combo-quantity--small button:last-child {
	border: 0;
}

.combo-summary-item__total {
	font-size: 14px;
	white-space: nowrap;
}

.combo-summary__discount-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px;
	padding: 16px 12px;
	border: 1.5px solid var(--combo-lime);
	border-radius: 15px;
	background: rgb(49 223 52 / 12%);
	color: var(--combo-green);
	font-size: 1.1rem;
	line-height: 1.2;
}

.combo-summary__discount-notice img {
	flex: 0 0 35px;
	width: 35px;
	height: 34px;
}

.combo-page .combo-commit-feedback.alert-success {
	border: 1.5px solid var(--combo-lime);
	border-radius: 15px;
	background: rgb(49 223 52 / 12%);
	color: var(--combo-green);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	padding: 15px 12px;
}

[data-combo-role="discount-notice"],
[data-combo-role="mobile-discount-notice"] {
	white-space: pre-line;
}

.combo-summary__totals {
	padding-top: 15px;
	padding-bottom: 14px;
	border-top: 1px solid var(--combo-border);
}

.combo-summary__total-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 15px;
	font-size: 14px;
}

.combo-summary__total-row + .combo-summary__total-row {
	margin-top: 8px;
}

.combo-summary__total-row--final {
	font-size: 17px;
}

.combo-summary__total-row--final > span {
	display: flex;
	align-items: baseline;
	gap: 7px;
}

.combo-summary__total-row--final > span strong {
	color: var(--combo-red);
}

.combo-page.is-below-minimum [data-combo-role="final-total"],
.combo-page.is-below-minimum [data-combo-role="mobile-final-total"] {
	color: var(--combo-text);
}

.combo-summary__total-row del {
	color: #8c8b92;
	font-size: 13px;
}

.combo-summary__footer {
	padding-top: 9px;
	padding-bottom: 20px;
}

.combo-submit {
	min-height: 47px;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 16px;
}

.combo-mobile-summary {
	display: none;
}

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

@media (min-width: 1200px) {
	.combo-products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 991.98px) {
	.combo-page {
		padding-bottom: var(--combo-mobile-summary-height, 0);
	}

	.combo-page__layout {
		display: block;
	}

	.combo-summary {
		display: none;
	}

	.combo-mobile-summary {
		display: block;
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1020;
		padding: 12px 0 calc(17px + env(safe-area-inset-bottom));
		border-top: 1px solid #ededee;
		background: #fff;
		box-shadow: 0 -8px 25px rgb(0 0 0 / 6%);
	}

	.combo-mobile-summary__overview {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 12px;
	}

	.combo-mobile-summary__avatars {
		display: flex;
		align-items: center;
		padding-left: 1px;
	}

	.combo-mobile-summary__avatar {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		margin-left: -12px;
		border: 1px solid #d8d8da;
		border-radius: 50%;
		background: #fff;
		color: #77767e;
		font-size: 12px;
		font-weight: 700;
		overflow: hidden;
	}

	.combo-mobile-summary__avatar:first-child {
		margin-left: 0;
	}

	.combo-mobile-summary__avatar img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.combo-mobile-summary__price {
		min-width: 0;
		font-size: 12px;
		line-height: 1.25;
	}

	.combo-mobile-summary__price > strong {
		display: block;
		overflow: hidden;
		margin-bottom: 3px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.combo-mobile-summary__price div {
		display: flex;
		align-items: baseline;
		gap: 7px;
	}

	.combo-mobile-summary__price div strong {
		color: var(--combo-red);
		font-size: 14px;
	}

	.combo-mobile-summary__price del {
		color: #898890;
		font-size: 11px;
	}

	.combo-mobile-summary__tiers {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 7px;
		margin-bottom: 11px;
	}

	.combo-mobile-tier {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-width: 0;
		min-height: 55px;
		padding: 6px 4px;
		border: 1px solid var(--combo-border);
		border-radius: 10px;
		color: var(--combo-muted);
		text-align: center;
	}

	.combo-mobile-tier.is-active {
		border-color: var(--combo-green);
		background: rgb(21 152 117 / 5%);
		color: var(--combo-green);
	}

	.combo-mobile-tier span {
		font-size: 9px;
		font-weight: 700;
		line-height: 1.15;
	}

	.combo-mobile-tier strong {
		margin-top: 3px;
		font-size: 23px;
		line-height: 1;
	}
}

@media (max-width: 575.98px) {
	.combo-page {
		padding-top: 22px;
	}

	.combo-page__container,
	.combo-mobile-summary__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.combo-hero {
		margin-bottom: 23px;
	}

	.combo-hero__badge {
		width: 235px;
		min-height: 36px;
		margin-bottom: 18px;
		padding: 8px 20px;
		font-size: 15px;
	}

	.combo-hero__title {
		max-width: 330px;
		margin: 0 auto;
		font-size: 22px;
		line-height: 1.12;
		letter-spacing: -0.02em;
	}

	.combo-hero__description {
		max-width: 270px;
		margin: 11px auto 0;
		font-size: 14px;
		line-height: 1.25;
	}

	.combo-tier-card {
		border-radius: 17px;
		padding: 14px 14px 13px;
	}

	.combo-tier-card__heading {
		min-height: 25px;
		font-size: 15px;
	}

	.combo-tier-card__icon {
		width: 20px;
		height: 20px;
		margin-right: 5px;
	}

	.combo-tier-progress {
		height: 13px;
		margin: 16px 0 15px;
	}

	.combo-tier-progress__track {
		top: 4px;
		height: 5px;
	}

	.combo-tier-progress__marker {
		width: 13px;
		height: 13px;
		border-width: 2px;
	}

	.combo-tier {
		gap: 5px;
		padding: 0 4px;
	}

	.combo-tier__label {
		font-size: 10px;
	}

	.combo-tier__discount {
		font-size: 27px;
	}

	.combo-products {
		gap: 10px;
		margin-top: 15px;
	}

	.combo-product {
		min-height: 216px;
		padding: 10px 10px 9px;
		border-radius: 21px;
	}

	.combo-product__image-wrap {
		min-height: 114px;
		margin-bottom: 3px;
	}

	.combo-product__image {
		max-width: 145px;
		height: 126px;
	}

	.combo-product__name {
		max-height: 3.24em;
		margin-bottom: 9px;
		font-size: 12px;
		line-height: 1.08;
	}

	.combo-product__add {
		min-height: 34px;
		padding: 7px 8px;
		font-size: 13px;
	}

	.combo-quantity {
		grid-template-columns: 34px minmax(34px, 1fr) 34px;
		height: 34px;
		font-size: 13px;
	}

	.combo-mobile-summary {
		padding-top: 12px;
		padding-bottom: calc(17px + env(safe-area-inset-bottom));
	}

	.combo-submit {
		min-height: 39px;
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.combo-page *,
	.combo-page *::before,
	.combo-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
