@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');

*{
    margin: 0;
}

body{
    font-family: "Zalando Sans Expanded", sans-serif;
}

.cart_icon{
    margin-right: 5%;
}

.header{
    padding: 20px;
}

.logo_a_nazevfirmy{
    display: flex;
    align-items: center;
}

.logo img{
    width: 100px;
}
.menu_a_bar{
    margin-left: auto;
    display: flex;
    align-items: center;
}

.searchbox input{
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.menu button{
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
    transition: color 0.3s;
}

#sideMenu{
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: rgb(0, 0, 0);
    padding-top: 80px;
    transition: right 0.3s ease;
}

#sideMenu a{
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
}

#sideMenu a:hover{
    background: #333;
}

#sideMenu.active{
    right: 0;
}

.footer p{
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: white;
    margin-top: 2%;
}
.footer2 p{
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: white;
    position: fixed;
    
}


.name{
    width: 100%;
    text-align: center;
    margin-top: 1%;
}

.products1{
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
}
.products2{
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
}
.products3{
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
}

.p1{
    width: 30%;

}

.p1 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p1 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p1 p{
    margin-top: 2%;
}

.p2{
    width: 30%;

}

.p2 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p2 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p2 p{
    margin-top: 2%;
}
.p3{
    width: 30%;

}

.p3 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p3 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p3 p{
    margin-top: 2%;
}

.p4{
    width: 30%;

}

.p4 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p4 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p4 p{
    margin-top: 2%;
}

.p5{
    width: 30%;

}

.p5 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p5 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p5 p{
    margin-top: 2%;
}

.p6{
    width: 30%;

}

.p6 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p6 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p6 p{
    margin-top: 2%;
}
.p7{
    width: 30%;

}

.p7 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p7 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p7 p{
    margin-top: 2%;
}

.p8{
    width: 30%;

}

.p8 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p8 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p8 p{
    margin-top: 2%;
}
.p9{
    width: 30%;

}

.p9 img{
    align-items: center;
    width: 300px;
    height: 400px;
}

.p9 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p9 p{
    margin-top: 2%;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; 
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 2%;
    margin-bottom: 5%;
}

.card {
    position: relative;
    width: 320px;
    height: 420px;
    border-radius: 25px;
    overflow: hidden; 
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; 
    transition: opacity 0.4s ease;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card:hover img {
    transform: scale(1.1); 
}

.card-overlay h2 {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.card-overlay p {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}
.card:hover h2, .card:hover p {
    transform: translateY(0);
}

#searchInput {
    padding: 6px;
    width: 180px;
}

.searchbox {
    position: relative;
}

#itemsList {
    position: fixed;
    background: #111;
    width: 160px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 9999;
}

#itemsList li a {
    display: block;
    padding: 8px;
    color: white;
    text-decoration: none;
}

#itemsList li a:hover {
    background: #222;
}

.kontakty{
    display: flex;
    width: 100%;
    margin-top: 5%;
    margin-left: 5%;
    text-decoration: none;
}

.txt_kontakty{
    margin-top: 2%;
    text-decoration: none;
    margin-left: 5%;
}

.txt_kontakty p{
    font-size: 150%;
    text-decoration: none;
}
.mapa_kontakty{
    margin-left: 5%;
    margin-top: 2%;
    filter: grayscale(110%);
}

.ig{
    margin-left: 5%;
}

.formicek{

}

.name2{
    width: 100%;
    text-align: center;
    margin-top: 3%;
}

.formos{
    display: inline-flex;
    margin-top: 2%;
}
.jmeno_form{

}

.mail_form{
    margin-left: 4%;
}

#text{
    width: 400px;
    height: 30px;
}

#mail{
    width: 400px;
    height: 30px;
}

#text2{
    height: 30px;
    width: 600px;
}

.mess_form{
    margin-top: 1%;
}

#btn1{
    background-color: black;
    color: white;
    height: 30px;
    width: 200px;
    margin-bottom: 2%;
}

#btn1:hover{
    background-color: gray;
    color: black;
}

.prodej{
    display: inline-flex;
}

.prodej_fotka{
    margin-top: -15%;
    margin-bottom: 15%;
}
.prodej_fotka1{
    margin-top: -20%;
    margin-bottom: 15%;
}

.prodej_fotka3{
    margin-top: 15%;
}

.prodej_text{

}

#bt{
    height: 30px;
    background-color: white;
}

#bt:hover{
    background-color: gray;
    color: white;
}

#addtocart{
    margin-top: 10%;
    height: 30px;
    width: 200px;
    background-color: black;
    color: white;
}

.cart-wrapper{
    display: flex;
    gap: 40px;
    padding: 40px;
}

.cart-left{
    width: 65%;
}

.cart-items{
    max-height: 420px;
    overflow-y: auto;
    border-top: 1px solid #ccc;
}

.cart-item{
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item img{
    width: 120px;
}

.cart-info{
    flex: 1;
}

.cart-actions{
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn{
    border: 1px solid #000;
    background: white;
    padding: 4px 10px;
    cursor: pointer;
}

.remove{
    cursor: pointer;
    font-size: 18px;
}

.cart-right{
    width: 30%;
    border: 1px solid #ccc;
    padding: 20px;
}

.checkout-btn{
    width: 100%;
    margin-top: 20px;
    background: black;
    color: white;
    padding: 10px;
    border: none;
}

.hlavni-obsah {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center; 
}

.feedback-btn{
    background-color: black;
    color: white;
    height: 30px;
    width: 100px;
}

input[type="radio"] {
    accent-color: black;
}

input[type="range"] {
    accent-color: black;
}

.abttxt{

}

.p11{
    width: 30%;

}

.p11 img{
    align-items: center;
    width: 400px;
    height: 400px;
}

.p11 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p11 p{
    margin-top: 2%;
}

.p21{
    width: 30%;

}

.p21 img{
    align-items: center;
    width: 400px;
    height: 400px;
}

.p21 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p21 p{
    margin-top: 2%;
}

.p31{
    width: 30%;

}

.p31 img{
    align-items: center;
    width: 400px;
    height: 400px;
}

.p31 a{
    text-align: center;
    margin-top: 2%;
    text-decoration: none;
    color: black;
}

.p31 p{
    margin-top: 2%;
}
@media (max-width: 768px) {

    body {
    font-family: "Zalando Sans Expanded", sans-serif;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    }

    .logo_a_nazevfirmy {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo img {
        width: 80px;
    }

    .nazev h1 {
        font-size: 22px;
        margin: 10px 0;
    }

    .menu_a_bar {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .searchbox input {
        width: 180px;
    }

    .cart_icon img {
        width: 35px;
    }

    .menu button {
        font-size: 28px;
    }

    .kategorie {
        flex-direction: column;
        align-items: center;
        margin-top: 150px;
    }

    .muzy,
    .zeni {
        width: 100%;
        margin: 20px 0;
        text-align: center;
        font-size: 140%;
        color: white;
    }

    .zeni {
        margin-left: 0;
    }

    .footer p {
        font-size: 14px;
        padding: 10px 0;
    }


    #itemsList {
        width: 90%;
        left: 5%;
    }

    .idk{
        display: none;
    }

    .zeni a{
    text-decoration: none;
    color:  white;
    }
    .muzy a{
    text-decoration: none;
    color: white;
    }
        .products1{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .products2{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .products3{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .products1 > div{
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .products2 > div{
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .products3 > div{
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .products1 a{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .products2 a{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .products3 a{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .p1,.p2,.p3{
        width: 100%;
    }

    .p4,.p5,.p6{
        width: 100%;
    }

    .p7,.p8,.p9{
        width: 100%;
    }

    .p11,.p21,.p31{
        width: 100%;
    }

    .products1 img,
    .products2 img,
    .products3 img{
        max-width: 90%;
        height: auto;
    }

    .kontakty{
    display: inline-block;
    width: 100%;
    margin-top: 5%;
    margin-left: 5%;
    text-decoration: none;
}

.txt_kontakty{
    margin-top: 2%;
    text-decoration: none;
    margin-left: 5%;
}

.txt_kontakty p{
    font-size: 150%;
    text-decoration: none;
}
.mapa_kontakty{
    display: none;
}

.ig{
    margin-left: 5%;
}

.formos{
    display: inline-block;
    margin-top: 2%;
}

.jmeno_form{

}

.mail_form{
    margin-left: -4%s;
}

#text{
    width: 200px;
    height: 30px;
}

#mail{
    width: 200px;
    height: 30px;
}

#text2{
    height: 30px;
    width: 200px;
}

#btn1{
    background-color: black;
    color: white;
    height: 30px;
    width: 200px;
    margin-bottom: 15%;
}
.cart-wrapper{
    display: inline-block;
    gap: 40px;
    padding: 40px;
}

.cart-left{
    width: 100%;
}

.cart-items{
    max-height: 420px;
    overflow-y: auto;
    border-top: 1px solid #ccc;
}

.cart-item{
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item img{
    width: 120px;
}

.cart-info{
    flex: 1;
}

.cart-actions{
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn{
    border: 1px solid #000;
    background: white;
    padding: 4px 10px;
    cursor: pointer;
}

.remove{
    cursor: pointer;
    font-size: 18px;
}

.cart-right{
    width: 80%;
    border: 1px solid #ccc;
    padding: 20px;
}

.checkout-btn{
    width: 100%;
    margin-top: 20px;
    background: black;
    color: white;
    padding: 10px;
    border: none;
}
.prodej{
    display: inline-block;
    width: 100%;
    align-items: center;
}

.prodej_fotka{
    margin-top: 0%;
    margin-bottom: 0%;
}

.prodej_fotka img{
    width: 200px;
}
.prodej_fotka1{
    margin-top: 0%;
    margin-bottom: 0%;
}

.prodej_fotka1 img{
    width: 200px;
}


.prodej_fotka3{
    margin-top: 0%;
}

.prodej_fotka3 img{
    width: 200px;
}
.prodej_fotka2 img{
    width: 200px;
}
.prodej_text{
    width: 100%;
}

#bt{
    height: 30px;
    background-color: white;
}

#bt:hover{
    background-color: gray;
    color: white;
}

#addtocart{
    margin-top: 10%;
    margin-bottom: 20%;
    height: 30px;
    width: 200px;
    background-color: black;
    color: white;
}
}
