#csatc-sticky-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    padding-bottom: calc(env(safe-area-inset-bottom) + 20px);
    background-color: #fff;
    color: #000;
    border-top: 2px solid #666;
    display: block;
    z-index: 99999;
}

#csatc-sticky-panel .title{ 
    font-size: 14px; 
    line-height: 1.3em;
    font-weight: bold;
    margin: 0;
}

#csatc-sticky-panel .image-wrapper{
    width: 70px;
    margin-right: 15px;
}

#csatc-sticky-panel .image-wrapper img{
    width: 100%;
    aspect-ratio:1;
    object-fit: cover;
    margin-top: 0;
}


#csatc-sticky-panel .csatc-row{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

#csatc-sticky-panel .price {
    font-size: 16px;
    font-weight: bold;
    color: #4caf51;
    margin: 10px 20px 10px 0;
}

#csatc-buy-button,
.csatc-buy-button {
    width: 100%;
    white-space: nowrap;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 5px;
}

#csatc-buy-button,
.csatc-buy-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

@media (min-width:769px){
    #csatc-sticky-panel{
        display: none !important;
        height: 0 !important;
        width: 0 !important;
    }
}

@media (max-width:768px){
    .single-product button.iubenda-tp-btn.iubenda-cs-preferences-link {
        display: none !important;
    }
}



