@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=El+Messiri:wght@400..700&display=swap');
#body, .card .card-body{
    font-family: 'Cairo', sans-serif!important;
}

.cart:hover {
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    transform: translateY(-30px);
}
.cart {
    position: relative;
    display: inline-block;
    transition: box-shadow 0.3s ease, transform .5s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background-color: rgba(255, 165, 0, 0.3);
    display: none;
    transition: opacity 0.3s ease;
}

/* تحديد علامة الفيديو */
.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cart:hover .video-overlay {
    display: block;
}

.cart:hover .video-icon {
    opacity: 1;
}
