/* Feste obere Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

/* Navigationslinks */
.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #555;
}

/* Hauptinhalt verschieben, damit er nicht hinter der festen Navigation verschwindet */
main {
    margin-top: 70px; /* Oder die Höhe Ihrer Navigationsleiste */
}

/* Logo */
.navbar .logo img {
    height: 30px;  /* Kleinere Größe für das Logo */
    margin-left: 1rem;  /* Abstand zum linken Rand */
}

/* Hide E-Scooter Tuning category */
.grid-category--id-175343002 {
    display: none !important;
}

/* Replace text on main page */
.ec-store__content-wrapper:not(.ec-store__category-page) h1.page-title__name.ec-header-h1,
.ec-store__content-wrapper:not(.ec-store__product-page) h1.page-title__name.ec-header-h1 {
    position: relative;
    color: transparent;
    height: 24px;
    text-align: center;
    width: 100%;
}

.ec-store__content-wrapper:not(.ec-store__category-page) h1.page-title__name.ec-header-h1::after,
.ec-store__content-wrapper:not(.ec-store__product-page) h1.page-title__name.ec-header-h1::after {
    content: 'Unsere Produkte';
    color: #2d3436;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 0;
    font-family: 'Righteous', cursive;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
