/* Tag "تسليم فوري" صغير في الزاوية الشمالية + تأثير اللمعة */

/* تأثير اللمعة (Flash/Shine) عند مرور الماوس */
.fasty_product_card_img {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.fasty_product_card_img::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.fasty_product_card:hover .fasty_product_card_img::after {
    left: 150%;
}

/* Tag تسليم فوري - صغير في الزاوية */
.fasty_product_card_img::before {
    content: "حساب ستيم";
    position: absolute;
    top: 0;
    left: 0;
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 0 0 8px 0;
    font-size: 11px;
    font-weight: bold;
    z-index: 9999 !important;
    font-family: 'Cairo', sans-serif;
}

/* لصورة المنتج في صفحة المنتج الواحد */
.fasty_product_img {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.fasty_product_img::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.fasty_product_img:hover::after {
    left: 150%;
}

.fasty_product_img::before {
    content: "حساب ستيم";
    position: absolute;
    top: 0;
    left: 0;
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 0 0 8px 0;
    font-size: 11px;
    font-weight: bold;
    z-index: 9999 !important;
    font-family: 'Cairo', sans-serif;
}

/* تأثير إضافي: تكبير خفيف للصورة */
.fasty_product_card_img img,
.fasty_product_img img {
    transition: transform 0.3s ease;
}

.fasty_product_card:hover .fasty_product_card_img img,
.fasty_product_img:hover img {
    transform: scale(1.05);
}

/* إخفاء tag التخفيضات */
.fasty_product_card .badge,
.fasty_product_card [class*="badge"],
.fasty_product_card [class*="discount"],
.fasty_product_card [class*="sale"] {
    display: none !important;
}
