/* Recommendations Section */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.recommendation-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.recommendation-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.recommendation-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--bg-primary);
}

.recommendation-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommendation-image .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.favorite-btn-small {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    z-index: 2;
}

.favorite-btn-small:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.favorite-btn-small.active {
    background: var(--error-color);
    color: white;
}

.favorite-btn-small i {
    font-size: 1rem;
}

.recommendation-content {
    padding: 1rem;
}

.recommendation-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.recommendation-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
}

.recommendation-content h4 a:hover {
    color: var(--primary-color);
}

.recommendation-location {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recommendation-location i {
    font-size: 0.75rem;
}

.recommendation-price {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.recommendation-meta {
    display: flex;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.recommendation-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recommendation-meta i {
    color: var(--text-light);
}

.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive - Recommendations */
@media (max-width: 768px) {
    .recommendations-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}
