.pvi-step--gokeep-addon .pvi-gokeep-native-option {
	display: none !important;
}

.pvi-step--gokeep-addon .pvi-step__options {
	gap: 14px;
}

.pvi-gokeep-step-note {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.pvi-gokeep-step-note__text {
	color: var(--pvi-muted);
	font-size: 0.84rem;
	line-height: 1.45;
	margin: 0;
}

.pvi-gokeep-step-note__button {
	align-items: center;
	background: var(--pvi-white);
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 999px;
	color: var(--pvi-ink);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.95rem;
	font-weight: 700;
	height: 28px;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	width: 28px;
}

.pvi-gokeep-group-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pvi-gokeep-group-card {
	gap: 8px;
}

.pvi-gokeep-group-card__main {
	align-items: center;
	display: flex;
	gap: 0;
	min-height: 40px;
}

.pvi-gokeep-group-card .pvi-option-card__text {
	display: none !important;
}

.pvi-gokeep-group-card .pvi-option-card__image {
	background: transparent !important;
	border-radius: 0 !important;
	display: block;
	height: auto;
	max-height: 40px;
	max-width: 148px;
	object-fit: contain;
	width: auto;
}

.pvi-gokeep-group-card__fallback {
	color: var(--pvi-ink);
	font-size: 0.8rem;
	font-weight: 600;
}

.pvi-gokeep-group-card__select {
	align-items: center;
	padding-bottom: 10px;
}

.pvi-gokeep-group-card__price {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	min-height: 24px;
	white-space: nowrap;
}

.pvi-gokeep-group-card__price.is-changing {
	animation: pvi-gokeep-price-pop 0.46s cubic-bezier(0.2, 0.8, 0.2, 1);
	will-change: transform, color, text-shadow;
}

@keyframes pvi-gokeep-price-pop {
	0% {
		color: inherit;
		text-shadow: none;
		transform: translateY(0) scale(1);
	}

	38% {
		color: var(--pvi-accent);
		text-shadow: 0 8px 18px rgba(239, 92, 39, 0.24);
		transform: translateY(-2px) scale(1.08);
	}

	100% {
		color: inherit;
		text-shadow: none;
		transform: translateY(0) scale(1);
	}
}

.pvi-step--gokeep-addon .pvi-gokeep-group-card .pvi-option-card__includes {
	display: block;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 16px;
	transition: max-height 0.24s ease, opacity 0.18s ease, padding 0.24s ease;
}

.pvi-step--gokeep-addon .pvi-gokeep-group-card.is-open .pvi-option-card__includes {
	max-height: 118px;
	opacity: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 0 16px 12px;
	scrollbar-width: thin;
}

.pvi-step--gokeep-addon .pvi-gokeep-group-card .pvi-option-card__includes-list,
.pvi-step--gokeep-addon .pvi-gokeep-group-card__includes-list {
	gap: 3px;
	grid-template-columns: minmax(0, 1fr) !important;
}

.pvi-gokeep-group-card__includes-list li {
	font-size: 0.64rem;
	font-weight: 400;
	line-height: 1.18;
}

.pvi-gokeep-group-card__includes-list li::before {
	flex: 0 0 8px;
	height: 8px;
	margin-top: 1px;
	width: 8px;
}

.pvi-gokeep-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 16px 10px;
}

.pvi-gokeep-chip {
	background: rgba(15, 23, 42, 0.05);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 999px;
	color: var(--pvi-ink);
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	height: fit-content;
	letter-spacing: 1px;
	line-height: 1;
	min-height: 22px;
	padding: 0rem 1rem;
	text-transform: uppercase;
	transform: translateY(0) scale(1);
	transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
	will-change: transform;
}

.pvi-gokeep-chip[disabled] {
	cursor: default;
	opacity: 0.45;
}

.pvi-gokeep-chip.is-active,
.pvi-gokeep-chip:hover,
.pvi-gokeep-chip:focus-visible {
	background: var(--pvi-accent);
	border-color: var(--pvi-accent);
	box-shadow: 0 4px 10px rgba(239, 92, 39, 0.18);
	color: var(--pvi-white);
	outline: none;
	transform: translateY(-1px) scale(1.03);
}

@media (max-width: 640px) {
	.pvi-gokeep-group-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.pvi-gokeep-step-note {
		align-items: flex-start;
	}
}
