.stock-counter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.stock-counter-header {
    display: flex;
    align-items: center;
}

.stock-counter {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.stock-number {
    font-weight: 700;
    margin: 0 4px;
}

.stock-counter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.stock-progress-container {
    width: 100%;
    height: 6px;
    background-color: #f3f3f3;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}

.stock-progress-bar {
    height: 100%;
    background-color: #e74c3c;
    border-radius: 3px;
    transition: width 0.5s ease-in-out;
}