/* Stili per la lista */
.gianluca-shop-products {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gianluca-shop-products li {
    margin-bottom: 15px;
    overflow: hidden;
}

.gianluca-shop-products li img {
    float: left;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-bottom: 10px;
}

.gianluca-shop-products li .product-name {
    font-weight: bold;
    font-weight: bold;
    margin: 0 0 5px 0;
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    font-family: 'Open Sans', arial, sans-serif;
    display:block;
}

.gianluca-shop-products li .product-price {
    color: #888;
}

/* Stili per il carosello */
.gianluca-shop-carousel {
    position: relative;
    
}

.gianluca-shop-carousel .carousel-item {
    padding: 10px;
    box-sizing: border-box;
}

.gianluca-shop-carousel .carousel-item img {
    width: 100%;
    height: auto;
    margin-bottom: 5%;
}

.gianluca-shop-carousel .product-info {
    text-align: center;
}

.gianluca-shop-carousel .product-name {
    font-weight: bold;
    margin: 0 0 3px 0;
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    font-family: 'Open Sans', arial, sans-serif;
    display:block;
}

.gianluca-shop-carousel .product-price {
    color: #888;
}

/* Stili per le frecce del carosello */
.gianluca-shop-carousel .slick-prev,
.gianluca-shop-carousel .slick-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1;
    background: rgba(0, 0, 0, 0.5); /* Sfondo semi-trasparente */
    color: #fff; /* Colore bianco per le frecce */
    border: none;
    width: 30px;
    height: 30px;
    line-height: 0px;
    text-align: center;
    border-radius: 50%;
    opacity: 0.75;
    transition: opacity 0.3s;
}

.gianluca-shop-carousel .slick-prev:hover,
.gianluca-shop-carousel .slick-next:hover {
    opacity: 1;
}

.gianluca-shop-carousel .slick-prev:before,
.gianluca-shop-carousel .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    color: #fff; /* Colore bianco per le icone delle frecce */
}

.gianluca-shop-carousel .slick-prev {
    left: -15px; /* Regola la posizione orizzontale se necessario */
}

.gianluca-shop-carousel .slick-next {
    right: -15px; /* Regola la posizione orizzontale se necessario */
}

