/* Cars Search Styling */
.car-listing__search {
    margin-bottom: 30px;
    position: relative;
}

.car-listing__search input[type="text"] {
    width: 100%;
    height: 60px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 0 60px 0 25px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    background-color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.car-listing__search input[type="text"]::placeholder {
    color: #999999;
    font-weight: 400;
}

.car-listing__search input[type="text"]:focus {
    border-color: var(--thm-primary, #ff6b35);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.car-listing__search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-listing__search button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.car-listing__search button:active {
    transform: translateY(-50%) scale(0.98);
}

.car-listing__search button i {
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .car-listing__search input[type="text"] {
        height: 50px;
        font-size: 14px;
        padding: 0 55px 0 20px;
    }

    .car-listing__search button {
        width: 45px;
        height: 40px;
        font-size: 16px;
    }
}
