/* Start: General Konfig Desktop */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth !important;

}

html {
    width: 100%;
    scroll-behavior: smooth !important;
}

body {
    width: 100%;
    font-family: "Be Vietnam Pro", sans-serif;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Go to Top Button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
    font-size: 24px;
    border: none;
    outline: none;
    background: transparent linear-gradient(120deg, #000000 0%, #3B4395 100%) 0% 0% no-repeat padding-box;
    color: white;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-top: 2.5px;
    border-radius: 50%;
}

#myBtn:hover {
    background-color: #555;
}

/* End: General Config Desktop */

/* Start: General Config Mobile */
@media screen and (max-width: 800px) {
    html, body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        width: 100%;
    }
}

/* End: General Config Mobile */

/* ----------------------------------------------------------------------------------------------------------------- */

/* Start: Navigation Bar Desktop */

.nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    background: #3B4395;
    opacity: 1;
    position: fixed;
    z-index: 999;
    padding: 10px;
}

/* Navigationsbar Desktop deaktivieren für Mobile da Hamburger Menü integriert wurde. */
@media screen and (max-width: 800px) {
    .nav {
        display: none;
    }
}

/* Bild in Navbar */
.logo {
    width: 20%;
    height: 100%;
    display: flex;
}

.logo img {
    width: 100%;
    height: 100%;
}

/* Links zu den Sections */
.links {
    display: flex;
    width: 70%;
    padding-right: 5%;
    height: 100%;
    justify-content: flex-end;
}

.links a {
    box-shadow: inset 0 0 0 0 #000;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    color: #fff;
    text-decoration: none;
    align-items: center;
    float: left;
    display: block;
    padding: 0px 16px;
    font-size: 17px;
}

.links a.active {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    opacity: 1;
    color: #000000;
}

.links a:hover {
    box-shadow: inset 100px 0 0 0 #FFFFFF;
    color: #000000;
}

/* Ende: Navigation Bar Desktop */


/* Start: Navigation Bar Mobile */

/* Burger deaktivieren für Mobile */
#burger_background {
    display: none;
}

.menu-wrap {
    display: none;
}

/* Mobile Navbar Burger */
@media screen and (max-width: 800px) {
    /* Ganzer Container */
    #burger_background {
        display: block;
        background: transparent linear-gradient(120deg, #000000 0%, #3B4395 100%) 0% 0% no-repeat padding-box; /* BG Gradient */
        width: 100%;
        height: 60px;
        position: fixed; /* Sticky */
        top: 0;
        left: 0;
        z-index: 99997; /* Sticky */
        border-bottom: 1px solid #ffffff;
    }

    .menu-wrap {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99997;
        width: 0%;
        height: 100%;
    }

    /* Hamburger Div */
    .hamburger {
        cursor: pointer;
        position: fixed;
        top: 10px;
        left: 15px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99998; /* Hamburger vor dem Background */
    }

    /* Hamburger Symbol selbst (three Stripes) */
    .hamburger div, .hamburger div::before, .hamburger div::after {
        content: '';
        display: block;
        background: white;
        height: 2px;
        width: 100%;
        border-radius: 10px;
        transition: all 0.3s linear;
    }

    .hamburger div::before {
        transform: translateY(-8px);
    }

    .hamburger div::after {
        transform: translateY(8px);
    }

    /* Hitbox des Hamburgers */
    .toggler {
        position: absolute;
        top: 0;
        left: 10px;
        z-index: 99999;
        cursor: pointer;
        width: 50px;
        height: 50px;
        opacity: 0;
    }

    .toggler:checked + .hamburger > div {
        transform: rotate(135deg);
    }

    .toggler:checked + .hamburger > div::before {
        transform: rotate(90deg);
        opacity: 0;
    }

    .toggler:checked + .hamburger > div::after {
        transform: rotate(90deg);
    }

    /* Inhaltsspalte die bei Burgerklick geöffnet wird */
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 40%; /* Breite der Spalte */
        height: 100%;
        background: transparent linear-gradient(120deg, #000000 0%, #3B4395 100%) 0% 0% no-repeat padding-box;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .menu > div {
        padding: 50px 20px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .menu ul li {
        padding: 10px;
    }

    /* Links der Navbar */
    .menu ul li a {
        color: white;
        font-size: 14pt;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .menu ul li a:hover {
        color: #555;
    }

    .toggler:checked ~ .menu {
        transform: translateX(0);
    }

    button.button-main {
        border: none;
        transition: box-shadow 0.3s ease-in-out;
    }

    button.button-main:hover {
        box-shadow: 0 0 8px 8px rgba(255, 255, 255, 0.6);
        transition: box-shadow 0.3s ease-in-out;
    }

    /* Logo in der Navbar */
    .logo-container-mobile {
        max-width: 60%;
        margin-left: 20%;
    }

    .logo-container-mobile img {
        width: 100%;
        height: 100%;
    }
}

/* ----------------------------------------------------------------------------------------------------------------- */

/* Home für Desktop */

/* Start: User Bestellprozess für Desktop */


#bestellprozess {
    display: flex;
    flex-direction: row;
    width: 100%;
    color: white;
    background-color: #ffffff;
    padding-top: 5%;
}

#bestellprozess p {
    color: #000000;
    font-size: 14pt;
}

#bestellprozess span {
    background-color: #3B4395;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 15px;
}

.bestellprozess_image {
    padding: 20px;
    width: 100px; /* Set fixed width */
    height: 100px; /* Set fixed height */
    border-radius: 50%; /* Make it a circle */
    text-align: center;
    background-color: white;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0 auto; /* Center within the parent */
    margin-bottom: 5%;
    border: 3px solid #3B4395; /* Add a border with color */

    position: relative; /* Position relative to allow z-indexing */
    z-index: 2; /* Ensure the image is above the line */
}

.bestellprozess_image img {
    width: 80%; /* Adjust size as needed */
    height: 80%; /* Adjust size as needed */
    object-fit: contain; /* Ensure the image maintains its aspect ratio */
}


.bestellprozess_column {
    color: #2b3d64;
    width: 25%;
    text-align: center;
    padding: 20px 0 20px 0;

    position: relative; /* Position relative to allow the pseudo-element */
}

.bestellprozess_column::before {
    content: '';
    position: absolute;
    top: 30%; /* Position at the middle vertically */
    left: 0;
    right: 0;
    height: 2px; /* Adjust thickness as needed */
    background-color: #a9a9a9; /* Line color */
    z-index: 1; /* Ensure the line is behind the image */
}

.bestellprozess_inactive {
    opacity: 0.6;
}


/* ----------------------------------------------------------------------------------------------------------------- */


/* Shop */

#shop{
    display: block;
    float: left;
    width: 100%;
padding: 2.5% 0 0 0;
}

#shop h1{
text-align: left;
    padding: 0 0 0 5%;

}

.category_header{
    max-width: 60%;
    text-align: left;
    padding: 0 0 0 5%;
}

.element_filter{
 text-align: center;
}

.filterDiv {
    display: none;
}

.show {
    display: block;
}
/* Style the buttons */
.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
}

.btn:hover {
    background-color: #ddd;
}

.btn.active {
    background-color: #3B4395;
    color: white;
}

.product_column{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    align-self: auto;
    padding: 0% 5% 0% 5%;
}

.product_column a{
    text-decoration: none;
    color: black;
}

.product_item{
    width: 25%;
    margin: 1%;
    background-color: #f3f3f3;
    /*   border-radius: 7.5px;
       -webkit-box-shadow: 0px 5px 8px 2px rgba(54,54,54,0.7);
       box-shadow: 0px 5px 8px 2px rgba(54,54,54,0.7); */
}




.product_image {
    position: relative;
    display: flex;
    justify-content: center;   /* horizontal zentrieren */
    align-items: center;       /* vertikal zentrieren */
    width: 100%;
    height: 200px;             /* feste Höhe für vertikale Zentrierung nötig */
    margin-top: 5%;
    overflow: hidden;          /* optional: schneidet Überstand ab */
}

.product_image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    position: absolute; /* neu */
}

.product_image img.default {
    z-index: 1;
    opacity: 1;
}

.product_image img.hover {
    z-index: 2;
    opacity: 0;
}

.product_item:hover .product_image img.default {
    opacity: 0;
}

.product_item:hover .product_image img.hover {
    opacity: 1;
}

.product_description{
    text-align: left;
    width: 100%;
    padding: 5%;
}

.product_type{
    opacity: 0.5;
    padding: 5px 0 5px 0;
    display: block;
}

.product_name{
    display: block;
}

.product_text{
    display: block;
}

.product_material{
    display: block;
    padding: 5px 0 0 0;
}

.product_price{
    display: block;
    padding: 5px 0 0 0;
    font-size: 14pt;
}



.produkt button {
    text-align: center;
    font-size: 12pt;
    width: 80%;
    margin: 0 20px 20px 20px;
    padding: 2.5% 5% 2.5% 5%;
    border-radius: 5px;
    background-color: transparent;
    color: #000;
    border-color: #000000;
}


.produkt button:hover {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}


.produkt_titel{
    width: 100%;
}





/* Footer */

#footer {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(120deg, #000000 0%, #3B4395 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    color: white;
    margin-top: 5%;
}


.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: #fff;
}

@media (min-width: 760px) {

    .footer-wave-svg {
        height: 50px;
    }

}


@media screen and (max-width: 800px) {
    #footer {
        padding-bottom: 5%;

    }
}


#footer_content {
    display: flex;
    flex-direction: row;
    width: 95%;
    padding-left: 5%;

}

@media screen and (max-width: 800px) {
    #footer_content {
        flex-direction: column;
        width: 80%;
        padding-left: 0%;
        margin-left: 10%;
        margin-right: 10%;

    }
}


#footer_content p {
    padding: 0;
    margin: 0;

}


#footer_logo {
    order: 1;
    width: 40%;
    padding-top: 0;
}

@media screen and (max-width: 800px) {
    #footer_logo {
        width: 100%;
        padding-top: 0%;
    }
}

#footer_logo form {
    width: 100%;
}

@media screen and (max-width: 800px) {
    #footer_logo form {
        padding-bottom: 5%;
    }
}


#footer_logo input[type=email],
select {
    width: 80%;
    padding: 7px 15px;
    margin: 8px 0;
    display: inline-block;
    background: #F9F9F9 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
}

@media screen and (max-width: 800px) {

    #footer_logo input[type=email]{
        width: 100%;
        text-align: center;
    }

}

#footer_logo input[type=submit] {
    width: 80%;
    text-align: center;
    background: #999999 0% 0% no-repeat padding-box;
    color: white;
    padding: 7px 15px;
    margin: 8px 0;
    border: 1px solid #707070;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
}


@media screen and (max-width: 800px) {
    #footer_logo input[type=submit] {
        width: 100%;
    }
}

#footer_logo input[type=submit]:hover {
    background-color: #ffffff;
    color: black;
}

#footer_logo img {
    width: 50%;
    height: auto;
    object-fit: contain;
}

@media screen and (max-width: 800px) {
    #footer_logo img {
        width: 60%;
        height: 60%;
        margin-left: 20%;
        margin-right: 20%;
        padding-bottom: 5%;

    }
}

label {
    max-width: 90%;
}

#footer_links {
    order: 2;
    width: 15%;
    padding-top: 2.5%;
}

#footer_links a{
    color: inherit;
}

#footer_links a:hover{
    color: #a9a9a9;
}

#footer_links img{
    width: 25%;
    height: auto;
    object-fit: contain;
    padding: 5px 2.5px ;
}


@media screen and (max-width: 800px) {
    #footer_links {
        display: none;
    }
}

#footer_mobile {
    display: none;
}


@media screen and (max-width: 800px) {
    #footer_mobile {
        display: flex;
        flex-direction: row;
        width: 100%;
        order: 4;
        margin: auto;
    }
}

#footer_links_mobile_top {
    display: none;
}

@media screen and (max-width: 800px) {
    #footer_links_mobile_top {
        display: block;
        order: 2;
        width: 50%;
        padding-top: 0%;
        padding-bottom: 2.5%;


    }
}

@media screen and (max-width: 800px) {
    #footer_links_mobile_top a {
        color: inherit;

    }
}


#footer_links_mobile_bottom {
    display: none;
}


@media screen and (max-width: 800px) {
    #footer_links_mobile_bottom {
        display: block;
        order: 3;
        width: 50%;
        padding-top: 0%;
        padding-bottom: 2.5%;
    }

    #footer_links_mobile_bottom img{
        width: 30%;
        height: auto;
        object-fit: contain;
        padding: 5px 2.5px ;
    }
}


#footer_copyright {
    display: flex;
    flex-direction: row;
    width: 95%;
    padding-left: 5%;
}

@media screen and (max-width: 800px) {
    #footer_copyright {
        display: flex;
        flex-direction: column;
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        padding-left: 0;
    }
}

#footer_copyright p {
    font-size: 14pt;

}


#copyright {
    order: 1;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 800px) {
    #copyright {
        order: 1;
        width: 100%;
        padding-top: 1.5%;
        text-align: center;
    }
}



#footer i.fa-brands {
    color: #ffffff;
    font-size: 30pt;
    width: 1em;
}



/* Mobile */


@media screen and (max-width: 800px) {
    .bestellprozess_inactive {
        display: none;
    }

    .bestellprozess_column {
        width: 100%;
    }

    #bestellprozess {
        padding-top: 60px;
    }


    .buy_card{
        flex-wrap: wrap;
    }

    .design_card{
        width: 46%;
        margin: 5% 2% 5% 2%;
    }

    .design_card img{
        width: 70%;
        height: auto;
        object-fit: contain;
    }



}