:root {
    --orange-400: #ffa857;
    --orange-500: #ff8c30;
    --orange-600: #fa7b10;
    --orange-700: #e06a0a;
}

.vehicle-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dark .vehicle-card {
    background-color: var(--bg-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.dark .vehicle-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.vehicle-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.vehicle-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    padding: 1rem;
    padding-bottom: 0.5rem;
}

.dark .vehicle-title {
    color: var(--text-primary);
}

.vehicle-features {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.dark .vehicle-feature {
    color: var(--text-secondary);
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.price-section {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.dark .price-section {
    border-top: 1px solid var(--border-primary);
}

.promotional-price {
    color: var(--orange-600);
    font-weight: 700;
    font-size: 1.25rem;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.regular-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: #333;
}

.dark .regular-price {
    color: var(--text-primary);
}

.price-period {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.25rem;
}

.dark .price-period {
    color: var(--text-tertiary);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 1rem 1rem;
}

.favorite-button, .rent-button {
    padding: 0.75rem;
    border-radius: 0.375rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.favorite-button {
    border: 1px solid #333;
    color: #333;
}

.dark .favorite-button {
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
}

.favorite-button:hover {
    background-color: #e53e3e;
    border-color: #e53e3e;
    color: white;
}

.rent-button {
    background-color: var(--orange-600);
    color: white;
    border: 1px solid var(--orange-600);
}

.dark .rent-button {
    background-color: var(--orange-600);
    border-color: var(--orange-700);
}

.rent-button:hover {
    background-color: var(--orange-700);
    border-color: var(--orange-700);
}

.button-icon {
    margin-bottom: 0.25rem;
    width: 20px;
    height: 20px;
}
