body {
    background-color: #d6dee3;
    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;
}

.navfull {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.navfull .full-nav {
    color: rgb(0, 0, 0);
    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: #fff;
    color: #00796b;
    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: #004d40;
    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 a {
    text-decoration: none;
    color: #006699;
    font-size: 1.2em;
}

.close-nav {
    background: none;
    border: none;
    font-size: 2em;
    color: #006699;
    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: #004d40;
    margin: 10px 0;
    border-radius: 5px;
}

ul li a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
}

.navsmall {
    padding: 15px;
}

.buttondetails:hover {
    background-color: #004d40;
}

/*----------------------------------------------------------------*/

#overline {
    margin-top: 20px;
    padding: 0;
    height: 50px;
    font-size: 25px;
    width: 80%;
}

.nav-container {
    position: relative;
}

.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);
}

#inhalt {
    max-width: 800px;
    margin: 0 auto;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5em;
    color: #222;
}

.price {
    font-size: 1.8em;
    color: #5f975f;
}

.product-main {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.product-image-container {
    flex: 1;
}

.product-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-details {
    flex: 1;
    text-align: left;
}

.short-description {
    list-style-type: circle;
}

.short-li {
    margin-bottom: 5px;
    list-style-type: circle;
}

.color-options {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

/* Stellt sicher, dass der Button neben den Checkboxen ist */
#productOptionsForm {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

/* Stellt sicher, dass die Label in einer ordentlichen Zeile dargestellt werden */
.color-options label {
    margin-bottom: 5px;
}


.buy-button {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.buy-button:hover {
    background-color: #00796b;
}

.product-description,
.product-gallery {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.features-list {
    font-size: 1.2em;
    color: #006699;
    list-style-type: circle;
    margin: 5px;
}

.product-gallery .gallery-images {
    display: flex;
    gap: 20px;
}

.gallery-image {
    width: 32%;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Vorheriges CSS bleibt unverändert */

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.popup h3 {
    margin-bottom: 20px;
}

.popup button,
.popup input,
.popup select {
    margin-top: 10px;
}

h2 {
    color: #285268;
}

#cartContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px #00000033;
    z-index: 1000;
}

#cartItems {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Modal Styles */

#productOptionsForm {
    display: block;
    margin: 10px;

}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
}

.modal button {
    margin: 10px;
    padding: 10px 20px;
}

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;
}

.impcontainer {
    display: block;
}

h2,
h1 {
    color: #285268;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-lightbox {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2em;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10000;
}

.close-lightbox:hover {
    transform: scale(1.2);
}

.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;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .close-nav {
        display: none;
    }

    #devheadline {
        display: none;
    }

    #logodev {
        display: none;
    }
}

@media (max-width: 1023px) {
    .navfull {
        display: none;
    }

    #devheadline {
        display: flex;
        margin-top: 30px;
        text-align: center;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        color: #285268;
    }

    .product-main {
        display: block;
    }

    .product-details {
        display: block;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-gallery .gallery-images {
        display: block;
    }
}

@media (max-width: 480px) {
    html body {
        max-width: 480px;
        overflow-x: hidden;
    }

    .product-gallery .gallery-images {
        display: block;
    }
}