#popup_productes_dissenys {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    padding: 28px;
    background: #fff;
    z-index: 9999;
    overflow: visible;
}

#popup_productes_dissenys.popup_productes_dissenys_visible {
    display: block;
}

.popup_productes_dissenys_content {
    position: relative;
    width: 100%;
    min-height: 100%;
    background: white;
}

.mostrar_popup_productes_dissenys {
    width: 498px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 30px;
}

.mostrar_popup_productes_dissenys .ci-icon {
    color: #fff;
    font-size: 24px;
    margin: 0;
    margin-right: 10px;
    font-weight: bold;
}

.tancar_popup_productes_dissenys {
    position: sticky;
    top: 0;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 0 18px 18px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

.productes_dissenys_grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.productes_dissenys_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 12px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
}

.productes_dissenys_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 180ms ease;
}

.productes_dissenys_item:hover .productes_dissenys_img,
.productes_dissenys_item:focus .productes_dissenys_img {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .productes_dissenys_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .mostrar_popup_productes_dissenys {
        width: 92%;
    }
}
