.ave-favourite-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1caa4f;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    z-index: 50;
}

.home-product-card .ave-favourite-btn {
    top: 12px;
    right: -38px;
}

.ave-favourite-btn svg{width:22px;height:22px;display:block}
.ave-favourite-btn:hover{transform:scale(1.06);box-shadow:0 6px 16px rgba(0,0,0,.12)}
.ave-favourite-btn.is-active{background: rgb(33 193 92 / 18%);color: #1aa94e;border: 1px solid;}
.ave-favourite-btn.is-active svg{fill:currentColor}

.ave-favourites-empty{padding:40px 0;text-align:center;color:#64748b}
.ave-favourites-grid{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));gap:24px}
@media(min-width:768px){.ave-favourites-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:1024px){.ave-favourites-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}

