﻿.arashop-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #7b2cbf, #c026d3, #ec4899);
    color: #fff;
    border-radius: 10px;
    padding: 9px 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    direction: rtl;
}

.arashop-marquee__track {
    display: flex;
    width: max-content;
    animation: arashop-marquee-scroll 12s linear infinite;
    will-change: transform;
}

.arashop-marquee__content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    padding: 0 25px;
}

.marquee-welcome::before {
    content: "✨";
    margin-left: 10px;
    font-size: 15px;
}

/* حرکت پیوسته */
@keyframes arashop-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* موبایل */
@media (max-width: 576px) {

    .arashop-marquee {
        border-radius: 7px;
        padding: 7px 0;
    }

    .marquee-item {
        font-size: 13px;
        padding: 0 20px;
    }

    .marquee-welcome::before {
        margin-left: 7px;
        font-size: 14px;
    }
}

/* کاهش حرکت برای کاربرانی که این گزینه را فعال کرده‌اند */
@media (prefers-reduced-motion: reduce) {

    .arashop-marquee__track {
        animation: none;
    }
}
