/* =====================================================
   🧭 Header (fixiert)
   ===================================================== */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 1rem;
    background-color: var(--shop-header-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Platzhalter, damit Content nicht unter Header rutscht */
.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;
    }
}