/* =====================================================
   🧭 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;
}

@media (max-width: 991px) {
    .header-spacer {
        height: 140px;
    }
}

/* 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: 991px) {
    .shop-header-title {
        font-size: 0.95rem;
        font-weight: 600;
        margin-left: 6px;

        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}
.header-inner {
    min-height: 80px;
}

.header-search {
    min-width: 250px;
}

@media (max-width: 991px) {
    .header-search {
        width: 100%;
    }
}
/* =====================================================
   🔘 Einheitliche Mobile Header Buttons
   ===================================================== */

@media (max-width: 991px) {
    .header-actions .btn {
        height: 42px;
        width: 42px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* =====================================================
   📱 Mobile Header Layout sauber stapeln
   ===================================================== */

@media (max-width: 991px) {

    .header-inner {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

	.header-logo {
		display: inline-flex;
		align-items: center;
		gap: 4px;
	}

	.header-actions {
		display: flex;
		align-items: center;
		gap: 8px;
		justify-content: flex-end;
	}

    .header-search {
        width: 100%;
        order: 3;
        margin-top: 8px;
        margin-bottom: 0px;
    }
}
@media (max-width: 991px) {

    .header-logo {
        margin-right: 0 !important;
        gap: 4px;
    }

}