/**
 * Stili per il frontend del plugin WooCommerce AutoScout24
 *
 * @link       https://www.lucamainieri.it
 * @since      1.0.0
 */

.woocommerce-autoscout24-vehicle-details {
	margin: 2em 0;
	padding: 1.5em;
	background-color: #f8f8f8;
	border-radius: 5px;
	border: 1px solid #e0e0e0;
}

.woocommerce-autoscout24-vehicle-details h3 {
	margin-top: 0;
	margin-bottom: 1em;
	font-size: 1.2em;
	color: #333;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 0.5em;
}

.vehicle-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1em;
}

.vehicle-detail {
	display: flex;
	flex-direction: column;
}

.detail-label {
	font-weight: bold;
	font-size: 0.9em;
	color: #666;
	margin-bottom: 0.3em;
}

.detail-value {
	font-size: 1em;
	color: #333;
}

/* Stile responsive */
@media screen and (max-width: 768px) {
	.vehicle-details-grid {
		grid-template-columns: 1fr;
	}
}
