/* استایل‌های پایه شمارنده */
.bebanstore-countdown {
    font-family: inherit;
    text-align: center;
    margin: 10px 0;
    direction: ltr;
}

.bebanstore-countdown-timer {
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
}

.bebanstore-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    font-size: 13px !important;
    font-weight: 500;
}

.bebanstore-countdown-item span:first-child {
    color: inherit;
    margin-right: 8px; /* فاصله برای جداکننده */
    font-size: inherit !important; /* استفاده از اندازه فونت والد */
}

.bebanstore-countdown-label {
    font-size: 12px;
    margin-top: 4px;
    color: #666;
}

.bebanstore-countdown-separator {
    font-size: 13px;
    font-weight: bold;
    color: inherit;
    position: absolute;
    right: 0px;
    top: 0;
}

/* مخفی کردن جداکننده آخر */
.bebanstore-countdown-item:last-child .bebanstore-countdown-separator {
    display: none;
}

/* استایل پیش‌فرض */
.bebanstore-countdown {
    color: #e74c3c;
    font-family: inherit;
    margin: 0;
    display: inline-block;
}

.bebanstore-countdown-item span:first-child {
    font-size: 16px;
    font-weight: bold;
    color: #e74c3c;
}

/* استایل مدرن */
.bebanstore-countdown-modern {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
}

.bebanstore-countdown-modern .bebanstore-countdown-item span:first-child {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    color: #fff;
}

.bebanstore-countdown-modern .bebanstore-countdown-label {
    color: rgba(255, 255, 255, 0.8);
}

/* استایل مینیمال */
.bebanstore-countdown-minimal {
    border: 1px solid #e5e7eb;
    padding: 8px;
    border-radius: 4px;
}

.bebanstore-countdown-minimal .bebanstore-countdown-item span:first-child {
    font-size: 14px;
    color: #4b5563;
}

.bebanstore-countdown-minimal .bebanstore-countdown-label {
    color: #9ca3af;
}

/* سازگاری با RTL */
.rtl .bebanstore-countdown {
    direction: ltr;
}

/* سازگاری با موبایل */
@media screen and (max-width: 480px) {
    .bebanstore-countdown {
        font-size: 0.9em;
    }

    .bebanstore-countdown-item {
        min-width: 40px;
    }

    .bebanstore-countdown-item span:first-child {
        font-size: 14px;
    }

    .bebanstore-countdown-label {
        font-size: 10px;
    }
}

.bebanstore-countdown {
    font-family: inherit;
}

.bebanstore-countdown-label {
    font-family: inherit;
} 