.dealerhub-filters {
/*     background: #f9f9f9; */
    padding: 20px;
    margin-bottom: 30px;
/*     border-radius: 8px;
    border: 1px solid #e1e1e1; */
	background-color: white;
    border: 1px solid #EDEDED;
    border-radius: 20px;
}
.car-details-footer {
    background-color: #17171f;
    text-align: center;
}
.car-details-footer p {
    padding: 20px;
    color: #fff;
    font-family: 'font1';
}
.dealerhub-vehicle-detail .vehicle-features span.feature-tag {
    background: #f1f1f1 !important;
    color: black !important;
}
.dealerhub-filters h3 {
    margin: 0 0 15px 0;
    color: #333;
}
.dealerhub-filters form#dealerhub-filter-form input {
    background-color: white;
    font-family: 'font1';
}
.dealerhub-filters form#dealerhub-filter-form select {
    background-color: white;
    font-family: 'font1';
}
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
	align-items:end;
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.filter-actions {
    text-align: right;
}

.filter-actions button {
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.filter-actions button[type="submit"] {
    background: #0073aa;
    color: white;
}

.filter-actions button[type="submit"]:hover {
    background: #005a87;
}

.filter-actions button[type="button"] {
    background: #666;
    color: white;
}

.filter-actions button[type="button"]:hover {
    background: #555;
}

.dealerhub-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.dealerhub-grid.columns-1 { grid-template-columns: 1fr; }
.dealerhub-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
.dealerhub-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
.dealerhub-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .dealerhub-grid.columns-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .dealerhub-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .filter-row { flex-direction: column; }
    .filter-group { min-width: auto; }
}

@media (max-width: 525px) {
    .dealerhub-grid { grid-template-columns: 1fr !important; }
	.dealerhub-vehicle-detail .vehicle-header h1 {
    font-size: 26px !important;
    line-height: 40px !important;
    padding-bottom: 15px;
}
	.dealerhub-vehicle-detail .vehicle-header {
    display: block !important;
}
	form#dealerhub-filter-form .filter-actions button {
    padding: 20px 20px !important;
    width: 100%;
    margin-bottom: 10px;
    margin-left: unset;
}
	form#dealerhub-filter-form .filter-row {
    display: block;
}
	form#dealerhub-filter-form .filter-actions {
    text-align: center;
    padding-top: 20px;
}
}

.vehicle-card {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vehicle-content {
    padding: 20px;
}

.vehicle-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.vehicle-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #64ce3e;
    font-size: 20px;
}

.stock-type {
    background: #f1f1f1;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
}

.vehicle-location {
    color: #666;
    margin-bottom: 12px;
    font-size: 14px;
}

.vehicle-features {
    margin-bottom: 12px;
}

.feature {
    display: inline-block;
    background: #f1f1f1;
    color: black;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    margin-right: 5px;
    margin-bottom: 3px;
    font-weight: bold;
}

.vehicle-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.view-details-btn {
/*     background: #0073aa;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px; */
    cursor: pointer;
/*     font-size: 14px; */
    font-weight: bold;
    width: 100%;
    transition: background 0.3s ease;
	font-family: 'font2';
    color: #24272C;
    border: 1px solid #24272C;
    padding: 10px 16px;
    border-radius: 15px;
    font-size: 14px;
}

.view-details-btn:hover {
    background: #64ce3e;
    border: 1px solid #ffffff;
    color: #fff;
}

#loading-message {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    color: #666;
}

#error-message {
    background: #ffeaa7;
    border: 1px solid #fdcb6e;
    border-radius: 8px;
    padding: 15px;
}
    