/* dashboard-results.css */
.provider-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.provider-service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
}

.provider-service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.provider-service-card.paused {
    opacity: 0.7;
}

.provider-service-card.paused::before {
    content: 'PAUSED';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--error);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.provider-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.provider-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.provider-service-card:hover .provider-card-image {
    transform: scale(1.05);
}

.provider-card-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.provider-card-status.active {
    background: #10b981;
    color: white;
}

.provider-card-status.paused {
    background: #ef4444;
    color: white;
}

.provider-card-boost-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.provider-card-boost-badge svg {
    width: 14px;
    height: 14px;
}

.provider-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.provider-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.provider-card-category {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.provider-card-stats {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
}

.provider-stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.provider-stat svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.provider-card-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-light);
}

.provider-card-location svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.provider-card-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.provider-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.provider-action-btn.view {
    background: var(--primary);
    color: white;
}

.provider-action-btn.view:hover {
    background: var(--primary-hover);
}

.provider-action-btn.save {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-color: var(--border-default);
}

.provider-action-btn.save:hover {
    background: var(--bg-primary);
    border-color: var(--border-medium);
}

.provider-action-btn svg {
    width: 18px;
    height: 18px;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.empty-state svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Public Profile Specific Styles */
.profile-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.services-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.services-count {
    background: #f0fdf4;
    color: #065f46;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .provider-services-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-card-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .profile-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}