/* Add custom CSS styles below */ 
headerglas
/* إظهار العناصر بسلاسة */

.s-product-card{
    position:relative !important;
    overflow:hidden !important;
    transition:all .4s ease !important;
}

.s-product-card:hover{
    transform:translateY(-12px) !important;
    box-shadow:0 20px 40px rgba(0,0,0,.12) !important;
}

/* أيقونات جانبية */

.lux-icons{
    position:absolute;
    top:15px;
    left:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
    opacity:0;
    transform:translateX(-15px);
    transition:.35s ease;
    z-index:50;
}

.s-product-card:hover .lux-icons{
    opacity:1;
    transform:translateX(0);
}

.lux-icons span{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#F3E8D8;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}