.aepc-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 260px;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	font-family: inherit;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.aepc-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.aepc-card__image-link {
	display: block;
	background: #f7f7f7;
}

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

.aepc-card__image--placeholder {
	background: repeating-linear-gradient(
		45deg,
		#f0f0f0,
		#f0f0f0 10px,
		#e6e6e6 10px,
		#e6e6e6 20px
	);
}

.aepc-card__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 12px 14px 16px;
}

.aepc-card__title {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	color: #222;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.aepc-card__title:hover {
	color: #e62e04;
}

.aepc-card__price {
	font-size: 18px;
	font-weight: 700;
	color: #e62e04;
}

.aepc-stars {
	position: relative;
	display: inline-block;
	line-height: 1;
	font-size: 14px;
	letter-spacing: 2px;
}

.aepc-stars__track {
	color: #d8d8d8;
}

.aepc-stars__fill {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #ffa41c;
}

.aepc-card__button {
	margin-top: 4px;
	display: inline-block;
	text-align: center;
	padding: 8px 14px;
	background: #e62e04;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.15s ease;
}

.aepc-card__button:hover {
	background: #c72703;
	color: #fff;
}

.aepc-card--placeholder .aepc-card__title {
	color: #888;
	font-weight: 500;
}

.aepc-notice {
	padding: 8px 12px;
	background: #fff3cd;
	border: 1px solid #ffe69c;
	border-radius: 4px;
	font-size: 13px;
	color: #664d03;
}
