/**
 * BRS Price Slider Styles
 * طراحی ساده و مینیمال
 */


/* اسلاید */
.brs-slides {
    position: relative;
    min-height: 120px;
}

.brs-slide {
    display: none;
    text-align: center;
    animation: brsFadeIn 0.4s ease;
    width: 100%;
    box-sizing: border-box;
}

.brs-slide.active {
    display: block;
    position: relative;
}

@keyframes brsFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* عنوان با آیکون */
.brs-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.brs-title .brs-icon {
    font-size: 22px;
    line-height: 1;
}

.brs-name {
    font-size: 20px;
    font-weight: bold;
}

/* قیمت و واحد - در یک خط */
.brs-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    direction: ltr;
}

.brs-price {
    font-size: 42px;
    font-weight: bold;
}

.brs-unit {
    font-size: 18px;
}

/* تغییرات - همیشه مخفی */
.brs-change {
    display: none !important;
}

/* نقطه‌ها - همیشه مخفی */
.brs-dots {
    display: none !important;
}
.brs-slides {
    display: contents;
    /* background: red; */
}
/* ========== تم تیره ========== */


.brs-price-slider.dark .brs-icon {
    color: #d4a84b;
}

.brs-price-slider.dark .brs-name {
    color: #ffe5a2;
    font-size: 12px;
}

.brs-price-slider.dark .brs-price {
    color: #ffe5a2;
    font-size: 14px;
}

.brs-price-slider.dark .brs-unit {
    color: #6b9e91;
}

/* ========== تم روشن ========== */
.brs-price-slider.light .brs-slide {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brs-price-slider.light .brs-icon {
    color: #c9a227;
}

.brs-price-slider.light .brs-name {
    color: #333333;
}

.brs-price-slider.light .brs-price {
    color: #1a1a1a;
}

.brs-price-slider.light .brs-unit {
    color: #777777;
}

/* خطا */
.brs-error {
    text-align: center;
    padding: 20px;
    background: #fff3cd;
    border-radius: 10px;
    color: #856404;
}

/* ریسپانسیو */
@media (max-width: 480px) {
    .brs-price-slider {
        max-width: 100%;
        margin: 10px;
    }
    
  .brs-title .brs-icon {
    font-size: 16px;
    line-height: 1;
}
    
   
}
