.bvsu-card {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	margin: 0 0 18px;
	padding: 16px;
	border: 1px solid rgba(20, 20, 20, 0.12);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(20, 20, 20, 0.08);
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.bvsu-card.is-selected {
	border-color: #c6922d;
	box-shadow: 0 12px 30px rgba(198, 146, 45, 0.18);
}

.bvsu-card__media {
	overflow: hidden;
	width: 88px;
	aspect-ratio: 1;
	border-radius: 6px;
	background: #f6f3ee;
}

.bvsu-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bvsu-card__body {
	min-width: 0;
}

.bvsu-card__eyebrow {
	margin-bottom: 4px;
	color: #9a6a17;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.bvsu-card__name {
	margin-bottom: 3px;
	color: #151515;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.bvsu-card__price {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.bvsu-card__benefit {
	margin: 0 0 12px;
	color: #4b4b4b;
	font-size: 14px;
	line-height: 1.45;
}

.bvsu-card__choice {
	display: inline-flex;
	gap: 8px;
	align-items: flex-start;
	margin: 0;
	color: #171717;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
}

.bvsu-card__choice input {
	flex: 0 0 auto;
	margin-top: 2px;
}

@media (max-width: 480px) {
	.bvsu-card {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 12px;
		padding: 14px;
	}

	.bvsu-card__media {
		width: 72px;
	}
}

.bvsu-modal-open {
	overflow: hidden;
}

.bvsu-modal {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 18px;
}

.bvsu-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 18, 18, 0.56);
	backdrop-filter: blur(2px);
}

.bvsu-modal__panel {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: min(100%, 420px);
	overflow: hidden;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.bvsu-modal__media {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #f6f3ee;
}

.bvsu-modal__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bvsu-modal__content {
	padding: 20px;
}

.bvsu-modal__eyebrow {
	margin-bottom: 5px;
	color: #9a6a17;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.bvsu-modal__name {
	margin: 0 0 4px;
	color: #151515;
	font-size: 21px;
	font-weight: 750;
	line-height: 1.22;
}

.bvsu-modal__price {
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.bvsu-modal__benefit {
	margin: 0 0 18px;
	color: #4b4b4b;
	font-size: 15px;
	line-height: 1.5;
}

.bvsu-modal__actions {
	display: grid;
	gap: 10px;
}

.bvsu-modal__primary,
.bvsu-modal__secondary {
	box-sizing: border-box;
	width: 100%;
	min-height: 46px;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
}

.bvsu-modal__primary {
	border: 1px solid #151515;
	background: #151515;
	color: #ffffff;
}

.bvsu-modal__secondary {
	border: 1px solid rgba(20, 20, 20, 0.16);
	background: #ffffff;
	color: #151515;
}

.bvsu-modal__primary:focus-visible,
.bvsu-modal__secondary:focus-visible {
	outline: 2px solid #c6922d;
	outline-offset: 2px;
}

@media (max-width: 768px) {
	.bvsu-card {
		position: absolute !important;
		overflow: hidden !important;
		width: 1px !important;
		height: 1px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		clip: rect(0 0 0 0) !important;
		clip-path: inset(50%) !important;
		box-shadow: none !important;
		white-space: nowrap !important;
	}
}
