.list3 {
    width: 100%;
    height: auto;
    display: flex;
    overflow-x: auto;
    margin: 0;
    padding: 0.5em;
    background-color: rgba(235, 245, 251, 0.7);
    border-radius: .5em;
    scroll-snap-type: x mandatory;
    direction: rtl;
}

.item3 {
    width: 35%; /* کمتر کردن سایز در سیستم */
    flex-shrink: 0; /* جلوگیری از کوچک شدن تصویر */
    display: flex;
    flex-direction: column;
    padding: .3em;
    margin: .3em;
    border-radius: .25em;
    background-color: rgba(256, 256, 256, 0.4);
    scroll-snap-align: start;
    scroll-margin-inline: .5em;
    position: relative; /* تنظیم موقعیت برای عنصرهای داخلی */
}

.item3 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: .25em;
    margin-top: .1em;
    margin-bottom: .1em;
}

.itemTitle3 {
    color: #000000;
    margin-top: .1em;
    margin-bottom: .1em;
    text-align: center;
}

.info-icon {
    position: absolute;
    bottom: 10%; /* بالا آوردن موقعیت در سیستم */
    right: 5%;
    background-color: rgba(144, 238, 144, 0.6); /* شفافیت 60 درصد و رنگ مایل به سبز */
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-style: italic;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center; /* قرارگیری در مرکز */
}

.info-tooltip {
    display: none;
    position: absolute;
    bottom: 20%; /* بالا آوردن موقعیت در سیستم */
    right: 5%;
    background-color: rgba(255, 255, 255, 0.55);
    border: 1px solid #ccc;
    padding: 5px;
    max-width: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    direction: rtl;
    text-align: right;
    font-size: 12px;
    border-radius: 10px;
}

.info-tooltip.show {
    display: block;
    opacity: 1;
}

@media (max-width: 600px) {
    .item3 {
        width: 40%; /* بیشتر کردن سایز در گوشی */
        flex-shrink: 0; /* جلوگیری از کوچک شدن تصویر */
    }

    .info-icon {
        width: 25px; /* کوچکتر کردن سایز در گوشی */
        height: 25px; /* کوچکتر کردن سایز در گوشی */
        line-height: 25px;
        bottom: 25%; /* بیشتر بالا آوردن موقعیت در گوشی */
        right: 10%; /* فاصله گرفتن از راست */
    }

    .info-tooltip {
        bottom: 30%; /* بیشتر بالا آوردن موقعیت در گوشی */
        right: 15%; /* فاصله گرفتن از راست */
        padding: 8px; /* کوچکتر کردن padding در گوشی */
        font-size: 12px; /* کوچکتر کردن فونت در گوشی */
    }
}
