/* Listing Cards */
.listing-card {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

/* Hover effects for popular searches */
.hover-shadow {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-shadow:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Badge styles */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Sticky sidebar */
.sticky-top {
    top: 20px;
}

/* Button hover effects */
.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form inputs */
.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Amenity icons */
.bi-check-circle-fill {
    font-size: 1.1em;
}

/* Image loading */
img {
    transition: opacity 0.3s ease;
}

img:hover {
    opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .listing-card:hover {
        transform: none;
    }
}
