.vgl-hersteller-profile {
    padding: var(--vgl-space-6) 0 var(--vgl-space-10);
}

.vgl-hersteller-profile__breadcrumb {
    margin-bottom: var(--vgl-space-3);
    font-size: var(--vgl-font-size-sm);
    color: var(--vgl-color-text-muted);
}

.vgl-hersteller-profile__breadcrumb a {
    color: var(--vgl-color-link);
    text-decoration: none;
}

.vgl-hersteller-profile__breadcrumb a:hover {
    text-decoration: underline;
}

.vgl-hersteller-profile__hero {
    margin-bottom: var(--vgl-space-6);
    padding: var(--vgl-space-6);
    border-radius: var(--vgl-radius-lg);
    background: linear-gradient(135deg, var(--vgl-color-primary-soft), var(--vgl-color-bg-alt));
}

.vgl-hersteller-profile__hero-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--vgl-space-6);
    flex-wrap: wrap;
}

.vgl-hersteller-profile__title {
    margin: 0 0 var(--vgl-space-2);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.2;
    color: var(--vgl-color-text);
}

.vgl-hersteller-profile__address {
    margin: 0;
    color: var(--vgl-color-text-muted);
}

.vgl-hersteller-profile__website {
    margin: var(--vgl-space-2) 0 0;
}

.vgl-hersteller-profile__website a {
    color: var(--vgl-color-link);
    text-decoration: none;
    font-weight: 600;
}

.vgl-hersteller-profile__website a:hover {
    text-decoration: underline;
}

.vgl-hersteller-profile__canton {
    font-weight: 600;
}

.vgl-hersteller-profile__badge-wrap {
    display: flex;
}

.vgl-hersteller-profile__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: var(--vgl-space-2) var(--vgl-space-4);
    border: 2px solid var(--vgl-color-accent);
    border-radius: 999px;
    background: var(--vgl-color-bg);
    color: var(--vgl-color-accent);
    font-weight: 700;
    font-size: var(--vgl-font-size-lg);
    letter-spacing: 0.02em;
    cursor: help;
}

.vgl-hersteller-profile__badge-tooltip {
    position: absolute;
    bottom: calc(100% + var(--vgl-space-2));
    right: 0;
    width: 240px;
    padding: var(--vgl-space-3);
    border-radius: var(--vgl-radius);
    background: var(--vgl-color-text);
    color: var(--vgl-color-text-inverse);
    font-size: var(--vgl-font-size-xs);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    box-shadow: var(--vgl-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 5;
}

.vgl-hersteller-profile__badge:hover .vgl-hersteller-profile__badge-tooltip,
.vgl-hersteller-profile__badge:focus .vgl-hersteller-profile__badge-tooltip,
.vgl-hersteller-profile__badge:focus-visible .vgl-hersteller-profile__badge-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vgl-hersteller-profile__layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: var(--vgl-space-6);
    align-items: start;
}

.vgl-hersteller-profile__main {
    display: flex;
    flex-direction: column;
    gap: var(--vgl-space-6);
    min-width: 0;
}

.vgl-hersteller-profile__aside {
    position: sticky;
    top: var(--vgl-space-6);
}

.vgl-hersteller-profile__section {
    padding: var(--vgl-space-5);
    border: 1px solid var(--vgl-color-border);
    border-radius: var(--vgl-radius);
    background: var(--vgl-color-surface);
}

.vgl-hersteller-profile__section-title {
    margin: 0 0 var(--vgl-space-4);
    font-size: var(--vgl-font-size-lg);
    color: var(--vgl-color-text);
}

.vgl-hersteller-profile__section-title--spaced {
    margin-top: var(--vgl-space-5);
}

.vgl-hersteller-profile__muted {
    margin: 0;
    color: var(--vgl-color-text-muted);
    font-size: var(--vgl-font-size-sm);
}

.vgl-hersteller-profile__sections-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vgl-space-2);
    margin-bottom: var(--vgl-space-4);
}

.vgl-hersteller-profile__section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--vgl-space-1);
    padding: var(--vgl-space-1) var(--vgl-space-3);
    border-radius: 999px;
    background: var(--vgl-color-primary-soft);
    color: var(--vgl-color-primary);
    font-size: var(--vgl-font-size-xs);
    font-weight: 600;
}

.vgl-hersteller-profile__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--vgl-space-3);
}

.vgl-hersteller-profile__category-card {
    display: flex;
    align-items: flex-start;
    gap: var(--vgl-space-3);
    padding: var(--vgl-space-3);
    border: 1px solid var(--vgl-color-border);
    border-radius: var(--vgl-radius);
    background: var(--vgl-color-bg-alt);
}

.vgl-hersteller-profile__category-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.vgl-hersteller-profile__category-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.vgl-hersteller-profile__category-label {
    font-weight: 600;
    color: var(--vgl-color-text);
    font-size: var(--vgl-font-size-sm);
}

.vgl-hersteller-profile__category-caption {
    color: var(--vgl-color-text-muted);
    font-size: var(--vgl-font-size-xs);
}

.vgl-hersteller-profile__icon-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vgl-space-2);
}

.vgl-hersteller-profile__icon-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--vgl-space-1);
    padding: var(--vgl-space-1) var(--vgl-space-3);
    border: 1px solid var(--vgl-color-border);
    border-radius: 999px;
    background: var(--vgl-color-bg-alt);
    font-size: var(--vgl-font-size-sm);
    color: var(--vgl-color-text);
}

.vgl-hersteller-profile__map {
    width: 100%;
    height: 260px;
    border-radius: var(--vgl-radius);
    overflow: hidden;
    background: var(--vgl-color-bg-alt);
}

.vgl-hersteller-profile__map-attribution {
    margin: var(--vgl-space-2) 0 0;
    font-size: var(--vgl-font-size-xs);
    color: var(--vgl-color-text-muted);
}

.vgl-hersteller-profile__map-attribution a {
    color: var(--vgl-color-link);
}

.vgl-hersteller-profile__off-products {
    display: flex;
    flex-direction: column;
    gap: var(--vgl-space-2);
    margin-top: var(--vgl-space-3);
}

.vgl-hersteller-profile__off-loading {
    margin: 0;
    color: var(--vgl-color-text-muted);
    font-size: var(--vgl-font-size-sm);
}

.vgl-hersteller-profile__off-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--vgl-space-3);
}

.vgl-hersteller-profile__off-card {
    display: flex;
    flex-direction: column;
    gap: var(--vgl-space-1);
    padding: var(--vgl-space-3);
    border: 1px solid var(--vgl-color-border);
    border-radius: var(--vgl-radius);
    background: var(--vgl-color-bg-alt);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease;
}

.vgl-hersteller-profile__off-card:hover {
    border-color: var(--vgl-color-primary);
}

.vgl-hersteller-profile__off-card-name {
    font-size: var(--vgl-font-size-sm);
    font-weight: 600;
    color: var(--vgl-color-text);
}

.vgl-hersteller-profile__off-card-brand {
    font-size: var(--vgl-font-size-xs);
    color: var(--vgl-color-text-muted);
}

.vgl-hersteller-profile__off-card-source {
    align-self: flex-start;
    margin-top: auto;
    padding: 0.1rem var(--vgl-space-2);
    border-radius: var(--vgl-radius-sm);
    background: var(--vgl-color-primary-soft);
    color: var(--vgl-color-primary);
    font-size: var(--vgl-font-size-xs);
    font-weight: 600;
}

@media (max-width: 900px) {
    .vgl-hersteller-profile__layout {
        grid-template-columns: 1fr;
    }

    .vgl-hersteller-profile__aside {
        position: static;
    }

    .vgl-hersteller-profile__hero-main {
        flex-direction: column;
    }
}
