/* Vårdonline Frontend Styles */

.vardonline-service-listing {
    padding: 2rem 0;
}

.vardonline-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.vardonline-services-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #333;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-rating span {
    font-weight: 600;
    color: #666;
}

.service-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00a86b;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #00a86b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s;
}

.service-link:hover {
    background: #008c5a;
}

/* Responsive */
@media (max-width: 768px) {
    .vardonline-services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .vardonline-filters {
        flex-direction: column;
    }
}