body {
    background-color: var(--greenlight);
    direction: rtl;
    margin: 0;
    padding: 0;
    font: iransams;
    /* یا هر فونت فارسی که دارید */
    overflow-x: hidden;

}
/* --- Hero Fixed Parallax --- */
.hero-parallax-slider {
    height: 80dvh;
    position: sticky;
    top: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide picture,
.hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 80dvh;
    object-fit: cover;
}

/* --- Overlay (نسخه پیش‌فرض: موبایل/تبلت) --- */
.hero-overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    animation: fadeUp 1s ease-out forwards;
}

.hero-overlay h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.hero-overlay p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
}

/* --- CTA کوچک‌تر و مینیمال --- */
.hero-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* --- Animation --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* --- نسخه دسکتاپ (min-width: 1024px) --- */
@media (min-width: 1024px) {

    .hero-overlay {
        top: 20%;
        right: 5%;
        left: auto;
        transform: translateY(-50%);
        text-align: right;
        max-width: 40%;
    }

    .hero-overlay h2 {
        font-size: 2.6rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }
}




/* --- بخش دوم و چهارم: حرکت قطاری (Marquee) --- */
.marquee-wrapper {
    overflow: hidden;
    padding: 20px 0;
    background: #f9f9f9;
    user-select: none;
    cursor: grab;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* انیمیشن‌های حرکت */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }

    /* برای RTL به سمت چپ */
}

@keyframes scrollRight {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(0);
    }
}

.move-left .marquee-track {
    animation: scrollLeft 20s linear infinite;
}

.move-right .marquee-track {
    animation: scrollRight 20s linear infinite;
}

/* مکث هنگام هاور (در مرحله اسکریپت پیشرفته‌تر می‌شود) */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* استایل دسته‌بندی‌ها */
/* ===== دسته بندی با پس‌زمینه و کلید شیشه‌ای وسط ===== */
/* مرکزچینی کامل باکس‌های داخل marquee-track */
#category-row-2 {
    background-color: var(--greenlight);
    box-shadow: inset 0 -35px 15px -10px rgba(0, 0, 0, 0.28);
}

#category-row-1 {
    background-color: var(--greenlight);
    box-shadow: 0 0 15px 20px rgba(0, 0, 0, 0.28);
}
#category-row-3 {
    background-color: var(--greenlight);
   
}

/* 
#category-row-2::before {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
    pointer-events: none;
} */

.marquee-track>div {
    display: flex;
    /* تبدیل باکس به کانتینر فلکس */
    align-items: center;
    /* مرکز عمودی محتوا */
    justify-content: center;
    /* مرکز افقی محتوا */
    width: 360px;
    max-width: 360px;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--greenlight);
    border-radius: 12px;
    position: relative;
    background-color: #222;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-tap-highlight-color: transparent;
    margin-inline: 8px;
    overflow: hidden;
    box-shadow: 0 0 8px 2px #00000093;
}

/* دکمه/لینک وسط باکس */
.main-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 100;
    color: var(--light);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    /* transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease; */
    z-index: 2;
    pointer-events: auto;
    margin: 0;
    /* حذف margin:auto تا فلکس مرکزکننده عمل کند */
}

/* افکت هاور/لمس */
/* .main-category:hover,
.main-category:active {
    background: var(--primary);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 40px rgba(71, 181, 158, 0.36);
} */

/* ریسپانسیو موبایل */
@media (max-width: 480px) {
    .marquee-track>div {
        width: 70vw;
        max-width: none;
        border-radius: 10px;
    }

    .main-category {
        font-size: 1.05rem;
        padding: 9px 14px;
    }
}

/*
}
/* اگر هنوز تگ img داخل .cat-item هست، آن را مخفی کن چون از background استفاده می‌کنیم */
#category-1 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-1.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#category-2 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-2.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#category-3 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-3.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#category-4 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-4.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#category-5 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-5.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#category-6 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-6.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#category-7 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-7.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#category-8 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-8.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#category-9 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-9.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

#category-10 {
    background-image: linear-gradient(rgba(3, 17, 0, 0.658), rgba(3, 48, 0, 0.568)), url('../images/backgrand-images/categories/categories-10.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

/* متن روی کلید */


/* حالت hover / active برای دسکتاپ و حالت لمسی برای موبایل */
/* .cat-item:hover,
.cat-item:active {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
} */

/* وقتی کاربر هاور می‌کند، کلید شیشه‌ای برجسته‌تر شود */
/* .cat-item:hover .cat-label::before,
.cat-item:active .cat-label::before {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 0.18);
} */

/* حالت فوکوس برای دسترسی‌پذیری کیبورد */
.cat-item:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(71, 181, 158, 0.12), 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* ریسپانسیو: در موبایل عرض را کمی بزرگتر کن تا حس کاور بهتر شود */
@media (max-width: 480px) {
    .cat-item {
        width: 70vw;
        /* در موبایل از viewport استفاده کن */
        max-width: none;
        border-radius: 10px;
    }

    .cat-label::before {
        height: 40px;
        width: min(82%, 220px);
    }

    .cat-label {
        font-size: 0.95rem;
    }
}


/* --- بخش سوم: اطلاعات تماس (100dvh) --- */
/* contact-fullview styles */
/* =========================
   contact-fullview — stable CSS
   Units: vh, vw, %, rem (relative)
   Focus: transform/opacity only, will-change hints,
   reduced-motion support, accessible states
   ========================= */
.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    direction: rtl;
    /* راست‌چین */
    font-family: inherit;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1000;
}

/* محتوای روی ویدیو */
.content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: white;
    z-index: 1002;

}

.video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(18, 40, 24, 0.541) 0%,
            rgba(18, 40, 24, 0.75) 40%,
            rgba(18, 40, 24, 0.692) 100%);
    pointer-events: none;
    z-index: 1001;
}


/* لوگو و شعار */
.top-content {
    text-align: right;
    margin-top: 10dvh;
}

.logo-aramis-0 {
    width: 60%;
    /* اندازه استاندارد */
    height: auto;

}

.shoar {
    margin: 0;
    font-family: inherit;
    font-size: 2rem;
    font-weight: 100;
}

/* متن‌ها */
.middle-content {
    text-align: right;
    line-height: 1.8;
    margin-bottom: 15px;
}

.phone {
    display: block;
    fill: white;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 0.25em;
}

/* آیکون‌ها */
.bottom-icons {
    display: flex;
    gap: 20px;
    color: var(--light);
}

.bottom-icons img,
.bottom-icons svg {
    width: 30px;
    height: 30px;
    fill: currentColor !important;

    color: var(--light) !important;
}


/* End of contact-fullview CSS */


/* --- بخش چهارم: کارت‌های محصول (Explore Style) --- */

/* ===========================
   Explore — Mobile Card Styles
   Scope: #exploreContainer
   Target: max-width devices (mobile)
   =========================== */
/* Header row base */
.header-row {
    background-color: var(--greenlight);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* title right, action left */
    gap: 12px;
    padding: 12px 16px;
    direction: rtl;
    /* صفحه راست‌چین است؛ عنوان در سمت راست قرار می‌گیرد */
}

/* عنوان (محصولات جدید) */
.header-row h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b2f2f;
    /* رنگ دلخواه */
    white-space: nowrap;
    /* چسبیدن به سمت راست */
    margin-inline-start: 0;
    margin-inline-end: auto;
}

/* کانتینر اکشن سمت چپ (بیشتر و تصویر/آیکون) */
.header-row .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    /* محتوای اکشن به سمت چپ بچسبد */
}

/* لینک بیشتر */
.header-row .header-actions a.more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0b6b63;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .18s ease, transform .12s ease;
}

/* آیکون یا تصویر کنار لینک بیشتر */
.header-row .header-actions .thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 40px;
    display: inline-block;
    background-size: cover;
    background-position: center;
}

/* افکت هاور برای لینک بیشتر */
.header-row .header-actions a.more-link:hover {
    background: rgba(11, 107, 99, 0.06);
    transform: translateY(-2px);
}

/* واکنش‌گرایی: در موبایل عنوان کوچکتر و فاصله کمتر */
@media (max-width: 600px) {
    .header-row {
        padding: 10px 12px;
        gap: 8px;
    }

    .header-row h2 {
        font-size: 1.05rem;
    }

    .header-row .header-actions .thumb {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }
}

/* ------------------------------------------------------------
   Marquee structure ONLY for product rows (category-row-3 & 4)
   بدون هیچ استایل روی explore-item
   ------------------------------------------------------------ */
.top-buy {
    background-color: var(--greenlight) !important;
}

.explore-item {
    width: 320px;
    min-width: 100px;
    background: var(--dark);
    border-radius: 20px;
    padding: 18px;
    /* override از 20px */
    display: flex;
    flex-direction: column;
    /* override از row */
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all .3s ease;
    text-align: center;
}

.explore-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    transform: translateY(-2px);
    /* در موبایل */
}

.item-image {
    display: inline;
    /* override از flex */
    aspect-ratio: 3 / 4;
    /* override از 3 / 4 */
    width: 284px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 2px;
    /* override از 10px */
    font-size: 3.5rem;
    /* override از 2.5rem */
    order: -1;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    /* override از padding پیش‌فرض */
}


.item-header {
    display: flex;
    justify-content: flex-start;
    /* override از space-between */
    align-items: flex-start;
    margin-bottom: 8px;
    width: 100%;
}

.item-name {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    width: 100%;
}

.item-price {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: bold;
    text-align: right;
    width: 100%;
}

.item-actions {
    display: flex;
    gap: 14px;
    /* override از 10px */
    margin-top: 16px;
    width: 100%;
}

.wishlist-btn {
    background-color: var(--red);
    /* override از var(--red) */
    color: var(--light);
    width: 40px;
    /* override از 40px */
    height: 40px;
    padding: 8px;
    font-weight: 400;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.wishlist-btn svg {
    width: 32px;
    height: 32px;
}

.wishlist-btn:hover {
    background: #c4452a;
    transform: scale(1.08);
}

.wishlist-btn.active svg {
    fill: white;
    stroke: none;
}

.add-to-cart-btn {
    flex: 1;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 100;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
    width: 100%;
    height: 40px;
    font-family: inherit;
}

.add-to-cart-btn:hover {
    background: #3a9a85;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(71, 181, 158, .3);
}




/* مسیر حرکت محصولات */
#category-row-3 .item-Train,
#category-row-4 .item-Train {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: center;
    will-change: transform;
}

/* جلوگیری از کش آمدن کارت‌ها */
#category-row-3 .item-Train>*,
#category-row-4 .item-Train>* {
    flex: 0 0 auto;
}


/* جلوگیری از توقف حرکت با هاور */
#category-row-3 .item-Train:hover,
#category-row-4 .item-Train:hover {
    animation-play-state: running !important;
    pointer-events: none;
    /* هاور هیچ دخالتی نداشته باشد */
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.item-Train {
    display: inline-flex !important;
    white-space: nowrap !important;
    gap: 16px;
    will-change: transform;
    background-color: var(--greenlight);
}

.item-Train>* {
    flex: 0 0 auto !important;
}

/* پایه: اطمینان از box-sizing داخل اسکوپ */
/* ===========================
   Explore — Fixed Card Layout
   No Responsive — Same in All Sizes
   =========================== */
/* ---------- Product Train CSS (اضافه شود به انتهای Explore.css) ---------- */

/* --- Marquee Core Engine --- */
/* --- بخش اصلاحی انتهای index-gi.css --- */

/* ۱. حذف یا کامنت کردن این بخش که مانع حرکت می‌شد */
/*
.move-left .marquee-track,
.move-right .marquee-track {
  animation: none !important;
  transform: none !important;
}
*/

/* ۲. بهینه‌سازی کانتینر برای حرکت نرم */
.marquee-wrapper {
    overflow: hidden !important;
    /* جلوگیری از اسکرول دستی مرورگر */
    position: relative;
    width: 100%;
    touch-action: pan-y;
    /* اجازه اسکرول عمودی صفحه، اما مدیریت افقی با JS */
    cursor: grab;
    user-select: none;
    background-color: rgba(00, 00, 00, 00);
}

.item-Train,
.marquee-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content;
    will-change: transform;
    gap: 16px;
    background-color: rgba(00, 00, 00, 00);
}

.marquee-track>*,
.item-Train>* {
    flex: 0 0 auto;
}

.marquee-track,
.item-Train {
    width: max-content;
}


/* اطمینان از ابعاد تصاویر محصولات (3/4) در موبایل */
@media (max-width: 480px) {
    .explore-item {
        width: 70vw !important;
        flex: 0 0 70vw !important;
        aspect-ratio: 3 / 4;
    }

    .explore-item .item-image {
        aspect-ratio: 3 / 4;
    }
}



/* سرچ باکس */
.bk-search {
    display: inline-table;
    width: 100%;
    height: 50px;
    background-color: var(--greenlight);
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 500px;
    margin: 2rem 1rem;
    font-family: inherit;
    background-color: var(--greenlight);
}

.search-box input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: none;
    border-radius: 1.5rem;
    background: var(--dark);
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    box-shadow: 0px 0px 12px 2px #000000a2;
}

.search-box input::placeholder {
    color: #999;
}

input:-internal-autofill-selected {
    background-color: var(--deep);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: var(--light);
}


@media (min-width: 2200px) {
    body {
        max-width: 2200px;
        margin: auto;
    }


}






/* â”€â”€â”€ Ø§Ø³Ù„Ø§ÛŒØ¯Ø± Ù…Ø­ØµÙˆÙ„Ø§Øª â”€â”€â”€ */
.product-slider-section {
    background-color: var(--greenlight);
  position: relative;
  padding: 0 50px;
  margin: 0 0 40px;
}
.background-product {
background-color: var(--greenlight);
}
/* track: overflow hiddenØŒ Ø¨Ø¯ÙˆÙ† scrollbar */
.psc-viewport {
  overflow: hidden;
}

.psc-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  /* RTL: Ú†Ù¾â†’Ø±Ø§Ø³Øª Ø¨Ø§Ø´Ù‡ Ø¨Ø±Ø§ÛŒ translateX */
  direction: ltr;
}

/* â”€â”€â”€ Ú©Ø§Ø±Øª â”€â”€â”€ */
.product-slide-card {
  min-width: 180px;
  width: 180px;
  background: var(--dark);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.product-slide-card:hover {
  transform: translateY(-3px);
}

.psc-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--greenlight);
}

.psc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.psc-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--light);
  line-height: 1.4;
  text-align: right;
  /* Ø­Ø¯Ø§Ú©Ø«Ø± Û² Ø®Ø· */
  display: -webkit-box;
-webkit-line-clamp : 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.psc-price {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: bold;
  text-align: right;
}

.psc-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px;
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: auto;
}

.psc-btn:hover   { background: #3a9a85; }
.psc-btn:disabled { opacity: 0.6; cursor: default; }

/* â”€â”€â”€ Ø¯Ú©Ù…Ù‡â€ŒÙ‡Ø§ÛŒ Ú†Ù¾/Ø±Ø§Ø³Øª â”€â”€â”€ */
.psc-prev,
.psc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--dark);
  color: var(--light);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
  transition: background 0.2s;
  z-index: 10;
}

.psc-prev { right: 4px; }
.psc-next { left: 4px;  }

.psc-prev:hover,
.psc-next:hover { background: var(--primary); }

/* Ù…ÙˆØ¨Ø§ÛŒÙ„: Ú©Ø§Ø±Øªâ€ŒÙ‡Ø§ÛŒ Ú©ÙˆÚ†Ú©ØªØ± */
@media (max-width: 600px) {
  .product-slider-section { padding: 0 38px; }
  .product-slide-card { min-width: 140px; width: 140px; }
}