.ania-bundle__counter {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.ania-bundle__count {
	color: var(--color-accent, #c45d3a);
	font-size: 2rem;
}

.ania-bundle__card {
	position: relative;
	cursor: pointer;
}

.ania-bundle__card.is-selected::after {
	content: '✓';
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	background: #1a1a1a;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	z-index: 2;
}

.ania-bundle__toggle {
	all: unset;
	display: block;
	width: 100%;
	cursor: pointer;
}

.ania-bundle__footer {
	text-align: center;
	margin: 3rem 0;
}

.ania-bundle__checkout:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Paywall */
.recipe-paywall {
	background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
	border-radius: 16px;
	padding: 48px 32px;
	text-align: center;
	margin: 32px 0;
}

.recipe-paywall h2 {
	margin-bottom: 12px;
}

.recipe-paywall p {
	color: #666;
	margin-bottom: 24px;
}

.recipe-paywall__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.recipe-paywall__price {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.recipe-card--locked .recipe-card__image::after {
	content: '🔒';
	position: absolute;
	top: 12px;
	right: 12px;
	font-size: 20px;
}

.recipe-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #1a1a1a;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.recipe-card__image {
	position: relative;
}

/* E-books */
.ebook-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.ebook-card {
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ebook-card__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.ebook-card__body {
	padding: 20px;
}

.ebook-card__price {
	font-weight: 700;
	font-size: 1.25rem;
	margin: 8px 0 16px;
}

/* Account points */
.account-points {
	background: #faf8f5;
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.account-points__value {
	font-size: 1.5rem;
	font-weight: 700;
	color: #c45d3a;
}

.account-notice {
	background: #e8f5e9;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 24px;
	color: #2e7d32;
}

.subscription-card--inactive {
	opacity: 0.7;
}

.subscription-card__badge--inactive {
	background: #999;
}
