/* Car Rental Cards — base styles (overridable via Elementor Style controls) */

.crc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.crc-card {
	background: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.crc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.crc-card-image {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #f5eee4;
}

.crc-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.crc-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background-color: #17b6c4;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	white-space: nowrap;
}

.crc-card-body {
	padding: 22px 22px 26px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.crc-category {
	color: #17b6c4;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.crc-title {
	color: #1a1a1a;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 4px;
	line-height: 1.25;
}

.crc-subtitle {
	color: #8a8a8a;
	font-size: 14px;
	font-style: italic;
	margin-bottom: 16px;
}

.crc-features-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding: 14px 0;
	margin-bottom: 18px;
}

.crc-feature {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #555;
}

.crc-feature i {
	color: #17b6c4;
	font-size: 14px;
}

.crc-price-row {
	margin-bottom: 18px;
}

.crc-price-label {
	color: #999;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.crc-price-line {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.crc-price-currency,
.crc-price-value {
	color: #17b6c4;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

.crc-price-period {
	color: #999;
	font-size: 13px;
	margin-left: 4px;
}

.crc-button {
	margin-top: auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #1a1a1a;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	padding: 14px 20px;
	border-radius: 8px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.crc-button:hover {
	background-color: #17b6c4;
	color: #fff;
}

.crc-button i {
	font-size: 14px;
}

/* Responsive fallback (used only when Elementor responsive controls aren't set) */
@media (max-width: 1024px) {
	.crc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.crc-grid {
		grid-template-columns: 1fr;
	}
}
