.on-desktop {
    display: none;
}

.shower-line .container {
  width: 90%;
}
 
.shower-line h2 {
    display: flex;
    align-items: center;
    flex-direction: column;

    font-size: 33px;
    font-style: italic;
    font-weight: 400;
}

.shower-line h2 img {
    width: 90%;
    margin-bottom: 10px;

}

.shower-line-products h3 {
    color: #886750;
    font-size: 23px;
    font-weight: 300;
    text-align: center;

}

.shower-line-products h3 span {
    display: block;
    font-size: 15px;
}

.shower-line-products .coco-product h4 {
    background-color: #714323;
    font-weight: 600;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    color: white;
    margin-bottom: 8px;
}

.shower-line-products .coco-product p {
    color: rgba(43, 43, 43, 0.58);
    font-size: 14px;
    text-align: center;
}

.coco-product {
    margin: 30px 0px;
    position: relative;
}

.coco-product div {
    position: relative;
}

.coco-product span.i {
    display: block;
    width: 25px;
    position: absolute;
    top: 10px;
    left: 10px;
    mix-blend-mode: multiply;
}

.coco-product div {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    column-gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.coco-product div ul li {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin: 15px 0px;
}

.coco-product div ul li img {
    width: 50px;
    margin-right: 8px;
}

/* popup */
 

.i-popup {
    position: fixed;
    z-index: 60;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    filter: blur(0px);
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(2px);
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.is-visible {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.popup-content {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    background-color: white;
    padding: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-content h3 {
    background-color: #886750;
    color: white;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
    width: fit-content;
    padding: 8px 12px;
}

.popup-content p {
    color: rgba(43, 43, 43, 0.76);
    text-align: left;
    font-size: 14px;
    margin-top: 5px;
}


.popup-content img {
    width: 220px;
    display: block;
    margin: 0 auto;
}

.i-popup .close {
    position: absolute;
    top: 30px;
    right: 25px;
    font-size: 20px;
}

.nudy-bundle {
    padding: 30px 0px;
    background-color: #FAF7F4;
}

.nudy-bundle h2 {
    background-color: #886750;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 10px 30px;
    text-transform: uppercase;
}

.nudy-bundle p {
    font-style: italic;
    color: #886750;
    text-align: center;
    margin: 10px 0px;
}

.nudy-bundle img {
    mix-blend-mode: multiply;
}

.nudy-bundle ul {
    margin: 0px 30px;
}

.nudy-bundle ul li {
    font-size: 16px;
    color: #886750;
    font-weight: 300;
    margin: 15px 0px;
}

.nudy-bundle ul li b {
    display: block;
}

/* responsive 768 */
 

@media screen and (min-width: 768px) {
 .on-mobile {
        display: none;
    }
    .on-desktop {
        display: block;
    }

    .shower-line h2 img {
        width: 300px;
        margin-bottom: 0;
    }

    .shower-line h2 {
        font-size: 28px;
        background-color: #714323;
        border-radius: 10px;
        color: white;
        font-weight: 200;
        text-transform: lowercase;
    }

    .all-line-products {
        display: grid;
        column-gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }

    .coco-product div {
        display: block;
    }

    .popup-content {
        width: 45%;
    }

    .coco-gallery {
        margin: 30px 0px;
    }

    .nudy-bundle .container div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .nudy-bundle h2 {
        background-color: transparent;
        font-weight: 400;
        color: #886750;
        font-size: 22px;
        padding: 0px 30px;
    }
}

/* responsive 1200 */
/* responsive 1200 */
/* responsive 1200 */

@media screen and (min-width: 1200px) {

.shower-line .container {
        width: 80%;
}
    .shower-line h2 img {
        width: 200px;
    }

    .shower-line h2 {
        font-size: 18px;
    }

    .coco-banner {
        width: 60%;
        margin: 0 auto;
    }

    .all-line-products {
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-between;
    }

    .popup-content {
        width: 35%
    }

    .all-line-products {
        justify-content: space-evenly;
    }

}