
.u64-product-grid{
    display:grid;
    grid-template-columns:1fr 380px;
    gap:20px;
}

.u64-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:20px;
    margin-bottom:20px;
}

.u64-sticky-panel{
    position:sticky;
    top:20px;
}

.u64-featured-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:#5b67ea;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
}

.u64-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.u64-gallery-item{
    position:relative;
    border:1px solid #eee;
    border-radius:14px;
    overflow:hidden;
}

.u64-gallery-item img{
    width:100%;
    height:120px;
    object-fit:cover;
}

.u64-gallery-actions{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0,0,0,.6);
    display:flex;
    justify-content:space-between;
    padding:5px;
}

.u64-gallery-actions button{
    border:none;
    background:#fff;
    border-radius:10px;
    padding:4px 8px;
    font-size:12px;
}

@media(max-width:991px){

    .u64-product-grid{
        grid-template-columns:1fr;
    }

    .u64-sticky-panel{
        position:relative;
        top:auto;
    }

}
