:root {
    --bg: linear-gradient(270deg, #6729FF, #A872FD);
}

/* btns color */
.Alo__main a.All_banner_btn,
.s-block--best-offers button {
    background: var(--bg) !important;
    color: #fff;
}

/* Testimonial */
.al-testimonial > div > div:first-child {
    background: unset !important;
    background-color: #F3EBFF !important;
}

/* footer */
.store-footer,
.store-footer__inner {
    background-color: unset;
    background: var(--bg);
}
.s-contacts-icon svg {
    fill: #fff;
}
@media (max-width: 992px) {
    .store-footer * {
        text-align: center;
        margin-inline: auto;
    }
    .store-footer__inner .container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

/* تأثير الإطار حول كرت المنتج عند المرور */
.product-card,
.store-product-item,
.product,
.product-item {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 10px;
}

/* عند مرور الماوس */
.product-card:hover,
.store-product-item:hover,
.product:hover,
.product-item:hover {
    box-shadow: 0 0 15px rgba(75, 180, 120, 0.3); /* ظل أخضر ناعم */
    transform: translateY(-5px); /* يرتفع المنتج قليلاً */
    border: 1px solid #A4E6B4; /* إطار بلون أخضر فاتح */
    background-color: #F9FFF9; /* خلفية ناعمة */
}