﻿
.section-obrazy-mobile {
    display: none;
    position: relative;
}

.mobile-main-menu {
    display: none;
}

@media screen and (max-width: 1000px) {
    .section-obrazy {
        display: none;
    }

    .section-obrazy-mobile {
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
        flex-direction: column;
        padding-top: 8rem;
    }


    .product-box {
        position: relative;
        width: 100vw;
        height: 100vh;
        margin-bottom: 1rem;
    }

    .img-box-mobil {
        width: 100vw;
        height: 100vh;
    }
        .img-box-mobil img {
            width:100%;
            height:100%;
            object-fit: cover;
        }

    .img-header {
        position: absolute;
        top: 2rem;
        text-transform: uppercase;
        color: white;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        padding: 1rem 0;
        background-color: #000000aa;
    }

        .img-header h1 {
            font-size: 3rem;
        }

    .img-menu {
        position: absolute;
        width: 60px;
        height: 60px;
        bottom: 2rem;
        color: black;
        font-weight: 800;
        background-color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        cursor: pointer;
        box-shadow: 0 0 .8rem .6rem black;
        outline: none;
    }

    .info-menu {
        right: 2rem;
    }

    .picture-menu {
        left: 2rem;
    }

    .img-info-box,
    .img-picture-box {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: transparent;
        padding: 1rem;
        display: none;
    }

    .info-box {
        position: relative;
        background-color: white;
        padding: 2rem 4rem;
        border-radius: 10px;
        height: auto;
        display:flex;
        flex-direction: column;
    }

        .info-box .info-box-close,
        .picture-box .info-box-close {
            position: absolute;
            top: 0;
            right: 0;
            padding: 1rem;
            cursor: pointer;
        }

        .info-box .info-header {
            font-size: 2.4rem;
            padding: 1rem 0;
        }

        .info-box .info-text {
            padding: 1rem 0;
            text-align: justify;    
            font-size: 1.6rem;
        }

        .info-box .info-type {
            font-style: italic;
        }

        .info-box span {
            font-size: 1.6rem;
        }

        .info-box .info-price {
            text-align: right;
            padding: 1rem 0;
            font-size: 1.8rem;
        }

    .picture-box {
        position: relative;
        display: flex;
        flex-direction: column;
        background-color: white;
        padding: 1rem 1.5rem;
        border-radius: 10px;
    }
    .picture-box-images {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

        .picture-box-images img {
            cursor: pointer;
        }

        .picture-box i,
        .product-box i{
            font-size: 2rem;
            cursor:pointer;
        }
        .picture-box img {
            margin: 1.2rem .2rem;
            width: 33%;
            object-fit: cover;
        }


        /* MOBILE MENU */

    .ellena-sub-menu {
        display: none !important;
    }

    .mobil-menu-close i{
        float: right;
    }

    .mobile-main-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: auto;
        padding: 2rem 4rem;
        z-index: 5;
    }

        .mobile-main-menu i {
            font-size: 3rem;
            cursor: pointer;
        }

    .mobile-submenu {
        display: flex;
        flex-direction: row;
        justify-content:center;
        align-items:center;
    }

    .mobile-main-menu-content {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        width: 100vw;
        height: 100vh;
        z-index: 10;
        background-color: white;
        padding: 4rem 10rem;
        flex-direction:column;
    }

    .mobile-main-menu-box {
        display: flex;
        justify-content:center;
        align-items:flex-start;
    }

    .mobile-menu-items {
        padding: 2rem 4rem;
        border-right: 1px solid var(--font-paragraph-gray-color);
    }
    .mobile-menu-items .menu-item {
        color: black;
        cursor: pointer;
        font-size: 4rem;
        margin: 2rem 0;
    }

    .mobile-submenu-items {
        display: none;
    }

        .mobile-submenu-items ul li {
            font-size: 2rem;
            margin: 1.5rem;
        }

            .mobile-submenu-items ul li a {
                text-decoration: none;
                color: var(--font-light-black);
            }

    .product-box-buttons {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: auto;
    }
    /* MOBILE MENU END */
}

@media screen and (max-width: 600px) {
    .mobile-menu-items .menu-item {
        font-size: 3rem;
    }

    .mobile-submenu-items ul li {
        font-size: 1.6rem;     
    }

    .mobile-main-menu-content {
        padding: 4rem;
    }
}