body {
    background-color: #d6dee3;
    background-size: cover;
    background-position: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

#logo2 {
    height: 60px;
    width: auto;
    left: 0;
    margin-right: 20px;
    margin-left: auto;
}

#logodev {
    height: 60px;
    width: auto;
    top: 20px;
    left: 20px;
    position: fixed;
}

/*----------------------------------------------------*/
.navfull {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    z-index: 10000;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    letter-spacing: 2px;
}


.navfull nav {
    display: flex;
    align-items: center;
}

.navfull .full-nav {
    color: #152c52;
    font-size: 1em;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    margin: 5px;
}

.navfull .full-nav:hover {
    background-color: #ffaf2f;
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    position: relative;
}

.nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #285268;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    color: #152c52;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-menu ul li {
    margin: 20px 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #004d40;
    font-size: 1.2em;
}

.close-nav {
    background: none;
    border: none;
    font-size: 2em;
    color: #333;
    cursor: pointer;
    align-self: flex-end;
    padding: 10px;
    margin: 10px;
}

.nav-menu.open {
    transform: translateX(0);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    color: #285268;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
}

ul li a {
    color: #285268;
    text-decoration: none;
    font-weight: bold;
}


/*-----------------------------------------------------*/

#übercontainer {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 50px auto;
    gap: 10px;
    /* Abstand zwischen Filter und Produktbereich */
}

#filter-container,
#produkte-container {
    display: flex;
    flex-direction: column;
}

#filter-container {
    width: 20%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#produkte-container {
    width: 75%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px #0000001a;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    height: auto;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#overline {
    margin-top: 20px;
    padding: 0;
    height: 50px;
    font-size: 25px;
    width: 80%;
}

#inhalt {
    max-width: 800px;
    margin: 0 auto;
}

#filter {
    display: flex;
    flex-direction: column;
}

/* Standard: Overlay verstecken */
.filter-overlay {
  display: none;
}

/* Button styling */
.filter-toggle {
  display: none;
  background: #285268;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-text {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

select,
input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}


.filterButton {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px 0;
    display: block;
    width: 100%;
    text-align: center;
}

.filterButton:hover,
.filterButton.active {
    background-color: #ffaf2f;
}

#produkte {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: flex-start;
}

.produktboxen {
    width: 25%;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Leichter Schatten */
}

.produktboxen:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Stärkerer Schatten bei Hover */
    transform: translateY(-5px);
    /* Leichtes Hochziehen bei Hover */
    border-color: #ffaf2f;
}

.produktbild {
    width: 100%;
    /* Das Bild nimmt die gesamte Breite der Box ein */
    height: auto;
    border-radius: 10px 10px 0 0;
    /* Abrundung nur oben */
}

.preisgestalltung{
    color: red;
    font-weight: 700;
}

h3 {
    font-size: 1.5em;
    color: #285268;
    margin-top: 15px;
}

p {
    color: #777;
    margin: 10px 0;
}

.buttondetails {
    background-color: #ffaf2f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 90%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttondetails:hover {
    background-color: #df8d00;
}


.produktboxen:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.smallhref {
    text-decoration: none;
}

footer {
    background-color: #285268;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 20px 0;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
}

.footer-content a:hover {
    text-decoration: underline;
}


.container-footer {
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #285268;
}

.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.help-button:hover {
    background: #e68900;
}

/* Pop-up Fenster */
.help-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: none;
    width: 250px;
    z-index: 1000;
}

.help-popup a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background 0.2s;
}

.help-popup a:hover {
    background: #f1f1f1;
}

.help-popup .close-btn {
    text-align: right;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

/* Standard (Live) → keine Bindestriche */
.product-title .hyphen {
  display: none;
}

/* In Dev-Umgebung → Bindestrich sichtbar */



@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .close-nav {
        display: none;
    }

    #devheadline {
        display: none;
    }

    #logodev {
        display: none;
    }

    .smallhref {
        pointer-events: none;
    }
}

@media (max-width: 1023px) {
    .navfull {
        display: none;
    }

    #übercontainer {
        display: block;

    }

    #filter-container {
        display: block;
        width: 90%;
        margin-bottom: 20px;
    }

    #produkte-container {
        display: block;
        width: 90%;
    }

    .produktboxen {
        width: 90%;
        display: flex;
        align-items: center;
        /* Zentriert den Inhalt vertikal */
        margin-bottom: 20px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 10px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .produktbild {
        width: 70%;
        height: auto;
        object-fit: cover;
        /* Verhindert Bildverzerrung */
        border-radius: 10px;
    }

    .produkttext {
        flex-grow: 1;
        /* Nimmt den verfügbaren Platz ein */
        padding-left: 20px;
    }

    .buttondetails {
        display: none;
    }

    .smallhref {
        text-decoration: none;
    }

    #filter-container {
        margin-top: 50px;
    }

    #devheadline {
        display: flex;
        margin-top: 30px;
        text-align: center;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        color: #285268;
    }

}

@media (max-width:768px) {
    .produktboxen {
        width: 100%;
    }

    .container {
        width: 100%;
    }

    .produkttext {
        text-align: left;
    }

    .produktbild {
        width: 100%;
        height: auto;
    }

         .filter-toggle {
    display: inline-block;
    margin: 10px;
  }
  #filter-container {
    display: none;
  }

      body[data-env="dev"] .product-title .hyphen {
  display: inline;
}


    /* Overlay & Drawer */
.filter-overlay.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.filter-drawer {
  background: white;
  width: 60%;
  max-width: 300px;
  height: 100%;
  padding: 20px;
  box-shadow: -4px 0 10px rgba(0,0,0,0.2);
  position: absolute;
  right: 0;
}

/* Close Button */
.filter-close {
  background: transparent;
  border: none;
  font-size: 1.5em;
  float: right;
}

/* Apply Button sticky */
.apply-filter {
  position: absolute;
  bottom: 60px;
  width: calc(100% - 40px);
  background: #ffaf2f;
  color: white;
  padding: 10px;
  border-radius: 5px;

}

}

@media (max-width:480px) {
    html, body {
        max-width: 480px;
        overflow-x: hidden;
    }

    #übercontainer{
        width: 100%;
    }

    .produktboxen {
        width: 100%;
        height: auto;
    }

    .container {
        width: 100%;
    }

    .produkttext {
        text-align: left;
    }

    .produktbild {
        width: 100%;
        height: auto;
        max-width: 170px;
    }


.preisgestalltung{
    margin-bottom: 25px;
}

}