/* =====================================================
   🧭 Header
   ===================================================== */
.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    background: var(--shop-header-bg);
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

.header-spacer {
    height: 100px;
}

/* Firmenname im Header */
.shop-header-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tablet */
@media (max-width: 991px) {
    .shop-header-title {
        max-width: 180px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .shop-header-title {
        font-size: 0.78rem;
        max-width: 160px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}