/* Jekel Automotive Shortcodes - Frontend styles */

.jas-price-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin: 1.5rem 0;
}

.jas-price-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
}

.jas-price-card__image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

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

.jas-price-card__content {
	padding: 1.25rem;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.jas-price-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.jas-price-card__price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #c62828;
	margin-bottom: 0.75rem;
}

.jas-price-card__text {
	margin-bottom: 1.25rem;
	flex: 1 1 auto;
	line-height: 1.5;
}

.jas-price-card__text p:last-child {
	margin-bottom: 0;
}

.jas-price-card__button {
	display: inline-block;
	padding: 0.75rem 1.25rem;
	background: #c62828;
	color: #fff;
	text-decoration: none;
	border-radius: 0.25rem;
	text-align: center;
	font-weight: 600;
	transition: background 0.2s ease;
}

.jas-price-card__button:hover,
.jas-price-card__button:focus {
	background: #a31f1f;
	color: #fff;
}

/* FAQ */
.jas-faq {
	margin: 1.5rem 0;
	border-top: 1px solid #e0e0e0;
}

.jas-faq__item {
	border-bottom: 1px solid #e0e0e0;
	padding: 0;
}

.jas-faq__question {
	display: block;
	padding: 1rem 2rem 1rem 0;
	position: relative;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.jas-faq__question::-webkit-details-marker {
	display: none;
}

.jas-faq__question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 1rem;
	font-size: 1.25rem;
	line-height: 1;
}

.jas-faq__item[open] > .jas-faq__question::after {
	content: '-';
}

.jas-faq__answer {
	padding: 0 0 1rem;
	line-height: 1.6;
}

.jas-faq__answer p:last-child {
	margin-bottom: 0;
}
