.paz-combo-form {
	clear: both;
	margin: 24px 0;
}

.paz-combo-list {
	display: grid;
	gap: 14px;
	margin-bottom: 18px;
}

.paz-combo-component {
	position: relative;
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 16px;
	padding: 14px;
	border: 1px solid #e2e4e7;
	border-radius: 12px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.paz-combo-component.has-selection {
	border-color: #16803c;
	box-shadow: 0 0 0 1px rgba(22, 128, 60, .1);
}

.paz-combo-component.is-excluded {
	opacity: .55;
}

.paz-combo-component__media {
	position: relative;
}

.paz-combo-component__media img {
	display: block;
	width: 112px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 9px;
	background: #f4f4f4;
}

.paz-combo-component__quantity {
	position: absolute;
	inset-inline-end: -7px;
	inset-block-start: -7px;
	display: grid;
	place-items: center;
	min-width: 25px;
	height: 25px;
	padding: 0 5px;
	border-radius: 999px;
	color: #fff;
	background: #1e1e1e;
	font-size: 12px;
	font-weight: 700;
}

.paz-combo-component__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 12px;
}

.paz-combo-component__heading h3 {
	margin: 0 0 5px;
	font-size: 16px;
	line-height: 1.5;
}

.paz-combo-component__badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	color: #50575e;
	background: #f0f0f1;
	font-size: 11px;
}

.paz-combo-component__toggle {
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	font-size: 13px;
	cursor: pointer;
}

.paz-combo-component__attributes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
	gap: 10px;
}

.paz-combo-component__attributes label > span {
	display: block;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 600;
}

.paz-combo-component__attributes select {
	width: 100%;
	min-height: 40px;
	margin: 0;
	border-color: #c7c7c7;
	border-radius: 7px;
	background-color: #fff;
}

.paz-combo-component__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 11px;
	font-size: 13px;
}

.paz-combo-component__availability.is-in-stock {
	color: #16803c;
}

.paz-combo-component__availability.is-out-of-stock {
	color: #b42318;
}

.paz-combo-component__price {
	font-weight: 700;
}

.paz-combo-summary {
	padding: 18px;
	border: 1px solid #d6d8db;
	border-radius: 12px;
	background: #f8f9fa;
}

.paz-combo-summary__prices,
.paz-combo-summary__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.paz-combo-summary__regular {
	margin-inline-end: 8px;
	color: #737373;
	font-size: 14px;
}

.paz-combo-summary__total {
	color: #111;
	font-size: 20px;
}

.paz-combo-summary__saving {
	margin-top: 4px;
	color: #16803c;
	font-size: 13px;
	text-align: end;
}

.paz-combo-summary__actions {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e1e1e1;
}

.paz-combo-summary__actions .quantity {
	flex: 0 0 auto;
	margin: 0 !important;
}

.paz-combo-submit {
	flex: 1 1 auto;
	min-height: 46px;
}

.paz-combo-form__notice {
	margin-top: 10px;
	padding: 9px 12px;
	border-radius: 6px;
	color: #8a1c12;
	background: #fef3f2;
	font-size: 13px;
}

.paz-combo-catalog-price small {
	font-size: .65em;
	font-weight: 400;
}

.paz-combo-cart-child {
	padding-inline-start: 24px !important;
}

.paz-combo-included-price {
	color: #646970;
	font-size: 12px;
}

@media (max-width: 540px) {
	.paz-combo-component {
		grid-template-columns: 78px minmax(0, 1fr);
		gap: 11px;
		padding: 11px;
	}

	.paz-combo-component__media img {
		width: 78px;
	}

	.paz-combo-component__heading {
		display: block;
	}

	.paz-combo-component__toggle {
		margin-top: 7px;
	}

	.paz-combo-component__attributes {
		grid-template-columns: 1fr;
	}

	.paz-combo-summary__actions {
		align-items: stretch;
		flex-direction: column;
	}
}

