.countdown-timer-c {
    font-size: 24px;
    font-weight: bold;
    color: var(--theme-color); /* جایگزین شد */
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
    width: max-content;
    margin: auto;
}

.countdown-timer-c span {
    display: inline-block;
    animation: pulse 1s infinite alternate;
    transition: transform 0.3s ease-in-out;
}

@keyframes pulse {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.8;
    }
}

.countdown-timer-c .divider {
    font-size: 24px;
    font-weight: normal;
    color: var(--text-muted); /* جایگزین شد */
    animation: none;
}

.product-box {
    position: relative;
    width: 200px;
    height: 300px;
    background: var(--bg-body); /* جایگزین شد (یا می‌توانید از var(--text-main) استفاده کنید) */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 20px;
    background: var(--theme-color); /* جایگزین شد */
    color: var(--text-main); /* جایگزین شد */
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
