.box {
    position: relative;
    width: 200px;
    text-align: center;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 }
 
 .box .promo{
    position: absolute;
    transform: rotateZ(-40deg);
    top : 0; left: 0;
    padding:10px 0px;
    border-radius: 50%;
    background-color: rgba(245, 231, 103, 0.5);
    color:rgb(255, 0, 0);
    font-size: 20px;
    
 }
 .box .box-image {
    width: 200px;
    height: 200px;
    background-color: transparent;
    display: flex; /* تفعيل flexbox */
    justify-content: center; /* محاذاة أفقية في المنتصف */
    align-items: center; /* محاذاة عمودية في المنتصف */
    overflow: hidden; /* لإخفاء أي جزء زائد من الصورة */
}

.box .box-image img {
    width: 90%; /* الصورة تتناسب مع العرض */
    height: auto; /* الصورة تتناسب مع الارتفاع */
    object-fit: cover; /* لجعل الصورة تغطي الحاوية بشكل مناسب */
}
.name{
    max-width: 80%;
    font-size: 14px;
    font-style: normal;
    color:var(--black);
    text-align: center;
    margin: auto;
    line-height: 1;
 }