/* Bilverksted Child Theme — Overrides */

:root {
    --accent: #1e40af;
    --accent-hover: #1e3a8a;
    --accent-light: #eff6ff;
    --accent-subtle: #f5f8ff;
}

/* === Workshop Services Section === */
.workshop-services-section {
    padding: 80px 0;
    background: var(--surface);
}

.workshop-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.workshop-service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

.workshop-service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.workshop-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    margin-bottom: 20px;
}

.workshop-service-card h3 {
    margin-bottom: 10px;
    color: var(--heading);
    font-size: 1.125rem;
}

.workshop-service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* === EU-kontroll Section === */
.eu-section {
    padding: 80px 0;
}

.eu-content {
    max-width: 800px;
    margin: 0 auto;
}

.eu-info-box {
    background: var(--accent-light);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 32px;
}

.eu-info-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.eu-info-box-header h3 {
    font-size: 1.25rem;
    color: var(--heading);
    margin: 0;
}

.eu-price-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--radius);
}

.eu-description {
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.eu-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.eu-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--heading);
    font-size: 0.9375rem;
}

.eu-checklist li svg {
    flex-shrink: 0;
    color: var(--accent);
}

.eu-cta {
    text-align: center;
    margin-top: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .workshop-services-grid {
        grid-template-columns: 1fr;
    }

    .eu-info-box {
        padding: 24px;
    }

    .eu-info-box-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .eu-checklist {
        grid-template-columns: 1fr;
    }
}
